/* ============================================
   Michelle Solano — Divorcio de Mutuo Acuerdo
   Sistema de diseño propio (sin frameworks)
   ============================================ */

:root {
  --navy: #1f3a38;
  --navy-2: #244a44;
  --gold: #c97b3d;
  --gold-light: #dd9b5e;
  --cream: #f5f6f5;
  --paper: #ffffff;
  --ink: #1c211f;
  --body: #5a635f;
  --line: #e5e2d8;
  --success: #3a6b4f;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1120px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(28, 31, 42, 0.06), 0 1px 1px rgba(28, 31, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(22, 33, 58, 0.08);
  --shadow-lg: 0 24px 60px rgba(22, 33, 58, 0.16);
}

* { box-sizing: border-box; }

/* Salvaguarda contra "grid blowout": ningún hijo directo de nuestras
   cuadrículas debe forzar el ancho de su columna por su min-content
   (por ejemplo, un botón con texto largo en una sola línea). */
.hero-detail-grid,
.empathy-grid,
.check-grid,
.card-grid,
.timeline-grid,
.testi-grid,
.bio-grid,
.footer-grid,
.stats {
  min-width: 0;
}
.hero-detail-grid > *,
.empathy-grid > *,
.check-grid > *,
.card-grid > *,
.timeline-grid > *,
.testi-grid > *,
.bio-grid > *,
.footer-grid > *,
.stats > * {
  min-width: 0;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- Textura de fondo: quita la sensación "plana" de un color sólido ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 420px at 8% -6%, rgba(201,123,61,0.10), transparent 60%),
    radial-gradient(680px 520px at 108% 10%, rgba(31,58,56,0.08), transparent 55%),
    radial-gradient(500px 400px at 50% 115%, rgba(201,123,61,0.08), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/></svg>");
}
.site-header, main, .site-footer, .wa-float, .announce { position: relative; z-index: 1; }

