/* ============================================================
   Au Pair Mastery Brasil — base system
   Palette extracted from the brand logo.
   ============================================================ */

:root {
  /* Brand palette (from logo) */
  --cream:       #FBF4E8;
  --cream-2:     #F5EAD6;
  --cream-3:     #EFE0C7;
  --paper:       #FFFCF6;
  --ink:         #2B2419;
  --ink-soft:    #6F665A;
  --ink-faint:   #9A9182;
  --teal:        #14566A;
  --teal-deep:   #0E3F4E;
  --teal-ink:    #0B2E39;
  --green:       #1D9E75;
  --green-deep:  #157C5C;
  --ochre:       #BA7517;
  --ochre-deep:  #985E0F;
  --sand:        #DAB87F;
  --sun:         #E8C068;
  --sun-bright:  #F2CB5C;
  --line:        rgba(43,36,25,0.12);
  --line-soft:   rgba(43,36,25,0.07);

  /* Themeable tokens (overridden per direction) */
  --bg:          var(--cream);
  --bg-alt:      var(--paper);
  --surface:     var(--paper);
  --headline:    var(--teal-ink);
  --body:        var(--ink-soft);
  --accent:      var(--teal);
  --accent-2:    var(--green);
  --cta-bg:      var(--ochre);
  --cta-text:    #fff;
  --halo:        var(--sun);
  --radius:      18px;
  --radius-lg:   28px;
  --radius-pill: 999px;
  --shadow:      0 1px 2px rgba(43,36,25,.04), 0 12px 32px -16px rgba(43,36,25,.22);
  --shadow-lg:   0 2px 4px rgba(43,36,25,.05), 0 40px 80px -40px rgba(43,36,25,.34);

  --display: "Newsreader", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Direction B · Jornada (warm, cinematic) ---------- */
.theme-jornada {
  --bg:        #1F1206;
  --bg-alt:    #2A1A0A;
  --surface:   #2E1D0C;
  --headline:  #FBEFD9;
  --body:      #D8C3A2;
  --accent:    var(--sun-bright);
  --accent-2:  var(--green);
  --cta-bg:    var(--sun-bright);
  --cta-text:  #2A1A0A;
  --halo:      var(--ochre);
  --line:      rgba(242,203,92,0.16);
  --line-soft: rgba(242,203,92,0.09);
  --shadow:    0 1px 2px rgba(0,0,0,.3), 0 18px 40px -18px rgba(0,0,0,.6);
  --shadow-lg: 0 2px 4px rgba(0,0,0,.3), 0 50px 90px -40px rgba(0,0,0,.7);
}

/* ---------- Direction C · Sereno (light, green-forward, clinical-soft) ---------- */
.theme-sereno {
  --bg:        #F4F7F2;
  --bg-alt:    #FFFFFF;
  --surface:   #FFFFFF;
  --headline:  #133C30;
  --body:      #4F5E55;
  --accent:    var(--green-deep);
  --accent-2:  var(--teal);
  --cta-bg:    var(--green-deep);
  --cta-text:  #fff;
  --halo:      var(--green);
  --line:      rgba(19,60,48,0.12);
  --line-soft: rgba(19,60,48,0.06);
  --radius:    26px;
  --radius-lg: 36px;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .5s ease, color .5s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--headline);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.narrow { max-width: 760px; }

section { position: relative; }

/* ============================================================
   Shared atoms
   ============================================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .005em;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .25s;
  will-change: transform;
}
.btn-primary {
  background: var(--cta-bg);
  color: var(--cta-text);
  box-shadow: 0 10px 24px -10px color-mix(in oklab, var(--cta-bg) 80%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px color-mix(in oklab, var(--cta-bg) 75%, transparent); }
.btn-ghost {
  background: transparent;
  color: var(--headline);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-whats {
  background: #25D366;
  color: #0a3d23;
  box-shadow: 0 10px 24px -12px rgba(37,211,102,.7);
}
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(37,211,102,.6); }
.btn-whats .wa-ic { display: inline-flex; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, padding .3s;
}
.site-header.scrolled { border-color: var(--line-soft); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 40px; height: 40px; flex: none; overflow: visible; }
.brand .mark .sun-halo { filter: blur(3px); opacity: .42; transition: opacity .3s ease; }
.brand .mark .sun-core { filter: drop-shadow(0 0 1.4px color-mix(in oklab, var(--sun-bright) 85%, transparent)); }
.brand:hover .mark .sun-halo { opacity: .62; }
.brand .name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--headline);
  line-height: 1;
  letter-spacing: -.01em;
}
.brand .name small {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .22em;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--headline); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--headline); border-radius: 2px; transition: .25s;
}
.menu-toggle span::before { transform: translateY(-7px); }
.menu-toggle span::after { transform: translateY(5px); }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 28px var(--gutter);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.7,0,.2,1);
  visibility: hidden;
}
.mobile-drawer.open { transform: translateY(0); visibility: visible; }
.mobile-drawer .drawer-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.mobile-drawer nav a {
  font-family: var(--display);
  font-size: 30px;
  color: var(--headline);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.drawer-close { font-size: 30px; line-height: 1; color: var(--headline); width: 44px; height: 44px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(56px, 8vw, 110px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas: "title photo" "copy photo";
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: 0;
  align-items: start;
}
.hero-grid .hero-title { grid-area: title; }
.hero-grid .hero-visual { grid-area: photo; align-self: center; }
.hero-grid .hero-copy { grid-area: copy; }
.hero-title .eyebrow { margin-bottom: 22px; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero .lede {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-feats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.feat-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--headline);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  padding: 8px 14px 8px 8px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}
.feat-pill .fp-ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; flex: none; }
.hero-trust {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars .av {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--bg);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--sand), var(--ochre));
  background-size: cover;
}
.avatars .av:first-child { margin-left: 0; }
.hero-trust .trust-text { font-size: 14px; line-height: 1.4; }
.hero-trust .trust-text b { color: var(--headline); }
.stars { color: var(--sun); letter-spacing: 2px; font-size: 13px; }

/* Hero visual — portrait photo with brand sun + anchored callouts */
.hero-visual { position: relative; aspect-ratio: 4/5; padding: 22px 26px; }
/* soft sun glow behind the photo (brand signature) */
.hero-visual::before {
  content: ""; position: absolute; right: 2%; top: -4%;
  width: 56%; height: 56%; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--sun) 0%, color-mix(in oklab, var(--sun) 40%, transparent) 45%, transparent 70%);
  filter: blur(4px); z-index: 0; pointer-events: none;
}
.hero-photo {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: visible;
}
.hero-photo-slot {
  display: block; width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line-soft) inset;
  background-color: var(--cream-3);
  background-image: repeating-linear-gradient(135deg, transparent 0 13px, color-mix(in oklab, var(--ink) 5%, transparent) 13px 14px);
  color: var(--ink-faint);
}
.theme-jornada .hero-photo-slot { background-color: #3a2710; background-image: repeating-linear-gradient(135deg, transparent 0 13px, rgba(255,255,255,.05) 13px 14px); }
.theme-sereno .hero-photo-slot { background-color: #e3ece4; }
/* small brand sun badge, top-right corner of the photo */
.sun-accent {
  position: absolute; right: -16px; top: -16px; z-index: 3;
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, var(--sun-bright), var(--sun) 58%, var(--ochre));
  box-shadow: 0 0 0 8px color-mix(in oklab, var(--bg) 92%, transparent), 0 10px 30px -8px color-mix(in oklab, var(--ochre) 60%, transparent);
}
.float-chip {
  position: absolute; z-index: 4;
  background: var(--surface);
  border-radius: 15px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px;
  font-size: 13.5px; font-weight: 700; color: var(--headline);
  border: 1px solid var(--line-soft);
  max-width: 230px;
}
.float-chip .dot { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; flex: none; font-weight: 700; }
.float-chip small { display: block; font-weight: 500; color: var(--body); font-size: 11.5px; margin-top: 2px; }
/* anchored, overlapping the photo's edges so they read as part of the composition */
.chip-1 { left: 0; bottom: 14%; }
.chip-2 { right: 0; top: 16%; }

/* ============================================================
   Logo bar / trust strip
   ============================================================ */
.trust-strip { padding: 28px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-strip .label { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ink-faint); }
.trust-stats { display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap; }
.trust-stats .stat .n { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); color: var(--headline); line-height: 1; }
.trust-stats .stat .l { font-size: 13.5px; margin-top: 6px; }

