/* ============================================================
   VANUZA RITUAL — WORKSHOP LANDING
   Design system: editorial serif (Playfair Display) for display
   + grotesque (Hanken Grotesk) for structure/UI.
   Color logic: wine for dark stages, cream for light reading
   sections, logo-magenta as identity accent, vibrant pink
   reserved for CTA + the sharpest emphasis.
   ============================================================ */

:root {
  /* darks */
  --wine:        #2b000b;   /* hero / offer / footer ground */
  --wine-2:      #3a0512;   /* gradient mid */
  --wine-soft:   #5b0a23;   /* panels on dark */
  --wine-ink:    #1a0007;   /* deepest */

  /* identity magenta (from logo) */
  --magenta:     #bd467e;
  --magenta-2:   #a8366b;
  --magenta-3:   #8d2a57;

  /* action pink (reserve for CTA + sharpest accent) */
  --pink:        #ff2f83;
  --pink-dark:   #d91567;

  /* lights */
  --cream:       #fff0df;   /* text on wine */
  --cream-dim:   rgba(255,240,223,.74);
  --bg:          #fdf4e7;   /* light section ground */
  --paper:       #fffaf2;   /* cards */
  --paper-2:     #fff6ea;
  --ink:         #2b000b;   /* body text on light */
  --muted:       #8a6675;   /* secondary text on light */
  --muted-2:     #a98c98;
  --line:        #ecdccb;   /* hairlines on light */
  --line-wine:   rgba(189,70,126,.30);

  --max: 1080px;
  --read: 720px;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --shadow-card: 0 1px 0 rgba(43,0,11,.04), 0 18px 44px -28px rgba(43,0,11,.40);
  --shadow-pop:  0 22px 60px -24px rgba(217,21,103,.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  /* hero stays white (its own bg); everything below sits on the brand wine */
  background: var(--wine-ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.read { max-width: var(--read); }

/* ---------- shared atoms ------------------------------------ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--magenta);
  white-space: nowrap;
}
.eyebrow.on-dark { color: var(--pink); }

.eyebrow .moon { flex: 0 0 auto; }

/* half-moon brand mark (filled left half inside a thin ring) */
.moon {
  position: relative;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  overflow: hidden;
}
.moon::before {
  content: "";
  position: absolute;
  inset: -1.5px auto -1.5px -1.5px;
  width: 50%;
  background: currentColor;
}
.moon.lg { width: 22px; height: 22px; border-width: 2px; }
.moon.xl { width: 40px; height: 40px; border-width: 2.5px; }

.rule {
  display: block;
  width: 64px; height: 3px;
  background: var(--pink);
  border-radius: 2px;
}

/* buttons */
.btn {
  --bw: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 17px 34px;
  border: var(--bw) solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
  cursor: pointer;
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-pop);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 28px 70px -22px rgba(217,21,103,.7); }
.btn:active { transform: translateY(0); }
.btn .arrow { font-size: 1.15em; transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn.ghost {
  background: transparent;
  color: var(--cream);
  --bw: 1.5px;
  border-color: rgba(255,240,223,.3);
  box-shadow: none;
  min-height: 46px;
  padding: 12px 22px;
  font-size: .9rem;
  font-weight: 700;
}
.btn.ghost:hover { background: rgba(255,240,223,.08); border-color: rgba(255,47,131,.6); transform: none; box-shadow: none; }

/* tag chips (triad pillars) */
.triad {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.triad .pillar {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px 11px 16px;
  border: 1px solid rgba(255,240,223,.18);
  border-radius: 999px;
  background: rgba(189,70,126,.16);
  color: var(--cream);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.triad .pillar .moon { color: var(--pink); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(26,0,7,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(189,70,126,.22);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.topbar img { height: 30px; width: auto; }
.topbar .tb-meta {
  display: none;
  align-items: center;
  gap: 16px;
  color: var(--cream-dim);
  font-size: .82rem;
  font-weight: 600;
}
.topbar .tb-meta b { color: var(--cream); }
.topbar .tb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

/* ============================================================
   HERO (VSL stage)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(120% 90% at 88% -8%, rgba(255,47,131,.10), transparent 42%),
    radial-gradient(90% 80% at 10% 108%, rgba(189,70,126,.10), transparent 46%),
    linear-gradient(170deg, #fffdfb 0%, var(--paper) 42%, var(--bg) 100%);
  border-bottom: 3px solid var(--pink);
  padding: 40px 0 56px;
}
/* faint concentric moon rings */
.hero .halo {
  position: absolute;
  border: 1px solid rgba(189,70,126,.14);
  border-radius: 50%;
  pointer-events: none;
}
.hero .halo.a { width: 540px; height: 540px; top: -160px; right: -150px; }
.hero .halo.b { width: 820px; height: 820px; top: -300px; right: -290px; border-color: rgba(255,47,131,.16); }
.hero .halo.c { width: 460px; height: 460px; bottom: -300px; left: -200px; }

.hero-inner { position: relative; z-index: 1; text-align: center; }

.hero .eyebrow { justify-content: center; }
.hero .rule { margin: 14px auto 22px; }

.h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.15rem, 7.4vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.025em;
  color: var(--cream);
  max-width: 16ch;
  margin-inline: auto;
  text-wrap: balance;
}
.h1 .lead {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.1rem, 3.4vw, 1.7rem);
  letter-spacing: -.01em;
  line-height: 1.28;
  color: rgba(255,240,223,.82);
  max-width: 22ch;
  margin: 0 auto 20px;
  text-transform: none;
  text-wrap: balance;
}
.h1 em { font-style: italic; font-weight: 800; color: #fff; }
.h1 .pink { color: var(--pink); font-style: italic; }

/* opening line — smaller, one line, sits above the main title */
.hero .lead-line {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.55rem);
  letter-spacing: -.01em;
  color: var(--muted);
  white-space: nowrap;
  margin: 0 0 16px;
}
/* main hero title — the big statement */
.hero .h1big {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 5.2vw, 3.5rem);
  line-height: 1.22;
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto;
  text-wrap: balance;
}
.hero .h1big .strong { font-weight: 900; }
.hero .h1big .pinki { font-style: italic; font-weight: 800; color: var(--pink); }

.subhead {
  max-width: 38ch;
  margin: 26px auto 0;
  color: var(--cream-dim);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.5;
}
.subhead b { font-weight: 800; color: var(--cream); }
.subhead .pinki { font-style: italic; font-weight: 700; color: var(--pink); }

.hero .triad { margin: 26px auto 0; }

/* video stage */
.stage {
  position: relative;
  width: min(820px, 100%);
  margin: 44px auto 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(255,47,131,.55);
  background: #07060a;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.8), 0 0 0 1px rgba(255,240,223,.04);
  cursor: pointer;
}
.stage .frame {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    radial-gradient(70% 70% at 50% 42%, rgba(189,70,126,.28), transparent 70%),
    linear-gradient(180deg, #150711, #07060a);
}
.stage .vcontent { text-align: center; padding: 24px; max-width: 460px; position: relative; z-index: 2; }
.stage .play {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 16px 40px -10px rgba(255,47,131,.7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.stage:hover .play { transform: scale(1.07); box-shadow: 0 20px 52px -8px rgba(255,47,131,.85); }
.stage .play svg { width: 26px; height: 26px; margin-left: 4px; }
.stage .vtitle { font-family: var(--serif); font-weight: 800; font-size: clamp(1.1rem, 2.6vw, 1.7rem); line-height: 1.14; color: #fff; letter-spacing: -.02em; }
.stage .vmeta { margin-top: 10px; color: rgba(255,255,255,.62); font-size: .86rem; font-weight: 600; letter-spacing: .02em; }
/* pulsing ring behind play */
.stage .play::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,47,131,.5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.9); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* playing state */
.stage.playing { cursor: default; }
.stage.playing .vcontent { display: none; }
.stage .progress {
  position: absolute; left: 0; bottom: 0; height: 4px; width: 0%;
  background: var(--pink); z-index: 3; transition: width .4s linear;
}
.stage .playbadge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  display: none; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(7,6,10,.7); backdrop-filter: blur(6px);
  color: #fff; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.stage.playing .playbadge { display: inline-flex; }
.stage .recdot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); animation: blink 1.4s steps(1) infinite; }
@keyframes blink { 50% { opacity: .25; } }

.below-video {
  max-width: 46ch;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(.96rem, 1.8vw, 1.05rem);
  line-height: 1.5;
}
.below-video b { color: var(--ink); font-weight: 800; }

.unlock-row { margin-top: 22px; display: flex; justify-content: center; }

/* ============================================================
   LOCK GATE
   ============================================================ */
.gate { padding: 56px 0 72px; }
.gate-box {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  border: 1px dashed var(--line-wine);
  border-radius: 22px;
  background: var(--paper);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
}
.gate-box .moon { color: var(--magenta); margin: 0 auto 16px; }
.gate-box h3 { font-family: var(--serif); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: 8px; }
.gate-box p { color: var(--muted); font-size: .98rem; max-width: 44ch; margin: 0 auto; }

/* reveal animation for unlocked region */
.unlocked { display: none; }
body.unlocked-on .unlocked { display: block; }
body.unlocked-on .gate { display: none; }

/* ============================================================
   SECTIONS (light reading ground)
   ============================================================ */
.section { padding: 76px 0; }
.section.tight { padding: 60px 0; }
.section + .section { border-top: 1px solid var(--line); }

.shead { max-width: var(--read); margin: 0 auto 40px; text-align: center; }
.shead .eyebrow { justify-content: center; }
.shead .rule { margin: 14px auto 20px; }
.shead h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.shead h2 em { font-style: italic; color: var(--magenta); }
.shead .sub { margin-top: 16px; color: var(--muted); font-size: 1.08rem; line-height: 1.5; }

/* "dentro da aula" — numbered reading list */
.aula-list { max-width: 760px; margin-inline: auto; display: grid; gap: 0; }
.aula-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 4px;
  border-top: 1px solid var(--line);
}
.aula-item:last-child { border-bottom: 1px solid var(--line); }
.aula-item .ai-moon { flex: 0 0 auto; color: var(--magenta); margin-top: 4px; }
.aula-item p { font-size: 1.08rem; font-weight: 600; line-height: 1.4; letter-spacing: -.01em; }
.aula-item p b { font-weight: 800; }

/* 10 decisões — card grid */
.map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
  margin-inline: auto;
}
.map-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  padding: 24px 24px 24px 26px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.map-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--magenta), var(--magenta-3));
  opacity: 0; transition: opacity .2s ease;
}
.map-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--line-wine); }
.map-card:hover::before { opacity: 1; }
.map-num {
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--magenta);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.map-card h3 { font-family: var(--sans); font-weight: 800; font-size: 1.12rem; line-height: 1.25; letter-spacing: -.02em; }

