/* ==========================================================================
   MALVA MEDIACIÓN · Hoja de estilos compartida
   Sistema de diseño: "Malva & Alabastro"
   - Títulos: Source Serif 4 (editorial, autoridad)
   - Texto e interfaz: Hanken Grotesk (geometría limpia, legible)
   - Color primario: Malva #8E6E7E · Fondo: Alabastro #FAF9F6
   - Formas sobrias (4px botones / 8px tarjetas), sombras aireadas con tinte malva
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Malva (primario) */
  --accent:       #8E6E7E;
  --accent-light: #f2ecef;
  --accent-mid:   #a98d9b;
  --accent-dark:  #6f5261;      /* contraste AA sobre alabastro */

  /* Oro suave (secundario, para destacados de alto valor) */
  --gold:         #7c5c1a;
  --gold-soft:    #fbf1dd;

  /* Neutros */
  --dark:         #1E293B;      /* pizarra profunda, nunca negro puro */
  --dark2:        #2c3a4f;
  --alabastro:    #FAF9F6;      /* fondo base */
  --gray:         #f3f1ee;      /* superficie tenue */
  --text:         #1E293B;
  --muted:        #5c5560;      /* AA sobre alabastro */
  --border:       #e7e2e4;      /* separador muy tenue */
  --white:        #ffffff;

  /* WhatsApp */
  --wa:           #1EA855;
  --wa-bright:    #25D366;

  /* Medidas */
  --max-w:        1200px;
  --rad:          8px;          /* tarjetas / contenedores */
  --rad-sm:       4px;          /* botones / inputs */
  --rad-lg:       12px;

  /* Sombras aireadas con leve tinte malva */
  --shadow-sm:    0 1px 3px rgba(110,82,97,.05), 0 1px 2px rgba(110,82,97,.03);
  --shadow-md:    0 4px 12px rgba(110,82,97,.07), 0 2px 6px rgba(110,82,97,.04);
  --shadow-lg:    0 12px 32px rgba(110,82,97,.1), 0 4px 12px rgba(110,82,97,.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--alabastro);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Títulos: Source Serif 4 */
h1, h2, h3,
.sec-ttl, .hero-content h1, .cta-t h2, .quote-steps-ttl,
.detail-body h3, .form-head h1, .legal-inner h1, .legal-inner h2 {
  font-family: 'Source Serif 4', 'Playfair Display', Georgia, serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
[hidden] { display: none !important; }

/* ── Accesibilidad: foco visible y salto al contenido ── */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 999;
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-size: .9rem;
  font-weight: 600;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 96px; width: auto; max-width: 260px; object-fit: contain; display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.nav-toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

.nav-links { display: flex; gap: 2px; flex: 1; align-items: center; }
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 13px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.nav-links a:hover { color: var(--text); background: var(--gray); }
.nav-links a[aria-current="page"] {
  color: var(--accent);
  background: var(--accent-light);
  font-weight: 600;
}
/* Enlaces prioritarios (Seguros, Rehabilitación): en malva de marca */
.nav-links a.priority {
  color: var(--accent-dark);
  font-weight: 600;
}
.nav-links a.priority:hover { background: var(--accent-light); }
.nav-links a.priority[aria-current="page"] {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-ol {
  font-size: .82rem;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: var(--rad-sm);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.btn-ol:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--accent-light); }
.btn-dk {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--rad-sm);
  background: var(--accent);
  color: var(--white);
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-dk:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ── HERO · claro, aireado (Malva & Alabastro) ── */
.hero-wrap { padding: 56px 32px 0; background: var(--alabastro); }
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--rad-lg);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.hero.tall { min-height: 460px; }
/* imagen nítida a la derecha; texto sobre alabastro a la izquierda */
.hero-bg {
  position: absolute;
  inset: 0 0 0 46%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-left: 1px solid var(--border);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 56px 56px 60px;
  max-width: 46%;
  width: 100%;
  overflow-wrap: break-word;
  background: var(--white);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid var(--border);
  color: var(--accent-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--rad-sm);
  margin-bottom: 22px;
}
.hero-content h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hbtns { display: flex; gap: 12px; flex-wrap: wrap; }
.hbtn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--rad-sm);
  background: var(--accent);
  color: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hbtn-p:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hbtn-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--rad-sm);
  background: transparent;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
  transition: background .2s;
}
.hbtn-s:hover { background: var(--accent-light); }

