/* ============================================================
   Viole Eisenman — College Planning & Education Consulting
   Estilo: "cuaderno de ruta" — papel cálido, trazos a mano,
   tipografía redonda. Colores de marca, lenguaje visual nuevo.
   ============================================================ */

@font-face {
  font-family: 'Monopoly';
  src: url('../fonts/MONOPOLY_BOLD.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Monopoly';
  src: url('../fonts/MONOPOLY_LIGHT.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Cocomat';
  src: url('../fonts/Cocomat-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

:root {
  /* Tinta y papel */
  --ink: #06302a;
  --ink-soft: #47605a;
  --ink-faint: #869994;
  --paper: #fbf8f3;
  --paper-deep: #f4efe6;
  --white: #ffffff;

  /* Marca */
  --green: #003730;
  --green-mid: #12564a;
  --gold: #e6af44;
  --gold-deep: #b8861f;
  --sage: #dfe9e5;
  --peach: #f3cdb6;
  --blush: #f2d9ea;

  --font-display: 'Monopoly', 'Cocomat', 'Trebuchet MS', sans-serif;
  --font-alt: 'Cocomat', 'Monopoly', sans-serif;
  --font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1120px;
  --nav-h: 74px;

  /* Trazo a mano: radios irregulares */
  --hand-1: 22px 30px 24px 28px / 28px 22px 30px 24px;
  --hand-2: 30px 22px 28px 24px / 24px 30px 22px 28px;
  --hand-3: 26px 32px 20px 30px / 30px 20px 32px 26px;

  --shadow-soft: 0 1px 2px rgba(6, 48, 42, 0.04), 0 10px 30px rgba(6, 48, 42, 0.06);
  --shadow-lift: 0 2px 6px rgba(6, 48, 42, 0.05), 0 22px 50px rgba(6, 48, 42, 0.1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Grano de papel, muy sutil */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.3rem, 7.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Utilidades ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.section--paper-deep { background: var(--paper-deep); }
.section--ink { background: var(--green); color: rgba(255, 255, 255, 0.8); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--white); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex: none;
}
.head--center .eyebrow { justify-content: center; }
.section--ink .eyebrow { color: var(--gold); }

.lead {
  font-size: clamp(1.05rem, 2.3vw, 1.22rem);
  line-height: 1.65;
}
.section--ink .lead { color: rgba(255, 255, 255, 0.82); }

.head { max-width: 640px; margin-bottom: clamp(38px, 5vw, 60px); }
.head--center { margin-inline: auto; text-align: center; }

/* Trazo a mano bajo una palabra */
.scribble { position: relative; white-space: nowrap; }
.scribble svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.32em;
  width: 100%;
  height: 0.42em;
  overflow: visible;
  stroke: var(--gold);
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
}

/* Palabra encerrada a mano */
.circled { position: relative; white-space: nowrap; }
.circled svg {
  position: absolute;
  left: -8%;
  top: -22%;
  width: 116%;
  height: 148%;
  stroke: var(--gold);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  opacity: 0.85;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--hand-1);
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-align: center;
  line-height: 1.25;
}
.btn:hover { transform: translateY(-3px) rotate(-0.6deg); }
.btn:active { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 5px 0 0 var(--gold-deep);
}
.btn--primary:hover { background: var(--green-mid); box-shadow: 0 7px 0 0 var(--gold-deep); }

.btn--gold {
  background: var(--gold);
  color: var(--green);
  box-shadow: 0 5px 0 0 rgba(0, 55, 48, 0.55);
}
.btn--gold:hover { background: #f2c163; }

.btn--ghost {
  border-color: rgba(0, 55, 48, 0.3);
  color: var(--green);
  background: transparent;
  border-radius: var(--hand-2);
}
.btn--ghost:hover { border-color: var(--green); background: rgba(0, 55, 48, 0.045); }
.section--ink .btn--ghost { border-color: rgba(255, 255, 255, 0.4); color: var(--white); }
.section--ink .btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.09); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='4'%3E%3Cpath d='M0 2q15-2 30 0t30 0 30 0 30 0' stroke='%23003730' stroke-opacity='.16' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav.is-stuck::after { opacity: 1; }

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo img { height: 42px; width: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.97rem;
  color: var(--green);
  padding: 6px 0;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 6px;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 4px;
  transition: right 0.28s cubic-bezier(.4,0,.2,1);
}
.nav__links a:hover::after { right: 0; }

.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  background: transparent;
  border: 0;
}
.nav__toggle span {
  display: block;
  height: 2.5px;
  background: var(--green);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav__toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile {
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  background: var(--paper);
}
.nav__mobile.is-open { max-height: 480px; }
.nav__mobile ul { list-style: none; margin: 0; padding: 8px 22px 22px; }
.nav__mobile li + li { border-top: 1px dashed rgba(0, 55, 48, 0.16); }
.nav__mobile a {
  display: block;
  padding: 16px 2px;
  text-decoration: none;
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 400;
}
.nav__mobile .btn { width: 100%; margin-top: 18px; }

@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(44px, 7vw, 90px) 0 clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  right: -180px; top: -260px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 68%);
  opacity: 0.8;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  left: -200px; bottom: -180px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }

.hero__grid { display: grid; gap: clamp(44px, 6vw, 60px); align-items: center; }
.hero h1 { margin-bottom: 0.42em; }
.hero__lead { font-size: clamp(1.06rem, 2.5vw, 1.26rem); max-width: 35ch; margin-bottom: 34px; }
.hero .btn-row { margin-bottom: 28px; }

.hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-faint);
}