/* confrontation pull-quote */
.confront {
  color: var(--cream);
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(255,47,131,.18), transparent 50%),
    linear-gradient(155deg, var(--wine-soft), var(--wine) 70%);
  border-top: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  padding: 84px 0;
  text-align: center;
}
.confront .eyebrow { justify-content: center; color: var(--pink); }
.confront blockquote {
  margin: 22px auto 0;
  max-width: 18ch;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.confront blockquote em { font-style: italic; color: var(--pink); }
.confront .src { margin-top: 24px; color: var(--cream-dim); font-size: .96rem; font-weight: 600; letter-spacing: .02em; }

/* bio + proof */
.bio { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: stretch; }
.bio-media {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(189,70,126,.07) 0 12px, rgba(189,70,126,.03) 12px 24px),
    var(--paper-2);
  display: grid;
  place-items: center;
}
.bio-media .ph {
  text-align: center;
  color: var(--muted-2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: 24px;
}
.bio-media .ph .moon { color: var(--magenta); margin: 0 auto 14px; }
.bio-copy {
  border-radius: 22px;
  background: var(--wine);
  color: var(--cream);
  padding: clamp(28px, 5vw, 46px);
}
.bio-copy .eyebrow { color: var(--pink); }
.bio-copy h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 16px 0 18px;
}
.bio-copy h2 em { font-style: italic; color: var(--pink); }
.bio-copy p { color: var(--cream-dim); font-size: 1.04rem; line-height: 1.6; }
.bio-copy p + p { margin-top: 14px; }