/* ── STATS ── */
.stats-wrap { background: var(--alabastro); padding: 24px 32px 32px; }
.stats {
  max-width: var(--max-w);
  margin: 0 auto;
  background: #fff;
  border-radius: var(--rad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat { padding: 28px 32px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--accent-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-l { font-size: .82rem; color: var(--muted); line-height: 1.4; }

/* ── SECTIONS ── */
.sec { max-width: var(--max-w); margin: 0 auto; padding: 80px 32px; }
.sec-lbl {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-lbl::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.sec-ttl {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 640px;
}
.sec-desc {
  font-size: .96rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.sec-intro {
  font-size: 1rem;
  color: var(--text);
  max-width: 720px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Bloque destacado (prioridad) */
.sec.priority-band {
  background: var(--gray);
  max-width: none;
  border-left: 4px solid var(--accent);
}
.sec.priority-band > .inner { max-width: var(--max-w); margin: 0 auto; }

/* ── SERVICE CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-grid.two { grid-template-columns: repeat(2, 1fr); }
.svc-card {
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 32px 28px;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-mid); }
.svc-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rad-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--accent-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em; color: var(--dark); }
.svc-card p { font-size: .92rem; color: var(--muted); line-height: 1.65; }
.svc-card ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.svc-card ul li {
  font-size: .76rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: var(--rad-sm);
}
.svc-lnk {
  font-size: .86rem;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 6px;
  transition: gap .18s ease;
}
.svc-lnk:hover { gap: 9px; }

/* ── PAGE INDEX (índice de página) ── */
.page-index {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 32px 0;
  background: #fff;
  position: relative;
  z-index: 1;
}
.page-index-lbl {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-index-lbl::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.page-index ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-index li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--rad-sm);
  transition: background .15s, border-color .15s, transform .15s;
}
.page-index li a::after {
  content: '↓';
  font-size: .8em;
  opacity: .7;
}
.page-index li a:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ── DETAIL BLOCKS (alternating) ── */
.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.detail:first-of-type { border-top: none; }
.detail-body h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.detail-body p { font-size: .96rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.detail-body p:last-child { margin-bottom: 0; }
.detail-list-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.detail-list { list-style: none; display: grid; gap: 10px; }
.detail-list li {
  position: relative;
  padding-left: 28px;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.6;
}
.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent);
}
.detail-callout {
  margin-top: 20px;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--rad-sm) var(--rad-sm) 0;
  padding: 18px 22px;
  font-size: .92rem;
  color: var(--gold);
  line-height: 1.65;
}
.detail-callout a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; color: var(--gold); }

/* ── STEPS ── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 32px 28px;
  background: #fff;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  position: relative;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-mid); }
.step-n {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent);
  opacity: .28;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.03em;
}
.step h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; letter-spacing: -.01em; }
.step p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ── PRESUPUESTO EN 3 PASOS (bloque de conversión) ── */
.quote-steps {
  background: var(--accent);
  padding: 84px 32px;
  position: relative;
  overflow: hidden;
}
.quote-steps-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.quote-steps-lbl {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-steps-lbl::before {
  content: '';
  width: 24px; height: 2px;
  background: rgba(255,255,255,.7);
}
.quote-steps-ttl {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
}
.quote-steps-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 44px;
}
.quote-steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.quote-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--rad);
  padding: 28px 24px 26px;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.quote-step:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-4px);
}
.quote-step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--rad-sm);
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(107,79,122,.28);
}
.quote-step h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.quote-step p {
  font-size: .89rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}