/* ============================================================
   Section heading block
   ============================================================ */
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 66px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 50px); margin: 18px 0 18px; }
.section-head p { font-size: clamp(16px, 1.4vw, 19px); }

/* ============================================================
   Diferença (problem / solution)
   ============================================================ */
.diff { background: var(--bg-alt); }
.theme-jornada .diff { background: var(--bg-alt); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
.diff-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}
.diff-card.muted { background: transparent; box-shadow: none; border: 1.5px dashed var(--line); }
.diff-card h3 { font-size: 22px; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.diff-card .badge { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); }
.diff-card.muted .badge { background: color-mix(in oklab, var(--ink) 8%, transparent); color: var(--ink-soft); }
.diff-card .badge.good { background: color-mix(in oklab, var(--green) 16%, transparent); color: var(--green-deep); }
.theme-jornada .diff-card .badge.good { color: var(--green); }
.diff-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.diff-list li { display: flex; gap: 13px; font-size: 15.5px; line-height: 1.45; }
.diff-list li .ic { flex: none; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; margin-top: 1px; }
.diff-list.bad li .ic { background: color-mix(in oklab, var(--ink) 8%, transparent); color: var(--ink-faint); }
.diff-list.good li .ic { background: color-mix(in oklab, var(--green) 16%, transparent); color: var(--green-deep); }
.theme-jornada .diff-list.good li .ic { color: var(--green); }