/* proof stat strip */
.proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 26px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}
.proof .stat { background: var(--paper); padding: 24px 20px; text-align: center; }
.proof .stat .n {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  letter-spacing: -.03em;
  color: var(--magenta);
  line-height: 1;
}
.proof .stat .l { margin-top: 8px; color: var(--muted); font-size: .82rem; font-weight: 700; letter-spacing: .03em; line-height: 1.3; }

/* ============================================================
   OFFER
   ============================================================ */
.offer {
  color: var(--cream);
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(255,47,131,.16), transparent 46%),
    radial-gradient(70% 90% at 0% 100%, rgba(189,70,126,.18), transparent 50%),
    linear-gradient(160deg, var(--wine), var(--wine-ink));
  border-top: 3px solid var(--pink);
  padding: 84px 0;
}
.offer-box { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: stretch; }
.offer-copy .eyebrow { color: var(--pink); }
.offer-copy h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 16px 0 18px;
}
.offer-copy h2 em { font-style: italic; color: var(--pink); }
.offer-copy p { color: var(--cream-dim); font-size: 1.08rem; line-height: 1.6; max-width: 46ch; }
.offer-copy .inc { margin-top: 22px; display: grid; gap: 12px; }
.offer-copy .inc li { display: flex; align-items: flex-start; gap: 12px; color: var(--cream); font-size: 1rem; font-weight: 600; }
.offer-copy .inc .moon { color: var(--pink); flex: 0 0 auto; margin-top: 4px; }