/* Foto con marco trazado a mano */
.hero__media { position: relative; }
.hero__frame { position: relative; }
.hero__frame::before {
  content: '';
  position: absolute;
  inset: -14px -12px -10px -16px;
  border: 2.5px solid var(--green);
  border-radius: var(--hand-3);
  opacity: 0.28;
  transform: rotate(-1.4deg);
  pointer-events: none;
}
.hero__photo {
  position: relative;
  border-radius: var(--hand-1);
  overflow: hidden;
  background: var(--sage);
  aspect-ratio: 4 / 5;
  transform: rotate(0.8deg);
  box-shadow: var(--shadow-lift);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.hero__sello {
  position: absolute;
  width: clamp(88px, 15vw, 124px);
  right: -14px;
  bottom: -18px;
  background: var(--paper);
  border-radius: 50%;
  padding: 9px;
  box-shadow: var(--shadow-soft);
  animation: spin 46s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__badge {
  position: absolute;
  left: -14px;
  top: 30px;
  background: var(--paper);
  border: 2px solid var(--green);
  border-radius: var(--hand-2);
  padding: 13px 18px;
  font-size: 0.82rem;
  line-height: 1.4;
  max-width: 178px;
  transform: rotate(-2.2deg);
  box-shadow: 4px 5px 0 rgba(0, 55, 48, 0.1);
}
.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1.1;
}

@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.02fr 0.98fr; } }
@media (prefers-reduced-motion: reduce) {
  .hero__sello { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Barra de credibilidad ---------- */
.trust {
  padding: 26px 0;
  border-block: 1px dashed rgba(0, 55, 48, 0.18);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 34px;
}
.trust__label {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.trust img { height: 30px; width: auto; opacity: 0.72; mix-blend-mode: multiply; }
.trust__item { font-size: 0.9rem; color: var(--green); font-family: var(--font-body); }

/* ============================================================
   RESULTADOS — compacto
   ============================================================ */
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }

.results {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 900px) { .results { grid-template-columns: 0.9fr 1.1fr; } }

.results__hero .eyebrow { margin-bottom: 10px; }
.results__big {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8.5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.results__cap {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 30ch;
}

.results__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
@media (min-width: 620px) { .results__grid { grid-template-columns: repeat(3, 1fr); } }

.results__grid li {
  border: 2px solid rgba(230, 175, 68, 0.4);
  border-radius: var(--hand-1);
  padding: 18px 20px;
}
.results__grid li:nth-child(2) { border-radius: var(--hand-2); }
.results__grid li:nth-child(3) { border-radius: var(--hand-3); }
.results__grid strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}
.results__grid span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.4;
  display: block;
}

.results__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: clamp(28px, 4vw, 40px) 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.02rem, 2.4vw, 1.25rem);
  color: var(--white);
  text-align: center;
}
.results__note svg { flex: none; }
.results__note strong { color: var(--gold); font-weight: 700; }