/* ---- Iconos SVG (reemplazan los emoji/unicode) ---- */
.icn {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.14em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.05s; }
.reveal-2 { transition-delay: 0.15s; }
.reveal-3 { transition-delay: 0.25s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Micro-interacciones: íconos, estrellas y elementos decorativos ---- */
@keyframes iconPop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.card .icon, .step .num {
  transition: transform 0.2s ease;
}
.card.reveal.is-visible .icon,
.step.reveal.is-visible .num {
  animation: iconPop 0.5s cubic-bezier(.2,.7,.2,1) 0.1s backwards;
}

@keyframes starPop {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.testi.reveal.is-visible .stars {
  display: inline-block;
  animation: starPop 0.45s cubic-bezier(.2,.7,.2,1) 0.2s backwards;
}

.check-list li .check { display: inline-flex; }
.reveal.is-visible .check-list li .check {
  animation: iconPop 0.4s cubic-bezier(.2,.7,.2,1) backwards;
}
.check-list li:nth-child(1) .check { animation-delay: 0.05s; }
.check-list li:nth-child(2) .check { animation-delay: 0.12s; }
.check-list li:nth-child(3) .check { animation-delay: 0.19s; }
.check-list li:nth-child(4) .check { animation-delay: 0.26s; }
.check-list li:nth-child(5) .check { animation-delay: 0.33s; }

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.empathy-mark {
  animation: gentleFloat 5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .card.reveal.is-visible .icon,
  .step.reveal.is-visible .num,
  .testi.reveal.is-visible .stars,
  .reveal.is-visible .check-list li .check {
    animation: none;
  }
  .empathy-mark { animation: none; }
}

/* ---- Barra de progreso de lectura ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 200;
  transition: width 0.1s linear;
}

/* ---- Entrada orquestada del hero (corre siempre al cargar, no depende de scroll) ---- */
.hero-in {
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 0.7s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-in-1 { animation-delay: 0.05s; }
.hero-in-2 { animation-delay: 0.15s; }
.hero-in-3 { animation-delay: 0.28s; }
.hero-in-4 { animation-delay: 0.4s; }
.hero-in-5 { animation-delay: 0.52s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-in { animation: none; opacity: 1; transform: none; }
}

/* ---- Contadores animados ---- */
.counter { font-variant-numeric: tabular-nums; }

/* ---- Parallax sutil de la foto del hero ---- */
@media (prefers-reduced-motion: reduce) {
  .hero-banner-img { transform: none !important; }
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 20px;
}
.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--alt { background: var(--paper); }
.section--navy { background: var(--navy); color: #cddbd6; }
.section--navy h2, .section--navy h3 { color: #fff; }
.text-center { text-align: center; }
.lede {
  font-size: 19px;
  color: var(--body);
  max-width: 640px;
}
.lede--on-dark { color: #c3d3cd; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn .icn { transition: transform 0.2s ease; }
.btn:hover .icn { transform: translateX(3px); }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #2a1608;
  box-shadow: var(--shadow-md);
}
.btn--gold:hover { box-shadow: 0 14px 30px rgba(201, 123, 61, 0.35); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn--dark-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn--dark-outline:hover { border-color: #fff; }
.btn--block { width: 100%; white-space: normal; text-align: center; }
.btn--lg { padding: 18px 32px; font-size: 17px; }

@media (max-width: 480px){
  .btn--lg{ white-space: normal; text-align: center; }
}

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand span { color: var(--gold); }
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a:not(.btn) {
  text-decoration: none;
  color: var(--body);
  font-size: 15px;
  font-weight: 500;
}
.nav a:not(.btn):hover { color: var(--ink); }
.nav-links { display: flex; gap: 28px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* Nametag superpuesto sobre la foto — solo mobile, reemplaza al header en el above-the-fold */
.hero-banner-nametag {
  display: none;
}
/* Botón simple fijo en la parte inferior — reemplaza al header sticky en mobile */
.sticky-bottom-cta {
  display: none;
}
@media (max-width: 860px) {
  .site-header { display: none; }
  .sticky-bottom-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 16px;
    padding: 18px 24px;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    box-shadow: 0 -10px 26px rgba(28, 33, 31, 0.16);
  }
  .sticky-bottom-cta.is-visible {
    transform: translateY(0);
  }
  .hero-banner-nametag {
    display: block;
    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 2;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  }
  .hero-banner-nametag span { color: var(--gold-light); font-weight: 500; }
}

/* Announcement bar */
.announce {
  background: var(--navy);
  color: #f2ddc5;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
}
.announce strong { color: var(--gold-light); }

/* Hero banner — ancho completo: panel de texto + foto, unidos por un degrade.
   Nunca se superpone texto sobre la foto: así la cara de Michelle jamás
   queda tapada, sin importar el alto real del viewport (móvil o desktop). */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  background: var(--navy);
  overflow: hidden;
}
.hero-banner-text {
  position: relative;
  z-index: 1;
  flex: 0 0 54%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(24px, 5vw, 72px) 64px max(24px, calc((100vw - var(--container)) / 2 + 24px));
}
.hero-banner-text h1 {
  color: #fff;
  font-size: clamp(32px, 3vw, 46px);
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero-banner-text h1 em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
  white-space: nowrap;
}
.hero-banner-text h1 em svg {
  position: absolute;
  left: -2%;
  bottom: -0.16em;
  width: 104%;
  height: 0.32em;
  overflow: visible;
}
.hero-banner-text .lede {
  color: #c3d3cd;
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 480px;
}
.hero-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding-top: 22px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(245, 246, 245, 0.18);
  max-width: 480px;
}
.hero-price-tag {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--gold-light);
  line-height: 1;
}
.hero-price-tag small {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  margin-left: 2px;
  color: var(--gold-light);
  opacity: 0.85;
}
.hero-price-note {
  font-size: 14px;
  color: #c3d3cd;
  opacity: 0.85;
}
.hero-disclaimer {
  margin-top: 14px;
  font-size: 13px;
  color: #c3d3cd;
  opacity: 0.75;
  letter-spacing: 0.01em;
}
.hero-banner-photo {
  position: relative;
  flex: 1 1 46%;
  overflow: hidden;
}
.hero-banner-img {
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: top center;
  will-change: transform;
}
.hero-banner-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(31,58,56,0.35) 16%, rgba(31,58,56,0) 32%);
  pointer-events: none;
}
.hero-banner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,23,22,0) 70%, rgba(15,23,22,0.35) 100%);
  pointer-events: none;
}
@media (max-width: 860px) {
  .hero-banner { flex-direction: column; min-height: 0; }
  .hero-banner-text { flex: none; padding: 40px 24px 44px; }
  .hero-banner-photo {
    order: -1;
    flex: none;
    height: 46vh;
    min-height: 340px;
    max-height: 460px;
  }
  .hero-banner-photo::before { content: none; }
  .hero-banner-photo::after {
    background: linear-gradient(180deg, rgba(15,23,22,0) 62%, var(--navy) 100%);
  }
}

.badge-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.badge-row .stars { color: var(--gold); letter-spacing: 1px; }
.badge-row--dark {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  backdrop-filter: blur(6px);
}
.badge-row--dark .stars { color: var(--gold-light); }

/* Hero detail — checklist + formulario, continuación del banner */
.hero-detail {
  padding: 48px 0 80px;
  position: relative;
}
.hero-detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-detail-grid { grid-template-columns: 1fr; }
}
.hero-copy .eyebrow { margin-bottom: 16px; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 18px;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16.5px;
  color: var(--ink);
  font-weight: 500;
}
.check {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #eef4ee;
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: #6b7280;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Form card */
.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  border: 1px solid var(--line);
}