.price-card {
  border: 1px solid rgba(255,47,131,.3);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 4vw, 40px);
  align-self: start;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.6);
}
.price-card .pc-label { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.price-card .pc-old { margin-top: 10px; color: var(--muted-2); font-size: 1rem; font-weight: 600; text-decoration: line-through; }
.price-card .price {
  font-family: var(--serif);
  font-weight: 900;
  color: var(--pink);
  font-size: clamp(3.4rem, 11vw, 5rem);
  line-height: .9;
  letter-spacing: -.05em;
  margin: 4px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-card .price .cur { font-size: .42em; font-weight: 800; letter-spacing: 0; }
.price-card .pc-note { color: var(--muted); font-size: .98rem; }
.price-card .btn { width: 100%; margin: 20px 0 14px; }
.price-card .micro { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: .84rem; text-align: center; }
.price-card .micro svg { width: 15px; height: 15px; flex: 0 0 auto; }
.price-card .guarantee {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .86rem; line-height: 1.45; text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  position: relative;
  color: var(--magenta);
  transition: transform .25s ease;
}
.faq summary .pm::before, .faq summary .pm::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.faq summary .pm::before { width: 14px; height: 2.5px; }
.faq summary .pm::after { width: 2.5px; height: 14px; transition: transform .25s ease; }
.faq details[open] summary .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq details[open] summary { color: var(--magenta); }
.faq .ans { padding: 0 4px 22px; color: var(--muted); font-size: 1.02rem; line-height: 1.6; max-width: 60ch; }

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.final {
  text-align: center;
  color: var(--cream);
  background: linear-gradient(160deg, var(--wine-ink), var(--wine));
  padding: 90px 0 70px;
}
.final .moon { color: var(--pink); margin: 0 auto 22px; }
.final h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  max-width: 18ch;
  margin: 0 auto 18px;
  text-wrap: balance;
}
.final h2 em { font-style: italic; color: var(--pink); }
.final p { max-width: 48ch; margin: 0 auto 30px; color: var(--cream-dim); font-size: 1.1rem; line-height: 1.55; }

.footer {
  background: var(--wine-ink);
  color: var(--cream-dim);
  border-top: 1px solid rgba(189,70,126,.22);
  padding: 40px 0;
}
.footer .wrap { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.footer img { height: 34px; opacity: .92; }
.footer .fmeta { font-size: .82rem; line-height: 1.6; }
.footer .fmeta a:hover { color: var(--cream); }
.footer .fbadge { display: inline-flex; gap: 8px; align-items: center; font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--magenta); }

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 50;
  width: min(780px, calc(100% - 32px));
  margin-inline: auto;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 12px 12px 22px;
  border-radius: 999px;
  background: rgba(26,0,7,.9);
  border: 1px solid rgba(255,47,131,.4);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  transform: translateY(140%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  color: var(--cream);
}
.sticky.show { transform: translateY(0); }
.sticky .s-txt strong { display: block; font-family: var(--serif); font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; }
.sticky .s-txt span { color: var(--cream-dim); font-size: .84rem; font-weight: 600; }
.sticky .btn { min-height: 48px; padding: 13px 24px; font-size: .92rem; white-space: nowrap; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .stage .play::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 720px) {
  body { font-size: 18px; }
  .proof { grid-template-columns: repeat(4, 1fr); }
  .map-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar .tb-meta { display: flex; }
}

@media (min-width: 940px) {
  .hero { padding: 56px 0 72px; }
  .bio { grid-template-columns: 0.92fr 1.08fr; }
  .offer-box { grid-template-columns: 1.1fr .9fr; }
  .map-grid { gap: 16px; }
}

@media (max-width: 520px) {
  .btn { width: 100%; }
  .sticky { flex-direction: row; }
  .sticky .s-txt span { display: none; }
}

/* ============================================================
   MAP TRAIL (dashed roadmap of the 10 decisions)
   Light cream surface, sits directly after the dark hero.
   ============================================================ */
.mapwrap {
  padding: 78px 0 8px;
  background:
    radial-gradient(75% 40% at 50% 9%, rgba(189,70,126,.22), transparent 62%),
    linear-gradient(180deg, var(--wine), var(--wine-ink));
}
.mapwrap .shead { margin-bottom: 14px; }
/* map section now sits on the wine ground — light type on dark */
.mapwrap .shead h2 { color: var(--cream); }
.mapwrap .shead h2 em { color: var(--pink); }
.mapwrap .shead .sub { color: var(--cream-dim); }
.mapwrap .shead .eyebrow { color: var(--pink); }


.trail { position: relative; max-width: 920px; margin: 22px auto 0; padding: 8px 0; }

/* organic dotted route — drawn BEHIND the cards so the run inside each
   card is hidden; only the weave between cards shows. */
.trail .trail-path { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: visible; }
.trail .trail-path path {
  fill: none;
  stroke: var(--magenta);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 0.1 14;
  opacity: .8;
}

/* alternating rows — card hugs the outer edge, line weaves the centre */
.trail .node { position: relative; z-index: 2; display: flex; align-items: center; padding: 46px 0; }
.trail .node.l { justify-content: flex-start; padding-left: clamp(12px, 9%, 70px); }
.trail .node.r { justify-content: flex-end; padding-right: clamp(12px, 9%, 70px); }

/* photo card — opaque so it hides the route segment running behind it */
.trail .card {
  position: relative; z-index: 2; overflow: visible; width: min(248px, 40%);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(43,0,11,.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trail .card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: rgba(189,70,126,.4); }

/* fixed docking ports on the top & bottom edge of every card */
.trail .port {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%; z-index: 4;
  background: transparent;
}
.trail .port.top { top: -5px; }
.trail .port.bottom { bottom: -5px; }

.trail .photo {
  position: relative; overflow: hidden;
  display: block; width: 100%; height: clamp(88px, 25vw, 120px);
  border-radius: 14px 14px 0 0;
  background:
    repeating-linear-gradient(135deg, rgba(189,70,126,.09) 0 11px, rgba(189,70,126,.03) 11px 22px),
    var(--paper-2);
}
.trail .photo .slot { display: block; width: 100%; height: 100%; }
.trail .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.trail .card-body { padding: 11px 15px 13px; }
.trail .card .step {
  font-size: .56rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--magenta); margin-bottom: 5px;
}
.trail .card h3 {
  font-family: var(--serif); font-weight: 800;
  font-size: 1.02rem; line-height: 1.1; letter-spacing: -.02em; color: var(--ink);
}
.trail .card .desc { margin-top: 6px; color: var(--muted); font-size: .82rem; line-height: 1.36; }

/* numbered badge — sits on the top edge of each card; the route threads past it */
.trail .num {
  position: absolute; top: -15px; z-index: 6;
  width: 36px; height: 36px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--paper); border: 2px dashed var(--magenta);
  font-family: var(--serif); font-style: italic; font-weight: 800;
  color: var(--magenta); font-size: .9rem; line-height: 1;
}
.trail .node.l .num { left: 12px; }
.trail .node.r .num { right: 12px; }

