/* ============================================================
   MESECI — Homepage CSS
   Limpio, profesional, sin animaciones decorativas
   Transiciones solo en: navegación y botones
   ============================================================ */

/* ── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
  background: #0f172a;
  color: #94a3b8;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #1e293b;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
}
.topbar-item:hover { color: #e2e8f0; }
.topbar-item svg { flex-shrink: 0; opacity: .7; }
.topbar-divider {
  width: 1px;
  height: 14px;
  background: #334155;
}
.topbar-badge {
  background: #dc2626;
  color: white;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #16a34a;
  color: white;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  transition: background .15s;
}
.topbar-wa:hover { background: #15803d; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero-home {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 45%, #7f1d1d 100%);
  padding: 90px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, .15);
  border: 1px solid rgba(220, 38, 38, .3);
  color: #fca5a5;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 24px;
}
.hero-label-dot {
  width: 6px;
  height: 6px;
  background: #dc2626;
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-title .accent { color: #f87171; }
.hero-desc {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 480px;
}
.hero-editorial {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
  padding-left: 12px;
  border-left: 2px solid rgba(220, 38, 38, .25);
}
.hero-editorial-p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
}
.hero-editorial-p strong {
  color: #e2e8f0;
  font-weight: 600;
}

/* ── BUTTONS — únicos con transitions ───────────────────────── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dc2626;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: background .15s;
}
.btn-hero-primary:hover { background: #b91c1c; }

.btn-red-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #dc2626;
  color: #dc2626;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  background: transparent;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.btn-red-outline:hover {
  background: #dc2626;
  color: white;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: #dc2626;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: background .15s;
}
.btn-cta-white:hover { background: #f8fafc; }

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.4);
  color: white;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color .15s, background .15s;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

/* ── SERVICE BAR — navegación (con transitions) ──────────────── */
.service-bar {
  background: #1e293b;
  border-top: 1px solid rgba(255,255,255,.06);
}
.service-bar--cta {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: none;
}
.sb-list {
  display: flex;
  align-items: stretch;
}
.sb-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,.07);
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.sb-item:last-child { border-right: none; }
.sb-item:hover {
  background: rgba(255,255,255,.04);
  color: white;
}
.sb-item svg {
  flex-shrink: 0;
  color: rgba(255,255,255,.2);
}
.sb-label { flex: 1; }
.sb-item--cta {
  background: #dc2626;
  color: white;
  border-right: none;
  transition: background .15s;
}
.sb-item--cta svg { color: rgba(255,255,255,.6); }
.sb-item--cta:hover { background: #b91c1c; color: white; }

/* ── SECTION COMMONS ─────────────────────────────────────────── */
.hp-section { padding: 88px 0; }
.hp-section--gray { background: #f8fafc; }
.hp-section--dark {
  background: #0f172a;
  color: white;
}
.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #dc2626;
  margin-bottom: 14px;
}
.section-kicker--light { color: #f87171; }
.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.section-heading--white { color: white; }
.section-heading--flush { margin-bottom: 0; }
.section-lead {
  font-size: 17px;
  color: #64748b;
  line-height: 1.65;
  max-width: 560px;
}
.section-lead--white { color: #94a3b8; }
.section-header { margin-bottom: 56px; }
.section-cta-center {
  text-align: center;
  margin-top: 52px;
}

/* ── SECTION TÍTULO — dos columnas ──────────────────────────── */
.section-titulo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.section-titulo-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 6px;
  border-left: 2px solid #e2e8f0;
  padding-left: 40px;
}
.section-titulo-p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.75;
}
.section-titulo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 8px;
  transition: color .15s;
}
.section-titulo-link:hover { color: #b91c1c; }
.section-titulo--dark .section-titulo-copy {
  border-left-color: rgba(255,255,255,.12);
}
.section-titulo--dark .section-titulo-p { color: #94a3b8; }
.section-titulo--dark .section-titulo-p strong { color: #e2e8f0; }
.section-titulo--dark .section-titulo-link { color: #f87171; }
.section-titulo--dark .section-titulo-link:hover { color: #fca5a5; }

/* ── CATEGORÍAS ──────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}
.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}
.cat-card-content h3 {
  font-size: 17px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  line-height: 1.25;
}
.cat-card-content p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin-bottom: 14px;
}
.cat-count-badge {
  display: inline-block;
  background: rgba(220,38,38,.85);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dc2626;
  color: white;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s;
}
.cat-card:hover .cat-card-cta { background: #b91c1c; }

/* ── WHY MESECI — dark section ───────────────────────────────── */
.why-section {
  background: #0b1120;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(220,38,38,.12) 0%, transparent 70%);
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-stats {
  display: flex;
  margin: 36px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.why-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.why-stat + .why-stat {
  border-left: 1px solid rgba(255,255,255,.08);
  padding-left: 24px;
}
.why-stat-num {
  font-size: 38px;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -.04em;
}
.why-stat-label {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 28px 24px;
}
.why-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(220,38,38,.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
  line-height: 1.35;
}
.why-card p {
  font-size: 13px;
  color: #475569;
  line-height: 1.65;
}

/* ── SECTORES — editorial rows ───────────────────────────────── */
.sector-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e2e8f0;
}
.sector-card {
  display: grid;
  grid-template-columns: 40px 1fr 2fr;
  gap: 0 40px;
  padding: 22px 0;
  border-bottom: 1px solid #e2e8f0;
  align-items: baseline;
}
.sector-num {
  font-size: 11px;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding-top: 2px;
}
.sector-icon { display: none; }
.sector-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.sector-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ── PROCESO ─────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step { text-align: center; }
.process-step-num {
  width: 64px;
  height: 64px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 900;
  color: white;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.hp-section--dark .process-step h3 { color: white; }
.hp-section--dark .process-step p { color: #94a3b8; }

/* ── TESTIMONIOS ─────────────────────────────────────────────── */
.t-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.t-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  border: 1px solid rgba(10, 15, 30, .07);
}
.t-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.t-card__verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #25d366;
  letter-spacing: .01em;
}
.t-card__stars {
  display: flex;
  gap: 2px;
}
.t-card__quote {
  font-size: 14px;
  color: rgba(10, 15, 30, .68);
  line-height: 1.75;
  flex: 1;
  margin: 0 0 20px;
}
.t-card__quote p { margin: 0; }
.t-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 15, 30, .06);
  margin-top: auto;
}
.t-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  flex-shrink: 0;
}
.t-card__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.t-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-card__role {
  font-size: 11px;
  color: rgba(10, 15, 30, .5);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #dc2626;
  text-decoration: none;
}
.t-card__link:hover { text-decoration: underline; }

/* ── PRODUCTOS DESTACADOS ────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card-hp {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: block;
}
.product-card-img {
  aspect-ratio: 4/3;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}
.product-card-body {
  padding: 18px 20px 20px;
  border-top: 1px solid #f1f5f9;
}
.product-card-cat {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #dc2626;
  margin-bottom: 7px;
}
.product-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-excerpt {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-link svg { flex-shrink: 0; }
.product-card-hp:hover .product-card-link { color: #dc2626; }

/* ── BLOG ────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.blog-card-main {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid #e2e8f0;
  display: block;
}
.blog-card-img {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-main .blog-meta { padding: 24px 24px 0; }
.blog-card-main h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 10px 24px 12px;
}
.blog-card-main p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  padding: 0 24px 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.blog-meta span {
  background: #fef2f2;
  color: #dc2626;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-meta time { color: #94a3b8; }
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-card-small {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: block;
  padding: 20px;
  flex: 1;
}
.blog-card-small h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin: 8px 0;
}
.blog-card-small p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ── FAQ + FORMULARIO — 2 columnas ─────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: white;
  border: 1px solid rgba(10, 15, 30, .08);
  border-radius: 12px;
  overflow: hidden;
}
summary.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question::marker { display: none; }
summary.faq-question:hover { color: #dc2626; }
.faq-item[open] summary.faq-question { color: #dc2626; }
.faq-chevron {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform .2s;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: #dc2626;
}
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  border-top: 1px solid #f1f5f9;
}
.faq-item[open] .faq-answer { display: block; }
.faq-answer p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  padding-top: 14px;
}

/* Form card */
.faq-form-card {
  background: #fff;
  border: 1px solid rgba(10, 15, 30, .08);
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: 100px;
}
.faq-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.faq-form-header svg { color: #dc2626; }
.faq-form-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}
.faq-form-sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.5;
}
.faq-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-form__field label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  letter-spacing: .02em;
}
.faq-form__field input,
.faq-form__field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(10, 15, 30, .15);
  border-radius: 10px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
  font-family: inherit;
  resize: vertical;
}
.faq-form__field input::placeholder,
.faq-form__field textarea::placeholder {
  color: #94a3b8;
}
.faq-form__field input:focus,
.faq-form__field textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .08);
}
.faq-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  background: #dc2626;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
}
.faq-form__btn:hover { background: #b91c1c; }
.faq-form__privacy {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin-top: 8px;
}
.faq-form__privacy a { color: #dc2626; font-weight: 600; }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.cta-text-block { flex: 1; min-width: 0; }
.cta-actions-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  flex-shrink: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-sidebar { flex-direction: row; flex-wrap: wrap; }
  .blog-sidebar .blog-card-small { flex: 1; min-width: 240px; }
}
@media (max-width: 820px) {
  .section-titulo {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-titulo-copy {
    border-left: none;
    border-top: 2px solid #e2e8f0;
    padding-left: 0;
    padding-top: 28px;
  }
  .section-titulo--dark .section-titulo-copy {
    border-top-color: rgba(255,255,255,.12);
  }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .hero-home { padding: 60px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-editorial { display: none; }
  .hp-section { padding: 60px 0; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cat-card { aspect-ratio: 3/3.5; }
  .why-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .sector-card { grid-template-columns: 40px 1fr; }
  .sector-card p { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-form-card { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-sidebar { flex-direction: column; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-actions-block { flex-direction: row; flex-wrap: wrap; min-width: auto; width: 100%; }
  .cta-actions-block a { flex: 1; min-width: 160px; }
  .sb-list { flex-wrap: wrap; }
  .sb-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .sb-item--cta { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .faq-form__row { grid-template-columns: 1fr; }
  .cta-actions-block { flex-direction: column; }
  .cta-actions-block a { flex: none; width: 100%; }
  .sb-item { flex: 1 1 100%; }
}