.quote-steps-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.quote-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--rad-sm);
  background: #fff;
  color: var(--accent-dark);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-btn-primary svg { width: 18px; height: 18px; fill: var(--wa); flex-shrink: 0; }
.quote-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.quote-btn-secondary {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--rad-sm);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  transition: background .2s ease, border-color .2s ease;
}
.quote-btn-secondary:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.quote-steps-note {
  margin-top: 18px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
@media (max-width: 1000px) {
  .quote-steps { padding: 64px 24px; }
  .quote-steps-grid { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 720px) {
  .quote-steps { padding: 56px 20px; }
  .quote-btn-primary, .quote-btn-secondary { width: 100%; justify-content: center; }
}

/* ── SHOWCASE (imagen destacada) ── */
.showcase { max-width: var(--max-w); margin: 0 auto; padding: 0 32px 80px; }
.showcase-fig { margin: 0; }
.showcase-fig img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--rad-lg);
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.showcase-fig figcaption {
  margin-top: 14px;
  font-size: .85rem;
  color: var(--muted);
  max-width: 560px;
}

/* ── WHY / BENEFITS ── */
.band { background: var(--gray); padding: 80px 32px; }
.band-inner { max-width: var(--max-w); margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.why-card {
  background: #fff;
  border-radius: var(--rad);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--accent-mid); }
.why-n {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--accent);
  opacity: .28;
  line-height: 1;
  margin-bottom: 14px;
}
.why-card h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; letter-spacing: -.01em; }
.why-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

.ben-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.ben-card {
  background: #fff;
  border-radius: var(--rad);
  padding: 28px 26px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.ben-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-mid); }