/* start / end caps */
.trail .cap { position: relative; z-index: 6; width: 240px; margin: 6px auto; text-align: center; }
.trail .cap .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--magenta); margin: 0 auto 10px;
  box-shadow: 0 0 0 7px var(--bg), 0 0 0 12px rgba(189,70,126,.14);
}
.trail .cap .lbl {
  font-size: .7rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.trail .cap.end .dot { background: var(--pink); box-shadow: 0 0 0 7px rgba(255,240,223,.16), 0 0 0 12px rgba(255,47,131,.20); }
.trail .cap.end .lbl { color: var(--cream-dim); }

/* opacity-only reveal inside the trail so the route geometry stays stable */
.trail .reveal { transform: none; }

/* closing CTA under the map (cream) */
.map-close { text-align: center; padding: 40px 0 90px; color: var(--cream); }
.map-close .moon { color: var(--pink); margin: 0 auto 20px; }
.map-close h2 {
  font-family: var(--serif); font-weight: 900; font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.4rem); letter-spacing: -.02em;
  max-width: 20ch; margin: 0 auto 24px; text-wrap: balance;
}
.map-close .micro { margin-top: 14px; color: var(--cream-dim); font-size: .9rem; }

/* phones: shrink the whole card but keep it ALTERNATING (horizontal zigzag) */
@media (max-width: 560px) {
  .trail { max-width: 100%; }
  .trail .node { padding: 28px 0; }
  .trail .node.l { padding-left: clamp(6px, 4%, 34px); }
  .trail .node.r { padding-right: clamp(6px, 4%, 34px); }
  .trail .card { width: min(196px, 44%); }
  .trail .card-body { padding: 9px 11px 11px; }
  .trail .card .step { font-size: .5rem; margin-bottom: 4px; }
  .trail .card h3 { font-size: .9rem; }
  .trail .card .desc { font-size: .72rem; margin-top: 5px; line-height: 1.32; }
  .trail .num { width: 30px; height: 30px; font-size: .78rem; top: -12px; }
}