/* Modal de la calculadora — para los CTA que aparecen después de la calculadora en la página */
.calc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.calc-modal.is-open { display: flex; }
.calc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 33, 31, 0.62);
  backdrop-filter: blur(2px);
}
.calc-modal-panel {
  position: relative;
  z-index: 1;
  width: min(92%, 480px);
  max-height: 85vh;
  overflow-y: auto;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: calcModalIn 0.25s cubic-bezier(.2,.7,.2,1);
}
.calc-modal-panel .form-card {
  box-shadow: none;
  border: none;
  padding: 44px 28px 32px;
}
.calc-modal-close {
  position: sticky;
  top: 12px;
  margin: 12px 12px -36px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--body);
  cursor: pointer;
  z-index: 2;
}
.calc-modal-close:hover { color: var(--ink); }
.calc-modal-close .icn { width: 16px; height: 16px; }
body.calc-modal-open { overflow: hidden; }
@keyframes calcModalIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 560px) {
  .calc-modal { padding: 16px; }
  .calc-modal-panel { width: 100%; max-height: 82vh; }
  .calc-modal-panel .form-card { padding: 40px 20px 28px; }
}
.form-card h3 { font-size: 22px; margin-bottom: 4px; text-align: center; }
.form-sub {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input[type="text"],
.field input[type="tel"] {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: var(--sans);
  font-size: 15px;
  background: #fdfcfa;
}
.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,123,61,0.12);
}
.pill-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pill-group.two { grid-template-columns: repeat(2, 1fr); }
.pill {
  position: relative;
}
.pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pill span {
  display: block;
  text-align: center;
  padding: 11px 8px;
  border-radius: 9px;
  border: 1.5px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.15s ease;
}
.pill input:checked + span {
  border-color: var(--gold);
  background: #f5e6d3;
  color: #7a4a1f;
  font-weight: 600;
}
.field-error {
  color: #b3423f;
  font-size: 12.5px;
  margin-top: 6px;
  display: none;
}
.form-foot {
  text-align: center;
  font-size: 12.5px;
  color: #8a8f9c;
  margin-top: 14px;
}
.form-status {
  display: none;
  background: #eef4ee;
  color: var(--success);
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
}

/* ------------------------------------------------------------
   Calculadora — wizard dentro del mismo .form-card (sin cambios
   gráficos: reutiliza pills, botones y tipografía existentes)
   ------------------------------------------------------------ */
.calc-progress { margin-bottom: 22px; }
.calc-progress[hidden] { display: none; }
.calc-progress-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #8a8f9c;
  margin-bottom: 8px;
}
.calc-progress-track { height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; }
.calc-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.calc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: #8a8f9c;
  padding: 0;
  margin-bottom: 16px;
}
.calc-back[hidden] { display: none; }
.calc-back:hover { color: var(--gold); }
.calc-back .icn { transform: rotate(180deg); }

.calc-step[hidden] { display: none; }
.calc-question {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.calc-pill-group .pill span { padding: 15px 8px; font-size: 15px; }

/* Resultado */
.calc-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--success);
  background: #eef4ee;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.calc-result-badge .icn { width: 14px; height: 14px; }

.calc-result-situation {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.calc-result-situation li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}

.calc-complejidad-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: #f5e6d3;
  color: #7a4a1f;
}
.calc-complejidad-tag--baja { background: #eef4ee; color: var(--success); }
.calc-complejidad-tag--media { background: #f5e6d3; color: #7a4a1f; }
.calc-complejidad-tag--alta { background: #fbeaea; color: #b3423f; }

.calc-result-price {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--navy);
  margin: 4px 0 10px;
}
.calc-result-price small { font-size: 14px; color: #8a8f9c; font-family: var(--sans); font-weight: 500; }

.calc-result-note { font-size: 13.5px; color: #8a8f9c; margin-bottom: 4px; }
.calc-result-cta { margin-top: 22px; }

/* Trust stats */
.stats-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 15% 0%, rgba(221,155,94,0.12), transparent 60%);
  pointer-events: none;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 44px 0;
  position: relative;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
.stat { text-align: center; }
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold-light);
}
.stat span { font-size: 13.5px; color: #a9beb8; }

/* Empathy — layout editorial asimétrico, no centrado como el resto */
.empathy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .empathy-grid { grid-template-columns: 1fr; gap: 28px; }
}
.empathy-mark {
  width: min(180px, 60%);
  height: auto;
  fill: var(--gold-light);
  opacity: 0.7;
}
.empathy h2 { font-size: clamp(26px, 3vw, 32px); text-align: left; }
.empathy p { font-size: 17px; text-align: left; }
.empathy .callout {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-top: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

/* Two-column checklists */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .check-grid { grid-template-columns: 1fr; gap: 32px; }
}
.check-grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}
.check-headline {
  font-size: clamp(28px, 3.6vw, 38px);
  margin-bottom: 10px;
}
.check-subhead {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 18px;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink);
}