/* ============================================================
   Como funciona — pillars + timeline
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.pillar {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 2.5vw, 36px);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar .pic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px; }
.pillar h3 { font-size: 21px; margin-bottom: 12px; }
.pillar p { font-size: 15px; }

.timeline { margin-top: clamp(40px, 5vw, 64px); position: relative; }
.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.timeline-track::before {
  content: ""; position: absolute; left: 4%; right: 4%; top: 26px; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--ochre) 55%, var(--sun-bright));
  border-radius: 3px; opacity: .5;
}
.tl-step { position: relative; text-align: center; }
.tl-step .node {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--accent);
  display: grid; place-items: center; margin: 0 auto 18px;
  font-family: var(--display); font-size: 19px; color: var(--accent);
  position: relative; z-index: 2;
  box-shadow: var(--shadow);
}
.tl-step h4 { font-family: var(--sans); font-weight: 700; font-size: 15px; color: var(--headline); margin-bottom: 7px; }
.tl-step p { font-size: 13.5px; }

/* ============================================================
   Benefícios
   ============================================================ */
.benefits { background: var(--bg-alt); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.benefit {
  padding: clamp(24px, 2.5vw, 34px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}
.benefit:hover { transform: translateY(-3px); }
.benefit .num { font-family: var(--display); font-size: 15px; color: var(--accent); opacity: .6; }
.benefit h3 { font-size: 20px; margin: 14px 0 10px; }
.benefit p { font-size: 14.5px; }
.benefit.feature {
  grid-column: span 1;
  color: var(--cta-text);
  background: linear-gradient(150deg, var(--teal), var(--teal-deep));
  border: none;
}
.theme-jornada .benefit.feature { background: linear-gradient(150deg, var(--ochre), #6e3f08); }
.theme-sereno .benefit.feature { background: linear-gradient(150deg, var(--green-deep), #0c3327); }
.benefit.feature h3, .benefit.feature .num { color: #fff; }
.benefit.feature p { color: rgba(255,255,255,.85); }

/* ============================================================
   Sobre — founders
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas: "photo title" "photo text";
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.about-grid .about-title { grid-area: title; }
.about-grid .founders { grid-area: photo; align-self: center; }
.about-grid .about-copy { grid-area: text; }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.founders.solo { grid-template-columns: 1fr; max-width: 320px; }
.founder { }
.founder .face { display: block; width: 100%; height: auto; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.founders.solo .face { aspect-ratio: 4/5; }
.founder .nm { font-family: var(--display); font-size: 19px; color: var(--headline); margin-top: 14px; }
.founder .ro { font-size: 13.5px; color: var(--accent); font-weight: 600; }
.about-copy .quote {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--headline);
  margin: 22px 0;
}
.about-copy .sig { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.about-copy .sig .ln { width: 40px; height: 1.5px; background: var(--line); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-alt); }
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0;
  font-family: var(--display); font-size: clamp(18px, 1.6vw, 21px);
  color: var(--headline);
}
.faq-q .ico { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--line); transition: .3s; position: relative; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-q .ico::before { width: 12px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 12px; transition: transform .3s; }
.faq-item.open .faq-q .ico { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-q .ico::before, .faq-item.open .faq-q .ico::after { background: #fff; }
.faq-item.open .faq-q .ico::after { transform: rotate(90deg) scaleX(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 0 24px; font-size: 15.5px; max-width: 90%; }

/* ============================================================
   Inscrição / form (final CTA)
   ============================================================ */
.enroll { background: linear-gradient(165deg, var(--teal), var(--teal-ink)); color: #fff; overflow: hidden; }
.theme-jornada .enroll { background: linear-gradient(165deg, #3a2710, #160b02); }
.theme-sereno .enroll { background: linear-gradient(165deg, var(--green-deep), #0a2c22); }
.enroll .wrap { position: relative; z-index: 2; }
.enroll-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.enroll h2 { color: #fff; font-size: clamp(30px, 4vw, 50px); }
.enroll .eyebrow { color: var(--sun-bright); }
.enroll .eyebrow::before { background: var(--sun-bright); }
.enroll p { color: rgba(255,255,255,.82); font-size: 17px; }
.enroll .perks { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.enroll .perks li { display: flex; gap: 12px; align-items: center; font-size: 15.5px; color: rgba(255,255,255,.92); }
.enroll .perks .ic { width: 24px; height: 24px; border-radius: 7px; background: color-mix(in oklab, var(--sun-bright) 22%, transparent); color: var(--sun-bright); display: grid; place-items: center; flex: none; }
.enroll-bg-sun {
  position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--sun) 45%, transparent), transparent 65%);
  pointer-events: none; z-index: 1;
}

.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-card h3 { font-size: 23px; color: var(--teal-ink); margin-bottom: 6px; }
.form-card .sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 13px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  font: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--teal) 14%, transparent);
}
.field.error input, .field.error select { border-color: #c0392b; }
.field .err { color: #c0392b; font-size: 12.5px; margin-top: 5px; display: none; }
.field.error .err { display: block; }
.form-card .submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 12.5px; color: var(--ink-faint); text-align: center; margin-top: 14px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: color-mix(in oklab, var(--green) 18%, transparent); color: var(--green-deep); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { color: var(--teal-ink); }

/* CTA card (Tally + WhatsApp) */
.cta-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 3.5vw, 46px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  overflow: hidden;
  text-align: center;
}
.cta-card .cta-sun {
  position: absolute; right: -70px; top: -70px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--sun) 55%, transparent), transparent 68%);
  pointer-events: none;
}
.cta-card h3 { position: relative; font-size: clamp(22px, 2.2vw, 28px); color: var(--teal-ink); margin-bottom: 12px; }
.cta-card .sub { position: relative; font-size: 15px; color: var(--ink-soft); margin-bottom: 28px; max-width: 38ch; margin-inline: auto; }
.cta-card .cta-main { width: 100%; justify-content: center; font-size: 16.5px; padding: 17px 26px; }
.cta-card .cta-or {
  position: relative; display: flex; align-items: center; gap: 14px;
  margin: 20px 0; color: var(--ink-faint); font-size: 13px;
}
.cta-card .cta-or::before, .cta-card .cta-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.cta-card .cta-whats { width: 100%; justify-content: center; font-size: 16px; padding: 16px 26px; }
.theme-jornada .cta-card, .theme-sereno .cta-card { color: var(--ink); }
.theme-jornada .cta-card h3 { color: var(--teal-ink); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--bg); padding: clamp(48px, 6vw, 80px) 0 36px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14.5px; max-width: 320px; margin-top: 16px; }
.footer-col h4 { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 15px; padding: 6px 0; color: var(--body); transition: color .2s; }
.footer-col a.with-ic { display: flex; align-items: center; gap: 9px; }
.footer-col a .ftr-ic { display: inline-flex; color: var(--accent); transition: transform .2s; }
.footer-col a.with-ic:hover .ftr-ic { transform: translateY(-1px) scale(1.08); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line-soft); font-size: 13.5px; color: var(--ink-faint); }

/* ============================================================
   Image / photo placeholders
   ============================================================ */
.ph {
  position: relative;
  background-color: var(--cream-3);
  background-image: repeating-linear-gradient(135deg, transparent 0 11px, color-mix(in oklab, var(--ink) 6%, transparent) 11px 12px);
  display: grid; place-items: center;
  color: var(--ink-faint);
  overflow: hidden;
}
.theme-jornada .ph { background-color: #3a2710; background-image: repeating-linear-gradient(135deg, transparent 0 11px, rgba(255,255,255,.05) 11px 12px); color: #b79a6e; }
.theme-sereno .ph { background-color: #e3ece4; }
.ph .ph-label { font-family: "Hanken Grotesk", monospace; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 10px; border: 1px solid currentColor; border-radius: 7px; opacity: .8; }

/* ============================================================
   Reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .js-anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
  .js-anim .reveal.in { opacity: 1; transform: none; }
  .js-anim .reveal.d1 { transition-delay: .08s; }
  .js-anim .reveal.d2 { transition-delay: .16s; }
  .js-anim .reveal.d3 { transition-delay: .24s; }
  .js-anim .reveal.d4 { transition-delay: .32s; }
}
/* Content must never stay hidden in print/PDF or if JS never marks it visible */
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "title" "photo" "copy"; row-gap: 28px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .diff-grid, .faq-wrap, .enroll-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; grid-template-areas: "title" "photo" "text"; }
  .pillars, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .timeline-track { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .timeline-track::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .pillars, .benefit-grid, .footer-grid { grid-template-columns: 1fr; }
  .timeline-track { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr 1fr; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .chip-1, .chip-2 { display: none; }
}