/* ============================================================
   STATS — círculos trazados a mano (legado)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 48px) 16px;
}
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat { text-align: center; }
.stat__ring {
  position: relative;
  width: clamp(104px, 22vw, 132px);
  margin: 0 auto 18px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.stat__ring svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  stroke: var(--gold);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.6vw, 2.5rem);
  color: var(--white);
  line-height: 1;
  position: relative;
}
.stat__label {
  font-size: 0.94rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 22ch;
  margin-inline: auto;
}

/* ============================================================
   PREGUNTAS
   ============================================================ */
.questions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.question {
  border: 2px solid var(--green);
  border-radius: var(--hand-1);
  padding: 11px 20px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.95rem, 2.3vw, 1.06rem);
  color: var(--green);
  background: var(--paper);
}
.question:nth-child(1) { transform: rotate(-1.2deg); background: var(--white); }
.question:nth-child(2) { transform: rotate(0.9deg); background: var(--blush); border-color: transparent; }
.question:nth-child(3) { transform: rotate(-0.6deg); background: var(--peach); border-color: transparent; }
.question:nth-child(4) { transform: rotate(1.3deg); background: var(--sage); border-color: transparent; }
.question:nth-child(5) { transform: rotate(-0.9deg); background: var(--white); }

.split { display: grid; gap: clamp(34px, 5vw, 66px); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.12fr 0.88fr; }
}
.split__media { position: relative; }
.split__media img {
  border-radius: var(--hand-2);
  box-shadow: var(--shadow-lift);
  width: 100%;
  transform: rotate(-1deg);
}
.split__media::before {
  content: '';
  position: absolute;
  inset: -12px -14px -14px -12px;
  border: 2.5px dashed rgba(0, 55, 48, 0.22);
  border-radius: var(--hand-3);
  transform: rotate(1.2deg);
  pointer-events: none;
}
.split--reverse .split__media { order: -1; }
@media (min-width: 900px) { .split--reverse .split__media { order: 0; } }

/* ============================================================
   TARJETAS DE BENEFICIO
   ============================================================ */
.cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--hand-1);
  padding: clamp(26px, 3.5vw, 32px);
  box-shadow: 5px 6px 0 rgba(0, 55, 48, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:nth-child(2) { border-radius: var(--hand-2); }
.card:nth-child(3) { border-radius: var(--hand-3); }
.card:hover { transform: translateY(-5px); box-shadow: 7px 10px 0 rgba(0, 55, 48, 0.13); }

.card__icon {
  width: 56px; height: 56px;
  border-radius: 50% 46% 52% 48% / 48% 52% 46% 50%;
  display: grid;
  place-items: center;
  background: var(--sage);
  margin-bottom: 20px;
}
.card__icon svg { width: 27px; height: 27px; stroke: var(--green); }
.card:nth-child(2) .card__icon { background: var(--peach); }
.card:nth-child(3) .card__icon { background: #f8e3bb; }
.card:nth-child(4) .card__icon { background: var(--blush); }
.card h3 { margin-bottom: 0.45em; }
.card p { font-size: 0.97rem; margin: 0; }

/* ============================================================
   MÉTODO — mapa ilustrado
   ============================================================ */
.roadmap { position: relative; padding-top: 8px; }

.roadmap__path { display: none; }
.roadmap__trail {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 0.1 17;
  opacity: 0.75;
}

.roadmap__deco,
.roadmap__goal { display: none; }

.stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 42px;
  position: relative;
  z-index: 1;
}

.stop { text-align: center; }
.stop h3 {
  font-size: clamp(1.35rem, 3.4vw, 1.7rem);
  margin: 20px 0 0.35em;
}
.stop p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  max-width: 26ch;
  margin-inline: auto;
  line-height: 1.55;
}
.stop p em { color: var(--gold); font-style: italic; }

.stop__badge {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 52% 48% 46% 54% / 48% 54% 46% 52%;
  background: rgba(230, 175, 68, 0.14);
  border: 2.5px solid var(--gold);
}
.stop__badge svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stop__badge em {
  position: absolute;
  right: -8px;
  top: -6px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}