/* Benefit cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card .icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #f5e6d3;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.card .card-body { min-width: 0; }
.card:nth-child(2) .icon { background: #e9f2ef; color: var(--navy); }
.card:nth-child(4) .icon { background: #e9f2ef; color: var(--navy); }
.card:nth-child(6) .icon { background: #e9f2ef; color: var(--navy); }
.card h4 { font-size: 16.5px; margin-bottom: 6px; }
.card p { font-size: 14.5px; margin: 0; }

.timeline-card, .step {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.timeline-card:hover, .step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .timeline-grid { grid-template-columns: 1fr; } }
.timeline-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.timeline-card .days {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 26px;
  margin: 10px 0 4px;
}
.days-bar {
  height: 6px;
  border-radius: 4px;
  background: var(--cream);
  overflow: hidden;
  margin-top: 14px;
}
.days-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 1s cubic-bezier(.2,.7,.2,1) 0.15s;
}
.reveal.is-visible .days-bar-fill { width: var(--w, 0%); }
@media (prefers-reduced-motion: reduce) {
  .days-bar-fill { transition: none; width: var(--w, 0%); }
}
.timeline-note {
  text-align: center;
  font-size: 13px;
  color: #8a8f9c;
  margin-top: 18px;
}

/* Pricing */
.price-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.price-tag {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--navy);
  margin: 6px 0 2px;
}
.price-tag small { font-size: 16px; color: #8a8f9c; font-family: var(--sans); }
.price-note { font-size: 14px; color: #8a8f9c; margin-bottom: 24px; }
.includes-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
.includes-list li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); }
.price-disclaimer {
  font-size: 13px;
  color: #8a8f9c;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 8px;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: left;
}
.step .num {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--serif);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.step h4 { font-size: 15px; margin: 0; }

/* Testimonials — muro escalonado, no una grilla pareja */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 860px) {
  /* Carrusel horizontal con scroll-snap — ahorra espacio vertical en mobile */
  .testi-grid {
    display: flex;
    grid-template-columns: unset;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -24px;
    padding: 4px 24px 10px;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
  .testi:nth-child(1), .testi:nth-child(2), .testi:nth-child(3) { transform: none; }
}
.testi {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  text-align: left;
}
.testi:nth-child(1) { transform: translateY(0); }
.testi:nth-child(2) { transform: translateY(28px); }
.testi:nth-child(3) { transform: translateY(-6px); }
@media (max-width: 860px) {
  .testi:nth-child(1), .testi:nth-child(2), .testi:nth-child(3) { transform: none; }
}
.testi .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; margin-top: 6px; }
.testi p { font-size: 15px; color: var(--ink); font-style: italic; }
.testi-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #8a8f9c;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Testimonios sobre fondo oscuro */
.testi-section .testi {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.testi-section .testi p { color: #fff; }
.testi-section .testi-foot {
  color: #9db3ac;
  border-top-color: rgba(255,255,255,0.14);
}
.testi-section .testi-foot b { color: #fff; }
.testi-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f5e6d3;
  color: #7a4a1f;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex: none;
}
.testi-foot b { color: var(--ink); font-style: normal; display: block; }

/* Bio */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 760px) {
  .bio-grid { grid-template-columns: 1fr; }
}
.bio-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.bio-cred {
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
}
.bio-exp { color: var(--body); margin-bottom: 14px; }
.bio-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

/* FAQ accordion */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .icon { color: var(--gold); font-size: 20px; transition: transform 0.2s ease; flex: none; }
.faq-item[data-open="true"] .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 14.5px;
  color: var(--body);
}
.faq-a-inner { padding: 0 4px 20px; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); }
.final-cta .lede { color: #c3d3cd; margin: 0 auto 32px; }
.final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-note {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13.5px;
  color: #9db3ac;
}

/* Footer */
.site-footer {
  background: var(--navy-2);
  color: #a9beb8;
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 { color: #fff; font-family: var(--sans); font-size: 14px; margin-bottom: 14px; }
.site-footer a { text-decoration: none; color: #a9beb8; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 12.5px;
  color: #7f88a0;
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  background: #25d366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-size: 26px;
}
@media (max-width: 860px) {
  .wa-float { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero-detail { padding: 32px 0 48px; }
  .form-card { padding: 24px; }
}

/* Legal pages */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal-page h1 { font-size: 32px; }
.legal-page h2 { font-size: 20px; margin-top: 36px; }
.legal-page p, .legal-page li { font-size: 15px; }
.legal-updated { color: #8a8f9c; font-size: 13.5px; margin-bottom: 32px; }