/* ultra-narrow fallback only: stack in a single column */
@media (max-width: 300px) {
  .trail .node, .trail .node.l, .trail .node.r { display: block; padding: 18px 0; }
  .trail .card { width: 92%; margin: 0 auto; }
  .trail .node.l .num, .trail .node.r .num { left: 12px; right: auto; }
}

/* ============================================================
   AULA PAGE — white hero with the real lesson video + course CTA
   ============================================================ */
.aula-hero .h1big { margin-bottom: 2px; }

.video-embed {
  position: relative;
  width: min(860px, 100%);
  margin: 34px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 47, 131, .4);
  background: #07060a;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .5), 0 0 0 1px rgba(43, 0, 11, .04);
}
.video-embed iframe,
.video-embed video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-embed .ph {
  position: absolute; inset: 0;
  display: grid; place-content: center; gap: 4px;
  text-align: center;
  color: rgba(255, 240, 223, .7);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .82rem; letter-spacing: .04em;
  background:
    radial-gradient(70% 70% at 50% 42%, rgba(189, 70, 126, .28), transparent 70%),
    linear-gradient(180deg, #150711, #07060a);
}
.video-embed .ph .moon { color: var(--pink); margin: 0 auto 8px; }

.aula-actions { margin: 24px auto 0; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* secondary "baixar material de apoio" button for the light hero */
.btn.support {
  background: transparent;
  color: var(--magenta);
  border: 1.5px solid var(--magenta);
  box-shadow: none;
  min-height: 54px;
}
.btn.support:hover {
  background: rgba(189, 70, 126, .08);
  border-color: var(--magenta-2);
  color: var(--magenta-2);
  transform: translateY(-2px);
  box-shadow: none;
}
.btn.support svg { width: 18px; height: 18px; }

/* wine course-CTA layer (reuses .map-close text styles, adds its own wine ground) */
.course-cta {
  color: var(--cream);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(189, 70, 126, .22), transparent 55%),
    linear-gradient(180deg, var(--wine), var(--wine-ink));
  border-top: 3px solid var(--pink);
  padding: 84px 0 92px;
}
.course-cta h2 {
  font-style: normal;
  font-size: clamp(1.8rem, 5vw, 3rem);
  max-width: 22ch;
}
.course-cta .price-line {
  margin: 8px 0 24px;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: .01em;
}
.course-cta .price-line .price {
  color: var(--pink);
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.35em;
  letter-spacing: -.02em;
}