/* Escritorio: ruta ascendente con paradas escalonadas */
@media (min-width: 860px) {
  .roadmap { min-height: 460px; }
  .roadmap__path {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .stops {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    padding-top: 12px;
  }
  .stop:nth-child(1) { margin-top: 250px; }
  .stop:nth-child(2) { margin-top: 128px; }
  .stop:nth-child(3) { margin-top: 8px; }

  .roadmap__deco {
    display: block;
    position: absolute;
    width: 34px;
    height: 34px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.6;
  }
  .roadmap__deco--start { left: 0; bottom: 34px; }

  .roadmap__goal {
    display: block;
    position: absolute;
    right: -6px;
    top: 26px;
    width: 46px;
    height: 46px;
  }
  .roadmap__goal svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

/* Móvil: la ruta solo une los badges, nunca cruza el texto */
@media (max-width: 859px) {
  .stop { position: relative; }
  .stop + .stop::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -42px;
    height: 42px;
    width: 3px;
    transform: translateX(-50%);
    background-image: linear-gradient(var(--gold) 42%, transparent 0);
    background-size: 3px 14px;
    opacity: 0.6;
  }
}

/* ============================================================
   MÉTODO — ruta punteada (legado)
   ============================================================ */
.route { position: relative; }
.route__line {
  display: none;
  position: absolute;
  left: 8%; right: 8%;
  top: 46px;
  height: 40px;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-dasharray: 2 12;
  stroke-linecap: round;
  fill: none;
  opacity: 0.65;
}
@media (min-width: 820px) { .route__line { display: block; } }

.method { display: grid; gap: 24px; position: relative; }
@media (min-width: 820px) { .method { grid-template-columns: repeat(3, 1fr); } }

.step { text-align: center; position: relative; }
.step__dot {
  width: 62px; height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  box-shadow: 0 0 0 8px rgba(230, 175, 68, 0.16);
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.28rem; margin-bottom: 0.5em; }
.step p { font-size: 0.99rem; color: rgba(255, 255, 255, 0.76); margin: 0; max-width: 32ch; margin-inline: auto; }

.route__note {
  text-align: center;
  max-width: 620px;
  margin: clamp(44px, 6vw, 60px) auto 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--white);
  line-height: 1.55;
}

/* ============================================================
   PROGRAMAS — dos pasos
   ============================================================ */
.programs { display: grid; gap: 24px; align-items: stretch; }
@media (min-width: 900px) { .programs { grid-template-columns: 1fr 1fr; } }

.program {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 40px);
  background: var(--white);
  border-radius: var(--hand-1);
}
.program--first {
  border: 2px solid var(--green);
  box-shadow: 7px 8px 0 rgba(0, 55, 48, 0.12);
}
.program--next {
  border: 2px dashed rgba(0, 55, 48, 0.3);
  border-radius: var(--hand-2);
  background: transparent;
}

.program__tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: var(--hand-3);
  margin-bottom: 18px;
}
.program--first .program__tag { background: var(--gold); color: var(--green); }
.program--next .program__tag { background: var(--sage); color: var(--green); }

.program h3 { font-size: clamp(1.6rem, 4vw, 2.1rem); margin-bottom: 0.2em; }
.program__sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.06rem;
  color: var(--gold-deep);
  margin-bottom: 1em;
}
.program > p { font-size: 0.99rem; }

.program__meta { list-style: none; margin: 24px 0 30px; padding: 0; flex: 1; }
.program__meta li {
  padding: 11px 0;
  border-top: 1px dashed rgba(0, 55, 48, 0.2);
  font-size: 0.95rem;
}
.program__meta strong { color: var(--green); font-weight: 600; }
.program .btn { align-self: flex-start; }

.programs__note {
  text-align: center;
  max-width: 560px;
  margin: clamp(32px, 5vw, 46px) auto 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.02rem, 2.3vw, 1.18rem);
  color: var(--green);
  line-height: 1.55;
}

/* ============================================================
   INCLUYE / PRECIO
   ============================================================ */
.pricing { display: grid; gap: 34px; align-items: start; }
@media (min-width: 940px) { .pricing { grid-template-columns: 1.08fr 0.92fr; } }

.includes { list-style: none; margin: 0; padding: 0; }
.includes li {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(0, 55, 48, 0.2);
  align-items: flex-start;
}
.includes li:first-child { padding-top: 0; }
.includes li:last-child { border-bottom: 0; }
.includes svg { flex: none; margin-top: 4px; }
.includes strong {
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 3px;
}
.includes span { display: block; font-size: 0.97rem; }