.ben-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rad-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ben-icon svg { width: 20px; height: 20px; stroke: var(--accent-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ben-card h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; letter-spacing: -.01em; }
.ben-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-wrap { padding: 0 32px 80px; }
.cta-banner {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--dark);
  border-radius: var(--rad);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  pointer-events: none;
}
.cta-t h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.cta-t p { color: rgba(255,255,255,.68); font-size: .92rem; line-height: 1.6; max-width: 460px; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.bwa, .bph, .bem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--rad-sm);
  transition: transform .2s, opacity .2s, background .2s;
  white-space: nowrap;
}
.bwa { background: var(--wa-bright); color: #06331b; }
.bwa:hover { opacity: .92; transform: translateY(-2px); }
.bph { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.34); }
.bph:hover { background: rgba(255,255,255,.2); }
.bem { background: #fff; color: var(--dark); }
.bem:hover { opacity: .92; transform: translateY(-2px); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 40px 32px; background: var(--white); }
.ft-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.ft-logo img { height: 60px; width: auto; object-fit: contain; display: block; }
.ft-copy { font-size: .78rem; color: var(--muted); text-align: center; line-height: 1.5; }
.ft-links { display: flex; gap: 24px; justify-content: flex-end; }
.ft-links a { font-size: .78rem; color: var(--muted); transition: color .15s; }
.ft-links a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 28px; height: 28px; fill: #06331b; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: #fff;
  padding: 20px 32px;
  z-index: 150;
  border-top: 3px solid var(--accent);
  animation: slideUp .4s ease-out;
}
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text p { font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.82); }
.cookie-text a { color: #fff; text-decoration: underline; text-underline-offset: 2px; transition: opacity .15s; }
.cookie-text a:hover { opacity: .75; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--rad-sm);
  transition: opacity .15s, transform .15s, background .15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.cookie-accept { background: #fff; color: var(--dark); }
.cookie-accept:hover { opacity: .9; transform: translateY(-1px); }
.cookie-reject { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.34) !important; }
.cookie-reject:hover { background: rgba(255,255,255,.22); }

/* ── CHAT WIDGET ── */
.chat-widget {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 320px;
  background: #fff;
  border-radius: var(--rad);
  box-shadow: var(--shadow-lg);
  z-index: 180;
  display: flex;
  flex-direction: column;
  max-height: 500px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.chat-header {
  background: var(--wa-bright);
  color: #06331b;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.chat-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-header-icon svg { width: 24px; height: 24px; fill: #06331b; }
.chat-header-content h2 { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.chat-header-content p { font-size: .78rem; opacity: .85; }
.chat-close {
  background: none;
  border: none;
  color: #06331b;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background .15s;
}
.chat-close:hover { background: rgba(255,255,255,.35); }
.chat-body { padding: 20px; flex: 1; overflow-y: auto; }
.chat-msg { margin-bottom: 16px; display: flex; gap: 12px; align-items: flex-start; }
.chat-msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}
.chat-msg-text {
  background: var(--gray);
  padding: 12px 14px;
  border-radius: var(--rad-sm);
  font-size: .875rem;
  line-height: 1.55;
  max-width: 220px;
  color: var(--text);
}
.chat-footer { padding: 16px; border-top: 1px solid var(--border); flex-shrink: 0; }
.chat-options { display: flex; flex-direction: column; gap: 8px; }
.chat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  white-space: nowrap;
}
.chat-btn:hover { background: var(--accent-light); border-color: var(--accent); transform: translateX(2px); }
.chat-btn svg { width: 17px; height: 17px; flex-shrink: 0; stroke: var(--accent-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── ANIMATIONS ── */
@keyframes slideUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .nav-inner {
    padding: 12px 24px;
    flex-wrap: wrap;
    min-height: 0;
    row-gap: 12px;
    column-gap: 12px;
  }
  .nav-logo { order: 1; margin-right: auto; }
  .nav-toggle { display: flex; order: 2; }
  .nav-cta { order: 3; flex-basis: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .nav-cta .btn-ol, .nav-cta .btn-dk { flex: 1 1 auto; text-align: center; justify-content: center; display: inline-flex; }
  .nav-links {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 4px 0;
    display: none;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; font-size: .95rem; }
  .hero-wrap, .stats-wrap, .cta-wrap, .band { padding-left: 24px; padding-right: 24px; }
  footer { padding-left: 24px; padding-right: 24px; }
  .sec { padding: 64px 24px; }
  .svc-grid, .svc-grid.two, .steps, .why-grid { grid-template-columns: 1fr 1fr; }
  .ben-grid { grid-template-columns: 1fr 1fr; }
  .detail { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .hero { min-height: 0; }
  .hero-bg { inset: 0 0 0 52%; }
  .hero-content { padding: 48px 36px; max-width: 52%; }
  .chat-widget { width: 300px; bottom: 88px; right: 20px; }
}

@media (max-width: 720px) {
  .nav-logo img { height: 72px; max-width: 200px; }
  .svc-grid, .svc-grid.two, .steps, .why-grid, .ben-grid, .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .ft-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .ft-logo { display: flex; justify-content: center; }
  .ft-links { justify-content: center; flex-wrap: wrap; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
  .hero-wrap { padding: 32px 16px 0; }
  .hero, .hero.tall { min-height: 0; border-radius: var(--rad); flex-direction: column; }
  .hero-bg { position: relative; inset: auto; width: 100%; height: 200px; order: -1; border-left: none; border-bottom: 1px solid var(--border); }
  .hero-content { padding: 32px 24px 40px; max-width: 100%; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-content p { font-size: .95rem; }
  .stats-wrap { padding: 16px 16px 24px; }
  .sec { padding: 56px 20px; }
  .band { padding: 56px 20px; }
  .hbtns { flex-direction: column; }
  .hbtn-p, .hbtn-s { width: 100%; justify-content: center; }
  .cta-wrap { padding: 0 16px 64px; }
  .cta-banner { padding: 36px 24px; flex-direction: column; align-items: flex-start; border-radius: var(--rad); }
  .cta-btns { width: 100%; flex-direction: column; }
  .bwa, .bph, .bem { width: 100%; justify-content: center; }
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .chat-widget { width: calc(100% - 32px); right: 16px; bottom: 80px; max-height: 420px; }
  .chat-msg-text { max-width: 100%; }
  .detail-list li, .sec-desc, .sec-intro { font-size: .92rem; }
}