.price-card {
  background: var(--green);
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--hand-2);
  padding: clamp(30px, 4vw, 42px);
  box-shadow: 8px 9px 0 rgba(230, 175, 68, 0.5);
  position: sticky;
  top: calc(var(--nav-h) + 22px);
}
.price-card h3 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-alt);
  font-weight: 300;
  margin-bottom: 4px;
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 4.2rem);
  color: var(--white);
  line-height: 1;
  margin: 12px 0 6px;
}
.price-card__amount sup { font-size: 0.34em; vertical-align: super; color: var(--gold); margin-right: 5px; }
.price-card__note { font-size: 0.88rem; color: rgba(255, 255, 255, 0.58); margin-bottom: 26px; }
.price-card ul { list-style: none; margin: 0 0 30px; padding: 0; font-size: 0.97rem; }
.price-card li {
  display: flex;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}
.price-card li:last-child { border-bottom: 0; }
.price-card li svg { flex: none; margin-top: 4px; }
.price-card .btn { width: 100%; }
.price-card__alt { text-align: center; font-size: 0.89rem; color: rgba(255, 255, 255, 0.6); margin: 18px 0 0; }
.price-card__alt a { color: var(--gold); text-underline-offset: 3px; }

/* ============================================================
   FIT / NO FIT
   ============================================================ */
.fit { display: grid; gap: 22px; }
@media (min-width: 820px) { .fit { grid-template-columns: 1fr 1fr; } }
.fit__col { border-radius: var(--hand-1); padding: clamp(28px, 4vw, 38px); }
.fit__col--yes {
  background: var(--white);
  border: 2px solid var(--green);
  box-shadow: 5px 6px 0 rgba(0, 55, 48, 0.1);
}
.fit__col--no {
  background: transparent;
  border: 2px dashed rgba(0, 55, 48, 0.24);
  border-radius: var(--hand-2);
}
.fit__col h3 {
  font-family: var(--font-alt);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fit__col--no h3 { color: var(--ink-faint); }
.fit ul { list-style: none; margin: 0; padding: 0; }
.fit li { display: flex; gap: 13px; padding: 12px 0; font-size: 1rem; align-items: flex-start; }
.fit li svg { flex: none; margin-top: 5px; }

/* ============================================================
   TESTIMONIOS — carrusel de tarjetas tipo nota
   ============================================================ */
.tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 2px solid var(--green);
  border-radius: var(--hand-1);
  margin-bottom: 40px;
  background: var(--white);
}
.tab {
  border: 0;
  background: transparent;
  padding: 10px 24px;
  border-radius: var(--hand-2);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--green);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.tab[aria-selected='true'] { background: var(--green); color: var(--white); }
.tab:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.rail-wrap { position: relative; }
.rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 22px 30px;
  margin-inline: -22px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail[hidden] { display: none; }

.quote {
  scroll-snap-align: center;
  flex: 0 0 min(86vw, 380px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--hand-1);
  padding: 30px 28px 26px;
  box-shadow: 5px 6px 0 rgba(0, 55, 48, 0.1);
  position: relative;
}
.quote:nth-child(4n + 2) { background: var(--sage); border-radius: var(--hand-2); transform: rotate(-0.7deg); }
.quote:nth-child(4n + 3) { background: var(--peach); border-radius: var(--hand-3); transform: rotate(0.6deg); }
.quote:nth-child(4n + 4) { background: var(--blush); border-radius: var(--hand-2); transform: rotate(-0.4deg); }

.quote__mark {
  position: absolute;
  top: 14px;
  right: 20px;
  width: 44px;
  height: 34px;
  stroke: var(--gold);
  stroke-width: 3.4;
  fill: none;
  stroke-linecap: round;
  opacity: 0.75;
}
.quote p {
  font-size: 0.99rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 22px;
  flex: 1;
}
.quote__by { display: flex; align-items: center; gap: 13px; }
.quote__avatar {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50% 47% 53% 48% / 48% 53% 47% 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}
.quote__name { font-family: var(--font-display);
  font-weight: 400; color: var(--green); font-size: 1rem; line-height: 1.3; }
.quote__where { display: block; font-size: 0.82rem; color: var(--ink-faint); font-family: var(--font-body); }

.rail-nav { display: flex; justify-content: center; gap: 12px; margin-top: 6px; }
.rail-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  display: grid;
  place-items: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.rail-btn:hover { background: var(--green); color: var(--paper); transform: translateY(-2px); }
.rail-btn:disabled { opacity: 0.28; cursor: default; transform: none; background: transparent; color: var(--green); }
.rail-btn svg { width: 20px; height: 20px; }

/* ============================================================
   BIO
   ============================================================ */
.wins { list-style: none; margin: 30px 0 0; padding: 0; }
.wins li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px dashed rgba(0, 55, 48, 0.2);
  font-size: 0.98rem;
  align-items: flex-start;
}
.wins li svg { flex: none; margin-top: 5px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px dashed rgba(0, 55, 48, 0.22); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 26px 2px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.04rem, 2.4vw, 1.2rem);
  color: var(--green);
}
.faq__q:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.faq__icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50% 46% 52% 48% / 48% 52% 46% 50%;
  border: 2px solid var(--green);
  display: grid;
  place-items: center;
  position: relative;
  transition: background-color 0.2s ease, transform 0.3s ease;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--green);
  border-radius: 2px;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__q[aria-expanded='true'] .faq__icon { background: var(--green); transform: rotate(90deg); }
.faq__q[aria-expanded='true'] .faq__icon::before { background: var(--paper); }
.faq__q[aria-expanded='true'] .faq__icon::after { opacity: 0; }

.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.32s ease; }
.faq__a > div { padding: 0 2px 28px; font-size: 1rem; max-width: 68ch; }

/* ============================================================
   CTA / FORM
   ============================================================ */
.cta-form {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--hand-2);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 8px 9px 0 rgba(0, 55, 48, 0.1);
}
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 660px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field--full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.88rem;
  color: var(--green);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0, 55, 48, 0.2);
  border-radius: var(--hand-1);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none' stroke='%23003730' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 3px 4px 0 rgba(230, 175, 68, 0.55);
}
.field textarea { resize: vertical; min-height: 98px; border-radius: var(--hand-2); }

.form-foot { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.form-foot .btn { width: 100%; }
.form-note { font-size: 0.86rem; color: var(--ink-faint); margin: 0; text-align: center; }
@media (min-width: 660px) {
  .form-foot { flex-direction: row; align-items: center; justify-content: space-between; }
  .form-foot .btn { width: auto; }
  .form-note { text-align: left; }
}

.alt-cta { text-align: center; margin: 30px auto 0; font-size: 1rem; }
.alt-cta a {
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 400;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
  text-decoration-thickness: 2.5px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(52px, 7vw, 80px) 0 32px;
  font-size: 0.95rem;
}
.footer__grid { display: grid; gap: 34px; margin-bottom: 44px; }
@media (min-width: 820px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; } }
.footer__logo { height: 46px; width: auto; margin-bottom: 20px; }
.footer h4 {
  color: var(--white);
  font-family: var(--font-alt);
  font-weight: 300;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 12px; }
.footer a { text-decoration: none; transition: color 0.18s ease; }
.footer a:hover { color: var(--gold); }

.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 44px; height: 44px;
  border-radius: 50% 46% 52% 48% / 48% 52% 46% 50%;
  border: 2px solid rgba(255, 255, 255, 0.26);
  display: grid;
  place-items: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.socials a:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }
.socials svg { width: 18px; height: 18px; }

.footer__bottom {
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------- WhatsApp flotante ---------- */
.float-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--hand-1);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  box-shadow: 0 4px 0 var(--gold-deep), 0 10px 30px rgba(0, 55, 48, 0.3);
  transform: translateY(140px);
  transition: transform 0.35s cubic-bezier(.34,1.4,.64,1), background-color 0.2s ease;
}
.float-cta.is-visible { transform: translateY(0); }
.float-cta:hover { background: var(--green-mid); }
@media (min-width: 940px) { .float-cta { right: 26px; bottom: 26px; } }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .rail-btn:hover { transform: none; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus { left: 8px; }

/* Confirmación tras enviar el formulario */
.form-done { text-align: center; padding: 10px 0; }
.form-done__mark { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.form-done h3 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.4em; }
.form-done p { max-width: 38ch; margin: 0 auto 24px; }
