/* ============================================================
   LEARNING LAB — Bora Facilitar
   Sistema visual: editorial-workshop premium
   "O fim do treinamento chato"
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* A marca é escura, ponto. Sem isto, tudo que o navegador desenha sozinho
     (CanvasText, controles nativos, barra de rolagem, autofill) assume tema
     claro e aparece claro-sobre-escuro ou preto-sobre-escuro. */
  color-scheme: dark;

  --ink: oklch(0.96 0.015 300);
  --ink-soft: oklch(0.76 0.04 300);
  --bg: oklch(0.17 0.06 305);
  --surface: oklch(0.22 0.07 305);
  --panel-dark: oklch(0.13 0.055 305);
  --paper-dark: oklch(0.12 0.055 305);

  /* AÇÃO = roxo #6D199A */
  --coral: oklch(0.52 0.24 305);
  --coral-bright: oklch(0.60 0.26 305);
  --coral-drench: oklch(0.42 0.23 305);
  --coral-deep: oklch(0.34 0.19 305);
  --coral-ink: oklch(0.92 0.05 305);
  --coral-tint: oklch(0.26 0.10 305);

  /* DESTAQUE = ciano #04EBFC */
  --butter: oklch(0.82 0.15 205);
  --butter-deep: oklch(0.72 0.15 205);

  /* ACENTO = magenta #CC3366 */
  --mint: oklch(0.62 0.20 355);
  --mint-deep: oklch(0.72 0.19 355);

  --boring-bg: oklch(0.92 0.008 90);
  --boring-ink: oklch(0.46 0.012 80);
  --boring-line: oklch(0.84 0.008 90);

  --reveal-bg-warm: #2a0f47;

  --font-brand: "Sora", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;
  --font-boring: Arial, Helvetica, sans-serif;

  --container: 1160px;
  --radius: 20px;
  --radius-sm: 12px;

  /* z-scale semântica */
  --z-sticky: 40;
  --z-header: 50;
  --z-dialog: 60;

  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-brand);
  font-optical-sizing: auto;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--consent-h, 0px);
  transition: padding-bottom 0.5s var(--ease-out);
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; line-height: 1.06; letter-spacing: -0.025em; font-weight: 750; }
p { text-wrap: pretty; max-width: 68ch; }

::selection { background: var(--butter); color: var(--ink); }

.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* ---------- Type scale ---------- */
.display-xl { font-size: clamp(2.6rem, 7.2vw, 5.6rem); font-weight: 800; font-variation-settings: "opsz" 96; }
.display-lg { font-size: clamp(2.1rem, 5vw, 3.9rem); font-weight: 780; font-variation-settings: "opsz" 96; }
.display-md { font-size: clamp(1.6rem, 3.4vw, 2.5rem); font-weight: 720; font-variation-settings: "opsz" 64; }
.lead { font-size: clamp(1.15rem, 1.9vw, 1.35rem); line-height: 1.55; color: var(--ink-soft); }

/* Anotação manuscrita */
.hand-note {
  font-family: var(--font-hand);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  /* magenta claro: 7:1 sobre os fundos escuros da marca.
     Era --coral-deep, herdado da paleta clara antiga — virou
     escuro-sobre-escuro (1,5:1) quando a marca foi para o dark. */
  color: var(--mint-deep);
  rotate: -2deg;
  display: inline-block;
}

/* Marca-texto que se desenha (span.hl > .hl-ink) */
.hl { position: relative; display: inline-block; white-space: nowrap; }
.hl .hl-ink {
  position: absolute; inset: 58% -0.12em -0.02em -0.12em;
  background: var(--butter);
  z-index: -1; rotate: -1deg; border-radius: 0.2em 0.35em 0.25em 0.3em;
  transform-origin: left center;
  transform: scaleX(var(--hl-progress, 1));
}
.hl--coral .hl-ink { background: var(--coral); }
.hl--mint .hl-ink { background: var(--mint); }
.hl--mint, .hl--coral { color: #fff; }
.hl--mint .hl-ink, .hl--coral .hl-ink { inset: 8% -0.18em 2% -0.18em; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  min-height: 60px; padding: 0.9em 1.7em;
  border-radius: 999px;
  font-weight: 650; font-size: 1.05rem; letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background-color 0.25s ease;
  will-change: transform;
}
.btn .btn-arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

.btn--primary {
  background: var(--coral); color: #fff;
  box-shadow: 0 2px 0 var(--coral-deep), 0 10px 28px -10px oklch(0.64 0.205 33 / 0.55);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--coral-bright); box-shadow: 0 4px 0 var(--coral-deep), 0 16px 34px -10px oklch(0.64 0.205 33 / 0.6); }

.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px oklch(0.23 0.015 40 / 0.25);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--ink); transform: translateY(-2px); }

.btn--on-dark { background: #fff; color: var(--coral-deep); box-shadow: 0 2px 0 oklch(0.8 0.02 40), 0 12px 30px -12px oklch(0 0 0 / 0.5); }
.btn--on-dark:hover { transform: translateY(-2px); }

.btn--lg { min-height: 66px; font-size: 1.12rem; padding: 1em 2em; }

.btn-under {
  margin-top: 0.9rem; font-size: 0.92rem; color: var(--ink-soft);
  transition: margin-top 0.4s var(--ease-out);
  display: flex; gap: 1.2em; flex-wrap: wrap;
}
.btn-under span { display: inline-flex; align-items: center; gap: 0.4em; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  padding: 0.9rem 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: oklch(0.99 0 0 / 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 oklch(0.23 0.015 40 / 0.08);
  padding: 0.55rem 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand-mark {
  font-weight: 800; font-size: 1.18rem; letter-spacing: -0.03em; text-decoration: none;
  display: inline-flex; align-items: baseline; gap: 0.15em;
}
.brand-mark .dot { color: var(--coral); font-size: 1.5em; line-height: 0; }
/* 48px é o mínimo de alvo de toque do projeto — não reduzir. */
.header-cta { min-height: 48px; padding: 0.5em 1.2em; font-size: 0.95rem; }
@media (max-width: 640px) { .header-cta { display: none; } }

/* ============================================================
   HERO — o slide que ganha vida
   ============================================================ */
.hero {
  position: relative; min-height: calc(100svh - var(--consent-h, 0px));
  display: grid; place-items: center;
  padding: clamp(6rem, 12vh, 8rem) 0 clamp(3rem, 8vh, 5rem);
  overflow: clip;
  transition: min-height 0.5s var(--ease-out);
}

/* fundo vivo: formas orgânicas */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.hero-blobs .blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0; }
.blob--coral { width: 44vmax; height: 44vmax; background: radial-gradient(circle at 35% 35%, oklch(0.72 0.19 33 / 0.28), transparent 70%); top: -14vmax; right: -12vmax; }
.blob--butter { width: 36vmax; height: 36vmax; background: radial-gradient(circle at 60% 40%, oklch(0.88 0.15 92 / 0.4), transparent 70%); bottom: -10vmax; left: -10vmax; }
.blob--mint { width: 22vmax; height: 22vmax; background: radial-gradient(circle at 50% 50%, oklch(0.52 0.09 175 / 0.14), transparent 70%); top: 28%; left: 12%; }

.hero-inner { position: relative; display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1.15fr 0.85fr; align-items: center; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }

.hero-copy .kicker-lab {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-weight: 650; font-size: 1rem; color: var(--coral-deep);
  background: var(--coral-tint);
  padding: 0.4em 1em; border-radius: 999px;
  margin-bottom: 1.4rem;
  transition: margin-bottom 0.4s var(--ease-out);
}
.hero-copy h1 { margin-bottom: 1.3rem; transition: margin-bottom 0.4s var(--ease-out); }
.hero-copy h1 .line { display: block; }
.hero-copy .lead { margin-bottom: 2.2rem; transition: margin-bottom 0.4s var(--ease-out); }
.hero-copy .lead strong { color: var(--ink); }
.hero .display-xl { transition: font-size 0.4s var(--ease-out); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Enquanto o banner de consentimento reserva espaço (--consent-h > 0),
   o hero fica mais compacto para que os CTAs nunca fiquem sob o banner. */
body.has-consent-banner .hero {
  padding-top: clamp(4.5rem, 9vh, 6rem);
  padding-bottom: clamp(1.6rem, 4vh, 2.5rem);
}
body.has-consent-banner .hero .display-xl { font-size: clamp(2rem, 5.6vw, 4.4rem); }
body.has-consent-banner .hero-copy .kicker-lab { margin-bottom: 0.6rem; }
body.has-consent-banner .hero-copy h1 { margin-bottom: 0.5rem; }
body.has-consent-banner .hero-copy .lead { margin-bottom: 0.7rem; }
body.has-consent-banner .hero .btn-under { margin-top: 0.2rem; }

/* O slide chato (componente reutilizado) */
.slide-chato {
  font-family: var(--font-boring);
  background: var(--boring-bg);
  color: var(--boring-ink);
  border: 1px solid var(--boring-line);
  border-radius: 10px;
  box-shadow: 0 24px 60px -30px oklch(0 0 0 / 0.35);
  overflow: hidden;
}
.slide-chato__bar {
  display: flex; align-items: center; gap: 0.5rem;
  background: oklch(0.9 0.005 90);
  border-bottom: 1px solid var(--boring-line);
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
}
.slide-chato__dots { display: flex; gap: 0.32rem; }
.slide-chato__dots i { width: 10px; height: 10px; border-radius: 50%; background: oklch(0.8 0.005 90); }
.slide-chato__title { margin-inline: auto; letter-spacing: 0.02em; }
.slide-chato__body { padding: clamp(1.4rem, 3vw, 2.2rem); }
.slide-chato__body h3 {
  font-family: var(--font-boring); font-weight: 700; letter-spacing: 0;
  font-size: clamp(1.05rem, 2vw, 1.4rem); margin-bottom: 1.1em; color: oklch(0.4 0.01 80);
  text-decoration: underline;
}
.slide-chato__body ul { list-style: none; display: grid; gap: 0.75em; font-size: clamp(0.85rem, 1.6vw, 1rem); }
.slide-chato__body li { display: flex; gap: 0.6em; align-items: baseline; }
.slide-chato__body li::before { content: "▪"; flex: none; }
.slide-chato__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 1rem; border-top: 1px solid var(--boring-line);
  font-size: 0.75rem;
}
.cursor-blink { display: inline-block; width: 2px; height: 1em; background: currentColor; vertical-align: -0.15em; animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .cursor-blink { animation: none; } }

/* hero: slide + post-its que o cobrem */
.hero-stage { position: relative; rotate: 2deg; }
.hero-stage .slide-chato { position: relative; z-index: 1; }
.postit {
  position: absolute; z-index: 2;
  width: clamp(84px, 9vw, 122px); aspect-ratio: 1;
  padding: 0.6em 0.65em;
  font-family: var(--font-hand); font-weight: 600; font-size: clamp(0.95rem, 1.4vw, 1.15rem); line-height: 1.15;
  color: var(--ink);
  box-shadow: 0 10px 22px -8px oklch(0 0 0 / 0.28);
  border-radius: 2px 2px 14px 2px;
}
.postit--butter { background: var(--butter); }
.postit--coral { background: oklch(0.78 0.14 40); }
.postit--mint { background: oklch(0.85 0.08 170); }
/* o slide é o 1º div do stage; os post-its são os divs 2–4 */
.hero-stage .postit:nth-of-type(2) { top: -9%; left: -7%; rotate: -7deg; }
.hero-stage .postit:nth-of-type(3) { top: 30%; right: -9%; rotate: -3deg; }
.hero-stage .postit:nth-of-type(4) { bottom: -13%; right: 16%; rotate: 4deg; }
.hero-note { position: absolute; z-index: 2; bottom: -3.4rem; left: 4%; }

/* seta rabiscada da nota */
.scribble-arrow { position: absolute; z-index: 2; width: 64px; bottom: -2.2rem; left: 34%; rotate: 14deg; color: var(--coral-deep); }

/* ============================================================
   PROVA — logos
   ============================================================ */
.proof { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.proof p.proof-line { text-align: center; color: var(--ink-soft); margin: 0 auto 1.8rem; font-size: 1.02rem; }
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline;
  gap: 1.1rem 2.6rem; max-width: 62rem; margin-inline: auto;
  list-style: none;
}
.logo-strip li { display: flex; align-items: center; }
.logo-strip img {
  height: auto; width: auto; max-height: 40px;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.logo-strip li:hover img { opacity: 0.95; transform: translateY(-2px); }

/* ============================================================
   DOR — você conhece esse treinamento
   ============================================================ */
.pain { padding: clamp(4rem, 9vw, 7.5rem) 0; background: var(--surface); }
.pain-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr; } }
.pain h2 { margin-bottom: 1.4rem; }
.pain .pain-copy p { margin-bottom: 1.1em; color: var(--ink-soft); }
.pain .pain-copy p strong { color: var(--ink); }
.pain-punch {
  margin-top: 2rem; font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 720; line-height: 1.3;
  color: var(--ink); letter-spacing: -0.02em; max-width: 24ch;
}
.pain-stage { rotate: -1.5deg; position: relative; }
.pain-stage .hand-note { position: absolute; right: 2%; top: -2.6rem; }

/* ============================================================
   MANIFESTO POSTERS
   ============================================================ */
.manifesto {
  padding: clamp(4.5rem, 11vw, 8.5rem) 0;
  text-align: center;
  overflow: clip;
}
.manifesto .container { max-width: 62rem; }
.manifesto h2 {
  font-size: clamp(2.4rem, 7.6vw, 5.8rem); font-weight: 800;
  font-variation-settings: "opsz" 96;
  line-height: 1.02;
}
.manifesto .manifesto-sub { margin: 1.6rem auto 0; font-size: clamp(1.1rem, 1.9vw, 1.3rem); max-width: 44ch; }

.manifesto--butter { background: var(--butter); color: var(--ink); }
.manifesto--butter .manifesto-sub { color: oklch(0.35 0.05 80); }
.manifesto--coral { background: var(--coral-drench); color: #fff; }
.manifesto--coral .manifesto-sub { color: oklch(0.97 0.02 40); }
.manifesto--coral ::selection { background: var(--ink); color: #fff; }

/* ============================================================
   VIRADA
   ============================================================ */
.shift { padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(2rem, 5vw, 3rem); }
.shift .container { max-width: 56rem; }
.shift h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 1.6rem; }

/* ============================================================
   REVEAL — scroll storytelling: slide chato → parede viva
   ============================================================ */
.reveal { position: relative; height: 340vh; }
.reveal-pin {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: grid; place-items: center;
  background: var(--surface);
}
.reveal-pin > * { grid-area: 1 / 1; }

/* slide chato central */
.reveal-boring {
  width: min(680px, 86vw); z-index: 2;
  transform-origin: center center;
}
.reveal-boring .slide-chato { box-shadow: 0 30px 70px -30px oklch(0 0 0 / 0.35); }

/* parede de post-its */
.reveal-wall {
  z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.7rem, 1.6vw, 1.3rem);
  width: min(760px, 90vw);
}
.rp {
  aspect-ratio: 1; display: grid; place-items: center; text-align: center;
  font-family: var(--font-hand); font-weight: 600;
  font-size: clamp(1rem, 1.9vw, 1.45rem); line-height: 1.1; color: var(--ink);
  border-radius: 3px 3px 16px 3px;
  box-shadow: 0 12px 24px -10px oklch(0 0 0 / 0.3);
  padding: 0.4em;
  will-change: transform, opacity;
}
.rp--butter { background: var(--butter); }
.rp--coral { background: oklch(0.78 0.14 40); }
.rp--mint { background: oklch(0.85 0.08 170); }
@media (max-width: 620px) {
  .reveal-wall { grid-template-columns: repeat(3, 1fr); width: 92vw; }
  .rp:nth-child(n+10) { display: none; } /* 9 post-its no mobile */
}

/* clímax */
.reveal-climax { z-index: 4; text-align: center; pointer-events: none; }
.reveal-climax h2 {
  font-size: clamp(2.6rem, 8vw, 6rem); font-weight: 800;
  font-variation-settings: "opsz" 96; color: var(--ink);
  text-shadow: 0 4px 30px oklch(0.99 0 0 / 0.6);
}

/* Fallback sem JS / reduced-motion: slide chato escondido, parede + clímax visíveis */
.reveal-boring { opacity: 0; }
.reveal-climax { opacity: 1; }
.shift p { margin-bottom: 1.2em; color: var(--ink-soft); font-size: clamp(1.12rem, 1.8vw, 1.28rem); }
.shift p strong { color: var(--ink); }

/* ============================================================
   ANTES / DEPOIS — sala de aula viva
   ============================================================ */
.compare { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--paper-dark); color: oklch(0.97 0.005 60); }
.compare h2 { text-align: center; margin-bottom: 0.7rem; }
.compare .compare-sub { text-align: center; color: oklch(0.78 0.02 60); margin: 0 auto 3rem; }

.compare-stage { position: relative; max-width: 56rem; margin-inline: auto; user-select: none; }
.call-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.5rem, 1.2vw, 0.9rem);
  padding: clamp(0.7rem, 1.6vw, 1.1rem);
  border-radius: var(--radius);
}
.call-grid--boring { background: oklch(0.32 0.008 60); }
.call-tile {
  aspect-ratio: 4 / 3; border-radius: 10px; position: relative;
  display: grid; place-items: center; overflow: hidden;
}
.call-grid--boring .call-tile { background: oklch(0.4 0.008 60); font-family: var(--font-boring); }
.call-grid--boring .avatar {
  width: 34%; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  background: oklch(0.5 0.01 60); color: oklch(0.75 0.01 60);
  font-size: clamp(0.9rem, 2vw, 1.3rem); font-weight: 700;
}
.call-tile .tile-name {
  position: absolute; left: 8px; bottom: 6px; font-size: clamp(0.6rem, 1.2vw, 0.75rem);
  color: oklch(0.8 0.01 60);
  display: flex; align-items: center; gap: 0.35em;
}
.mic-off { color: oklch(0.62 0.14 25); }

/* camada viva por cima, revelada pelo slider */
.call-live-wrap {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 var(--reveal, 50%) round var(--radius));
}
.call-grid--live { background: oklch(0.5 0.17 32); height: 100%; }
.call-grid--live .call-tile { font-weight: 650; }
.call-grid--live .call-tile .tile-name { color: #fff; }
.call-grid--live .avatar {
  width: 38%; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  font-size: clamp(1.2rem, 3vw, 2rem);
}
.tile--photo { background: oklch(0.38 0.05 40); }
.tile--photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
/* scrim para o nome ficar legível sobre a foto */
.tile--photo::after {
  content: ""; position: absolute; inset: 55% 0 0 0;
  background: linear-gradient(to top, oklch(0.15 0.02 40 / 0.65), transparent);
  pointer-events: none;
}
.tile--photo .tile-name, .tile--photo .reaction { z-index: 1; }
.reaction {
  position: absolute; top: 6px; right: 8px; font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  background: oklch(1 0 0 / 0.22); border-radius: 999px; padding: 0.15em 0.4em;
}

/* alça do slider */
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: var(--reveal, 50%);
  width: 3px; background: #fff; translate: -50% 0;
  pointer-events: none;
  box-shadow: 0 0 0 1px oklch(0 0 0 / 0.15);
}
.compare-handle::after {
  content: "◂ ▸";
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  background: #fff; color: var(--ink);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.55em 0.7em; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 18px -6px oklch(0 0 0 / 0.5);
}
.compare-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.compare-range:focus-visible ~ .compare-handle::after { outline: 3px solid var(--butter); outline-offset: 2px; }

.compare-labels {
  display: flex; justify-content: space-between; max-width: 56rem; margin: 1rem auto 0;
  font-size: 0.95rem;
}
.compare-labels .lbl-boring { color: oklch(0.7 0.01 60); font-family: var(--font-boring); }
.compare-labels .lbl-live { color: var(--butter); font-weight: 700; }

/* listas antes/depois abaixo do slider */
.compare-lists {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 56rem; margin: 3rem auto 0;
}
@media (max-width: 720px) { .compare-lists { grid-template-columns: 1fr; } }
.compare-lists ul { list-style: none; display: grid; gap: 0.85rem; }
.compare-lists li { display: flex; gap: 0.7em; align-items: baseline; font-size: 1.02rem; }
.compare-lists .col-boring { color: oklch(0.72 0.01 60); }
.compare-lists .col-boring li::before { content: "✕"; color: oklch(0.62 0.14 25); font-weight: 700; flex: none; }
.compare-lists .col-live li::before { content: "✓"; color: var(--butter); font-weight: 800; flex: none; }
.compare-lists h3 { font-size: 1.05rem; margin-bottom: 1rem; font-weight: 700; letter-spacing: 0; }
.compare-lists .col-boring h3 { font-family: var(--font-boring); font-weight: 700; }

/* ============================================================
   MÉTODO — canvas que se constrói
   ============================================================ */
.method { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.method-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.method-head h2 { margin-bottom: 1.2rem; }
.method-head p { color: var(--ink-soft); font-size: clamp(1.1rem, 1.8vw, 1.25rem); }

.method-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
@media (max-width: 900px) { .method-grid { grid-template-columns: 1fr; } }

.method-steps { display: grid; gap: clamp(1.6rem, 3vw, 2.4rem); }
.method-step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: border-color 0.4s ease, background-color 0.4s ease;
}
.method-step.is-active { border-color: var(--coral); background: var(--coral-tint); }
.method-step .step-n {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-weight: 800; font-size: 1.3rem;
  transition: background-color 0.4s ease;
}
.method-step.is-active .step-n { background: var(--coral); }
.method-step h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); margin-bottom: 0.4rem; }
.method-step p { color: var(--ink-soft); font-size: 1.02rem; }
.method-step p strong { color: var(--ink); }

.canvas-stage { position: sticky; top: 14vh; rotate: 1.2deg; }
@media (max-width: 900px) { .canvas-stage { position: static; rotate: 0deg; margin-top: 1rem; } }
.canvas-stage svg { width: 100%; height: auto; filter: drop-shadow(0 26px 40px oklch(0 0 0 / 0.16)); border-radius: 14px; }
.canvas-note { text-align: center; margin-top: 1.6rem; }

/* ============================================================
   O QUE VOCÊ APRENDE
   ============================================================ */
.learn { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--surface); }
.learn-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2.5rem, 6vw, 5rem); }
@media (max-width: 900px) { .learn-grid { grid-template-columns: 1fr; } }
.learn h2 { margin-bottom: 1.2rem; }
.learn .learn-intro { color: var(--ink-soft); }
.learn-photo {
  margin-top: 2rem; border-radius: 32% 68% 55% 45% / 44% 38% 62% 56%;
  overflow: hidden; aspect-ratio: 1; max-width: 320px;
  outline: 4px solid var(--bg); outline-offset: -4px;
}
.learn-photo img { width: 100%; height: 100%; object-fit: cover; }

.learn-list { list-style: none; display: grid; gap: 1.1rem; align-content: center; }
.learn-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  padding: 1.05rem 1.25rem;
  background: var(--bg); border-radius: var(--radius-sm);
  border: 1px solid oklch(0.23 0.015 40 / 0.07);
}
.learn-list .check { flex: none; width: 30px; height: 30px; margin-top: 0.1em; }
.learn-list .check circle { fill: oklch(0.93 0.04 175); }
.learn-list .check path {
  stroke: var(--mint-deep); stroke-width: 2.6; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 24; stroke-dashoffset: var(--check-offset, 0);
}
.learn-list em { font-style: normal; font-weight: 650; }

/* ============================================================
   DIFERENCIAIS — lista editorial assimétrica
   ============================================================ */
.why { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.why h2 { max-width: 20ch; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.why-list { display: grid; gap: 0; border-top: 2px solid var(--ink); }
.why-item {
  display: grid; grid-template-columns: minmax(140px, 0.34fr) 1fr; gap: 1.5rem;
  padding: clamp(1.6rem, 3.5vw, 2.4rem) 0;
  border-bottom: 2px solid oklch(0.23 0.015 40 / 0.14);
  align-items: baseline;
}
@media (max-width: 720px) { .why-item { grid-template-columns: 1fr; gap: 0.5rem; } }
.why-item h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem); font-weight: 780;
}
.why-item h3 .why-key { color: var(--coral); }
.why-item p { color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.18rem); max-width: 52ch; }
.why-item p strong { color: var(--ink); }

/* ============================================================
   FERNANDA — autoridade (seção escura)
   ============================================================ */
.mentor { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--ink); color: oklch(0.97 0.008 60); }
.mentor-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (max-width: 900px) { .mentor-grid { grid-template-columns: 1fr; } }

.mentor-photo { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 540px; }
.mentor-photo .photo-frame {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  width: 100%;
}
/* halo de cor CHAPADA (sem gradiente) só para separar do fundo escuro */
.mentor-photo .photo-frame::before {
  content: ""; position: absolute; z-index: 0;
  inset: 6% 8% 0 8%;
  background: var(--coral);
  opacity: 0.16;
  border-radius: 46% 54% 42% 58% / 60% 58% 42% 40%;
  filter: blur(2px);
}
.mentor-photo img {
  position: relative; z-index: 1;
  /* corpo inteiro (900x1208) — a foto original da LP, sem recorte */
  width: 100%; max-width: 400px; height: auto;
  filter: drop-shadow(0 24px 44px oklch(0 0 0 / 0.5));
  /* fade só nos últimos centímetros da calça, para não terminar em corte reto */
  -webkit-mask-image: linear-gradient(to bottom, #000 94%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 94%, transparent 100%);
}
/* fora da silhueta — com o corpo inteiro, o post-it caía sobre a mão dela */
.mentor-photo .postit { width: clamp(96px, 10vw, 132px); bottom: 14%; right: -2%; rotate: 5deg; position: absolute; z-index: 2; }
@media (max-width: 900px) { .mentor-photo .postit { right: 4%; bottom: 8%; } }

.mentor h2 { font-size: clamp(1.8rem, 4.2vw, 3rem); margin-bottom: 1.5rem; color: #fff; }
.mentor h2 .hl--coral { color: #fff; }
.mentor p { color: oklch(0.82 0.015 60); margin-bottom: 1.1em; line-height: 1.7; }
.mentor p strong { color: #fff; font-weight: 650; }
.mentor-quote {
  margin-top: 2.2rem; padding-left: 1.4rem;
  font-family: var(--font-hand); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600;
  color: var(--butter); rotate: -1.5deg;
}
.mentor-quote cite { display: block; font-family: var(--font-brand); font-style: normal; font-size: 0.9rem; color: oklch(0.75 0.015 60); margin-top: 0.5rem; rotate: 1.5deg; }

/* ============================================================
   PARA QUEM É — tabs
   ============================================================ */
.who { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.who h2 { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.who-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.2rem; }
.who-tab {
  padding: 0.7em 1.4em; border-radius: 999px;
  font-weight: 650; font-size: 1rem;
  background: var(--surface); color: var(--ink-soft);
  border: 2px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.who-tab:hover { color: var(--ink); border-color: oklch(0.23 0.015 40 / 0.2); }
.who-tab[aria-selected="true"] { background: var(--ink); color: #fff; }
.who-tab:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }

.who-panel {
  max-width: 46rem; margin-inline: auto;
  background: var(--coral-tint);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.who-panel[hidden] { display: none; }
.who-panel h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 1.2rem; color: var(--coral-ink); }
.who-panel ul { list-style: none; display: grid; gap: 0.9rem; }
.who-panel li { display: flex; gap: 0.7em; align-items: baseline; font-size: 1.08rem; color: oklch(0.32 0.06 32); }
.who-panel li::before { content: "→"; color: var(--coral); font-weight: 800; flex: none; }
.who-cta { text-align: center; margin-top: 2.4rem; }

/* ============================================================
   OFERTA
   ============================================================ */
.offer { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--surface); }
.offer-head { text-align: center; max-width: 42rem; margin: 0 auto clamp(2.5rem, 6vw, 4rem); }
.offer-head h2 { margin-bottom: 0.8rem; }
.offer-head p { color: var(--ink-soft); margin-inline: auto; }

.plans {
  display: grid; grid-template-columns: 1fr 1.18fr 1fr; gap: clamp(1.2rem, 2.5vw, 1.8rem);
  align-items: center; max-width: 72rem; margin-inline: auto;
}
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; max-width: 30rem; } }

.plan {
  background: var(--bg);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 3vw, 2.3rem);
  border: 1px solid oklch(0.23 0.015 40 / 0.1);
  display: grid; gap: 1.3rem; align-content: start;
}
.plan h3 { font-size: 1.35rem; }
.plan .plan-desc { font-size: 0.98rem; color: var(--ink-soft); }
.plan-price { display: grid; gap: 0.15rem; }
.plan-price .was { color: var(--ink-soft); font-size: 0.95rem; position: relative; width: fit-content; }
.plan-price .was .strike {
  position: absolute; left: -2%; right: -2%; top: 52%; height: 2.5px;
  background: var(--coral); rotate: -4deg; border-radius: 2px;
  transform-origin: left center; transform: scaleX(var(--strike, 1));
}
.plan-price .now { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.plan-price .now small { font-size: 0.55em; font-weight: 650; color: var(--ink-soft); }
.plan-price .cash { font-size: 0.95rem; color: var(--ink-soft); }

.plan ul { list-style: none; display: grid; gap: 0.6rem; font-size: 0.98rem; }
.plan ul li { display: flex; gap: 0.6em; align-items: baseline; }
.plan ul li::before { content: "✓"; color: var(--mint); font-weight: 800; flex: none; }
.plan ul li strong { font-weight: 680; }

.plan .btn { justify-content: center; }

.plan--hero {
  position: relative;
  border: 3px solid var(--coral);
  box-shadow: 0 34px 70px -34px oklch(0.5 0.17 32 / 0.45);
  padding-block: clamp(2.2rem, 4vw, 3rem);
}
.plan--hero .plan-badge {
  position: absolute; top: 0; left: 50%; translate: -50% -50%;
  background: var(--coral); color: #fff;
  font-weight: 750; font-size: 0.88rem; letter-spacing: 0.02em;
  padding: 0.45em 1.2em; border-radius: 999px;
  box-shadow: 0 6px 16px -6px oklch(0.5 0.17 32 / 0.6);
  white-space: nowrap;
}
.plan--hero h3 { font-size: 1.6rem; }
.plan-save {
  background: oklch(0.93 0.04 175); color: var(--mint-deep);
  font-weight: 650; font-size: 0.95rem;
  padding: 0.6em 1em; border-radius: var(--radius-sm);
  width: fit-content;
}

.offer-corp {
  text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--ink-soft);
}
/* mesmo resíduo da paleta clara que estava no diálogo: roxo escuro sobre
   painel escuro, 1,4:1 — e este é um CTA (contato corporativo). */
.offer-corp a { font-weight: 700; color: var(--butter); text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ============================================================
   GARANTIA
   ============================================================ */
.guarantee { padding: clamp(4rem, 8vw, 6rem) 0; }
.guarantee-card {
  max-width: 54rem; margin-inline: auto;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
  background: oklch(0.95 0.035 175);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
}
@media (max-width: 720px) { .guarantee-card { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.seal {
  width: clamp(130px, 16vw, 170px); aspect-ratio: 1; flex: none;
  animation: seal-spin 26s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .seal { animation: none; } }
@keyframes seal-spin { to { rotate: 360deg; } }
.guarantee h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 0.9rem; color: var(--mint-deep); }
.guarantee p { color: oklch(0.34 0.05 175); margin-bottom: 1.4rem; }
.guarantee p strong { color: var(--mint-deep); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(4rem, 9vw, 7rem) 0; }
.faq .container { max-width: 50rem; }
.faq h2 { margin-bottom: 0.5rem; }
.faq .faq-sub { margin-bottom: 2.4rem; }
.faq details {
  border-bottom: 1px solid oklch(0.23 0.015 40 / 0.14);
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.3rem 0.2rem;
  font-weight: 680; font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--coral-deep); }
.faq summary:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; border-radius: 6px; }
.faq summary .faq-icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--coral-tint); color: var(--coral-deep);
  font-weight: 800; font-size: 1.15rem; line-height: 1;
  transition: rotate 0.35s var(--ease-out), background-color 0.25s ease, color 0.25s ease;
}
.faq details[open] .faq-icon { rotate: 45deg; background: var(--coral); color: #fff; }
.faq .faq-body { padding: 0 0.2rem 1.5rem; color: var(--ink-soft); }
.faq .faq-body p { margin-bottom: 0.8em; }
.faq .faq-body strong { color: var(--ink); }

/* ============================================================
   FINAL — Bora facilitar?
   ============================================================ */
.finale {
  padding: clamp(6rem, 14vw, 10rem) 0;
  background: var(--coral-drench); color: #fff;
  text-align: center; overflow: clip; position: relative;
}
.finale h2 {
  font-size: clamp(3rem, 10vw, 6rem); font-weight: 800;
  font-variation-settings: "opsz" 96;
  margin-bottom: 1.4rem; color: #fff;
}
.finale h2 .type-cursor { display: inline-block; width: 0.06em; height: 0.82em; background: #fff; vertical-align: -0.06em; margin-left: 0.05em; animation: blink 1.05s steps(1) infinite; }
.finale .finale-sub { color: oklch(0.97 0.02 40); margin: 0 auto 2.6rem; font-size: clamp(1.15rem, 2vw, 1.35rem); max-width: 40ch; }
.finale .btn-under { justify-content: center; color: oklch(0.96 0.03 40); }
.finale .postit { position: absolute; }
.finale .postit:nth-of-type(1) { top: 12%; left: 6%; rotate: -8deg; }
.finale .postit:nth-of-type(2) { bottom: 14%; right: 7%; rotate: 6deg; }
@media (max-width: 720px) { .finale .postit { display: none; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 3rem 0; background: var(--ink); color: oklch(0.75 0.015 60); font-size: 0.95rem; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: center; }
.site-footer a { color: oklch(0.88 0.01 60); text-underline-offset: 3px; }
.site-footer a:hover { color: #fff; }
.site-footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0.8rem; right: 0.8rem; bottom: 0.8rem;
  z-index: var(--z-sticky);
  display: none;
  translate: 0 130%;
  transition: translate 0.45s var(--ease-out), bottom 0.5s var(--ease-out);
}
/* só afasta do banner de consentimento quando de fato visível — evita
   reabrir o off-canvas hide (translate 130% relativo ao próprio bottom) */
.sticky-cta.is-visible { translate: 0 0; bottom: calc(0.8rem + var(--consent-h, 0px)); }
.sticky-cta .btn { width: 100%; justify-content: center; box-shadow: 0 2px 0 var(--coral-deep), 0 18px 40px -12px oklch(0 0 0 / 0.4); }
@media (max-width: 720px) { .sticky-cta { display: block; } }

/* ============================================================
   DIALOG — captura + checkout
   ============================================================ */
.checkout-dialog {
  margin: auto; /* o reset global zera o margin do <dialog>; restaura a centralização */
  /* O UA stylesheet aplica `color: CanvasText` em <dialog>, o que CORTA a
     herança de cor do body. Sem esta linha, o título e os labels ficam pretos
     sobre o painel roxo escuro (1,19:1) em qualquer navegador cujo
     color-scheme resolva para claro — que é o caso padrão. */
  color: var(--ink);
  border: none; border-radius: var(--radius);
  padding: 0; width: min(30rem, calc(100vw - 2rem));
  box-shadow: 0 40px 90px -30px oklch(0 0 0 / 0.5);
  z-index: var(--z-dialog);
}
.checkout-dialog::backdrop { background: oklch(0.15 0.02 40 / 0.6); backdrop-filter: blur(4px); }
.checkout-inner { padding: clamp(1.8rem, 5vw, 2.6rem); display: grid; gap: 1.2rem; }
.checkout-inner .dialog-close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); font-size: 1.2rem; font-weight: 700;
  transition: background-color 0.2s ease, rotate 0.3s var(--ease-out);
}
.checkout-inner .dialog-close:hover { background: var(--coral-tint); rotate: 90deg; }
.checkout-inner h2 { font-size: 1.6rem; }
/* DESTAQUE da marca é o ciano, igual ao resto da página. Era --coral-deep,
   herdado da paleta clara antiga: roxo escuro sobre painel escuro, 1,4:1. */
.checkout-inner .checkout-plan-name { color: var(--butter); font-weight: 700; }
.checkout-inner > p { font-size: 1rem; color: var(--ink-soft); }

.field { display: grid; gap: 0.35rem; }
.field label { font-weight: 650; font-size: 0.95rem; }
.field input {
  font: inherit; font-size: 1.05rem;
  padding: 0.85em 1em;
  border: 2px solid oklch(0.23 0.015 40 / 0.16);
  border-radius: var(--radius-sm);
  background: var(--bg); color: var(--ink);
  transition: border-color 0.2s ease;
  width: 100%;
}
.field input::placeholder { color: oklch(0.5 0.015 40); }
.field input:focus-visible { outline: none; border-color: var(--coral); }
.field input[aria-invalid="true"] { border-color: oklch(0.55 0.19 25); }
/* vermelho CLARO: o de antes (0.5) era escuro sobre escuro, 2,67:1 — a
   mensagem de erro só aparece quando alguém erra o e-mail, então isso
   passaria despercebido justamente na hora em que precisa ser lido. */
.field .field-error { font-size: 0.88rem; color: oklch(0.78 0.16 25); display: none; }
.field input[aria-invalid="true"] ~ .field-error { display: block; }

.consent { display: flex; gap: 0.7em; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.consent input { width: 20px; height: 20px; margin-top: 0.15em; accent-color: var(--coral); flex: none; }

.checkout-inner .btn { width: 100%; justify-content: center; }
.checkout-secure { font-size: 0.88rem; color: var(--ink-soft); text-align: center; display: flex; gap: 0.5em; justify-content: center; align-items: center; }

/* ---------- Modos do diálogo (data-mode no <dialog>) ----------
   A copy dos dois modos vive no HTML; aqui só decidimos qual aparece.
   Sem isto, o modo magnet (material gratuito) mostraria copy de pagamento. */
.checkout-dialog[data-mode="magnet"] [data-when="gate"],
.checkout-dialog[data-mode="gate"] [data-when="magnet"] { display: none; }

.checkout-dialog #checkout-form[hidden],
.checkout-dialog .checkout-done[hidden] { display: none; }
.checkout-done { text-align: center; }
.checkout-done p { font-size: 1rem; color: var(--ink-soft); }
.checkout-done p a { color: var(--butter); font-weight: 650; text-underline-offset: 3px; }

/* ---------- Estados de reveal (JS adiciona .gs-ready) ---------- */
.gs-reveal { opacity: 1; }
body.gs-ready .gs-reveal { opacity: 0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  body.gs-ready .gs-reveal { opacity: 1 !important; transform: none !important; }
  .btn, .btn .btn-arrow { transition: none; }

  /* main.js sai cedo sob reduced-motion e nunca monta o ScrollTrigger da
     .reveal — sem isto sobrariam ~3,4 telas de scroll congelado. Colapsa a
     seção para uma tela só, já no estado final (ver .reveal-boring/-climax). */
  .reveal { height: auto; }
  .reveal-pin { position: static; height: 100vh; }
}

/* ============================================================
   BRAND SKIN — Learning Lab (marca real)
   Roxo profundo + ciano elétrico + magenta, fundo escuro vibrante
   Fundido de css/brand.css (era carregado depois de styles.css como override).
   Cores da marca extraídas de lab.borafacilitar.com.br:
   roxo #6D199A · ciano #04EBFC · magenta #CC3366
   ============================================================ */

::selection { background: var(--butter); color: oklch(0.17 0.06 305); }

/* logos grafite -> silhueta clara no tema escuro */
.logo-strip img { filter: brightness(0) invert(1); opacity: 0.55; }
.logo-strip li:hover img { opacity: 0.92; }

/* ---------- Header ---------- */
.site-header.is-scrolled {
  background: oklch(0.17 0.06 305 / 0.9);
  box-shadow: 0 1px 0 oklch(0.96 0.015 300 / 0.1);
}
.brand-logo { display: inline-flex; align-items: center; gap: 0.55em; text-decoration: none; }
.brand-logo img { width: 40px; height: 40px; }
.brand-logo .wm {
  font-weight: 800; font-size: 1.12rem; line-height: 0.95; letter-spacing: -0.01em;
  color: var(--butter); text-transform: lowercase;
}

/* ---------- Botões: brilho da marca ---------- */
.btn--primary {
  box-shadow: 0 2px 0 var(--coral-deep), 0 12px 32px -10px oklch(0.52 0.24 305 / 0.7);
}
.btn--primary:hover { box-shadow: 0 4px 0 var(--coral-deep), 0 18px 40px -10px oklch(0.6 0.26 305 / 0.8); }
.btn--ghost { box-shadow: inset 0 0 0 2px oklch(0.96 0.015 300 / 0.3); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--butter); color: var(--butter); }
.btn--on-dark { background: var(--butter); color: oklch(0.17 0.06 305); box-shadow: 0 2px 0 var(--butter-deep), 0 14px 32px -12px oklch(0 0 0 / 0.6); }

/* ---------- Hero: bokeh vibrante ---------- */
.hero-copy .kicker-lab { background: oklch(0.52 0.24 305 / 0.25); color: var(--butter); }
.blob--coral { background: radial-gradient(circle at 35% 35%, oklch(0.55 0.26 305 / 0.55), transparent 70%); }
.blob--butter { background: radial-gradient(circle at 60% 40%, oklch(0.72 0.16 205 / 0.4), transparent 70%); }
.blob--mint { background: radial-gradient(circle at 50% 50%, oklch(0.62 0.22 355 / 0.35), transparent 70%); }

/* ---------- Highlight (marca-texto): roxo com texto claro ---------- */
.hl .hl-ink { background: var(--coral); }
.hl { color: #fff; }
.hl .hl-ink { inset: 8% -0.16em 2% -0.16em; }
.hl--coral .hl-ink { background: var(--butter); }
.hl--coral { color: oklch(0.17 0.06 305); }
.hl--mint .hl-ink { background: var(--mint); }

/* ---------- Post-its ---------- */
.postit--coral { background: oklch(0.6 0.22 305); color: #fff; }
.postit--mint { background: oklch(0.66 0.19 355); color: #fff; }
/* O papel ciano é CLARO: herdava --ink (quase branco) e dava 1,45:1.
   Tinta escura, igual ao .rp--butter da parede de post-its. */
.postit--butter { color: oklch(0.17 0.06 305); }
.rp--coral { background: oklch(0.55 0.22 305); color: #fff; }
.rp--mint { background: oklch(0.62 0.2 355); color: #fff; }
.rp--butter { color: oklch(0.17 0.06 305); }

/* ---------- Manifestos ---------- */
.manifesto--butter { background: var(--butter); color: oklch(0.17 0.06 305); }
.manifesto--butter .manifesto-sub { color: oklch(0.28 0.08 240); }
.manifesto--coral { background: var(--coral-drench); color: #fff; }
.manifesto--coral .manifesto-sub { color: oklch(0.92 0.04 305); }

/* ---------- Reveal (animação de scroll) ---------- */
.reveal-climax h2 { color: #fff; text-shadow: 0 6px 34px oklch(0.12 0.05 305 / 0.85); }

/* ---------- Antes/Depois ---------- */
.call-grid--live { background: oklch(0.45 0.22 305); }

/* ---------- O que aprende: checks ciano ---------- */
.learn-list li { border-color: oklch(0.96 0.015 300 / 0.1); }
.learn-list .check circle { fill: oklch(0.3 0.1 210); }
.learn-list .check path { stroke: var(--butter); }

/* ---------- Diferenciais / FAQ: separadores claros ---------- */
.why-list { border-top-color: oklch(0.96 0.015 300 / 0.25); }
.why-item { border-bottom-color: oklch(0.96 0.015 300 / 0.14); }
.why-item h3 .why-key { color: var(--butter); }
.faq details { border-bottom-color: oklch(0.96 0.015 300 / 0.14); }
.faq summary:hover { color: var(--butter); }
.faq summary .faq-icon { background: oklch(0.52 0.24 305 / 0.25); color: var(--butter); }
.faq details[open] .faq-icon { background: var(--coral); color: #fff; }

/* ---------- Mentor / footer: painéis escuros ---------- */
.mentor { background: var(--panel-dark); }
.mentor-photo .photo-frame::before { background: var(--coral); opacity: 0.28; }
.site-footer { background: var(--panel-dark); }

/* ---------- Para quem é ---------- */
.who-tab[aria-selected="true"] { background: var(--coral); color: #fff; }
.who-tab:hover { border-color: oklch(0.96 0.015 300 / 0.25); }
.who-panel li { color: oklch(0.88 0.04 305); }

/* ---------- Oferta ---------- */
.plan { border-color: oklch(0.96 0.015 300 / 0.12); }
.plan-save { background: oklch(0.28 0.1 210); color: var(--butter); }
.plan--hero { box-shadow: 0 34px 70px -34px oklch(0.52 0.24 305 / 0.6); }
.plan--hero .plan-badge { box-shadow: 0 6px 16px -6px oklch(0.52 0.24 305 / 0.7); }
.plan ul li strong { color: #fff; }

/* ---------- Garantia: painel ciano escuro ---------- */
.guarantee-card { background: oklch(0.22 0.09 210); }
.guarantee h2 { color: var(--butter); }
.guarantee p { color: oklch(0.86 0.05 210); }
.guarantee p strong { color: var(--butter); }

/* ---------- Cards / inputs: bordas claras ---------- */
.plan, .learn-list li { border-color: oklch(0.96 0.015 300 / 0.12); }
.field input {
  background: oklch(0.17 0.06 305); color: var(--ink);
  border-color: oklch(0.96 0.015 300 / 0.2);
}
.field input::placeholder { color: oklch(0.6 0.03 300); }
.checkout-dialog { background: var(--surface); }
.checkout-inner .dialog-close { background: oklch(0.96 0.015 300 / 0.1); color: var(--ink); }
.checkout-inner .dialog-close:hover { background: var(--coral); color: #fff; }
.consent input { accent-color: var(--butter); }
.checkout-dialog::backdrop { background: oklch(0.1 0.05 305 / 0.7); }

/* ---------- Método: número do passo roxo ---------- */
.method-step .step-n { background: var(--coral); }
.method-step { border-color: transparent; }
.method-step.is-active { background: var(--coral-tint); }

/* ---------- Sticky CTA mobile ---------- */
.sticky-cta .btn { box-shadow: 0 2px 0 var(--coral-deep), 0 18px 40px -12px oklch(0 0 0 / 0.6); }

/* canvas do método: fundo do SVG continua branco (legível) — ok sobre escuro */

/* ---------- Banner de consentimento ---------- */
.consent-banner {
  position: fixed; z-index: var(--z-sticky);
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 46rem; margin-inline: auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
  padding: 1.1rem 1.4rem;
  background: var(--surface);
  border: 1px solid oklch(0.96 0.015 300 / 0.18);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px -20px oklch(0 0 0 / 0.6);
  translate: 0 130%;
  transition: translate 0.5s var(--ease-out);
}
.consent-banner.is-visible { translate: 0 0; }
.consent-banner[hidden] { display: none; }
.consent-banner p {
  flex: 1 1 20rem; margin: 0;
  font-size: 0.95rem; line-height: 1.5; color: var(--ink-soft);
}
.consent-banner a { color: var(--butter); text-underline-offset: 3px; }
.consent-actions { display: flex; gap: 0.6rem; flex: 0 0 auto; }
.consent-actions .btn { min-height: 48px; padding: 0.55em 1.3em; font-size: 0.95rem; }

@media (prefers-reduced-motion: reduce) {
  .consent-banner, .sticky-cta, .hero, body,
  .hero .display-xl, .hero-copy .kicker-lab, .hero-copy h1, .hero-copy .lead, .btn-under {
    transition: none;
  }
}
@media (max-width: 560px) {
  .consent-actions { width: 100%; }
  .consent-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- Lead magnet ---------- */
.magnet { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--surface); }
.magnet-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 860px) { .magnet-grid { grid-template-columns: 1fr; } }
.magnet h2 { margin-bottom: 1.1rem; }
.magnet p { color: var(--ink-soft); margin-bottom: 0.9em; }
.magnet p strong { color: var(--butter); }
.magnet-note { font-size: 0.95rem; }
.magnet-form {
  display: grid; gap: 1rem;
  background: var(--bg);
  border: 1px solid oklch(0.96 0.015 300 / 0.14);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2.2rem);
  /* dá folga ao rolar até o form via scrollIntoView/âncora, para o banner
     de consentimento (bottom-fixed) não pousar em cima do botão */
  scroll-margin-bottom: calc(1.5rem + var(--consent-h, 0px));
}
.magnet-form .btn { justify-content: center; scroll-margin-bottom: calc(1.5rem + var(--consent-h, 0px)); }
.magnet-status { font-size: 0.95rem; margin: 0; min-height: 1.4em; }
.magnet-status.is-ok { color: var(--butter); }
.magnet-status.is-error { color: oklch(0.7 0.19 25); }

/* Sticky CTA mobile: não pode flutuar por cima do form do magnet
   (ver observer em js/leads.js que aplica .magnet-in-view no <body>) */
body.magnet-in-view .sticky-cta.is-visible { translate: 0 130%; }

/* ---------- Páginas legais (termos, privacidade) ---------- */
.legal-main {
  padding: clamp(7rem, 15vh, 9.5rem) 0 clamp(4rem, 8vw, 6rem);
}
.legal {
  max-width: 38rem; /* ~70 caracteres por linha no corpo em 1.0625rem/Sora */
  margin-inline: auto;
}
.legal h1 {
  font-size: clamp(1.9rem, 4.4vw, 2.7rem);
  margin-bottom: 0.5rem;
}
.legal-updated {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 2.6rem;
}
.legal > p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: none;
  margin-bottom: 1.4rem;
}
.legal h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--butter);
  margin-top: 2.6rem;
  margin-bottom: 0.9rem;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: none;
  margin-bottom: 1.2rem;
}
.legal ul {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.75;
  padding-left: 1.3em;
  margin-bottom: 1.2rem;
  display: grid;
  gap: 0.5em;
}
.legal strong { color: var(--ink); }
.legal a { color: var(--butter); text-underline-offset: 3px; }
.legal code {
  font-family: ui-monospace, "SFMono-Regular", "Consolas", monospace;
  font-size: 0.92em;
  color: var(--ink);
  background: oklch(0.96 0.015 300 / 0.1);
  border-radius: 4px;
  padding: 0.1em 0.35em;
  word-break: break-word;
}
@media (max-width: 640px) {
  .legal-main { padding-top: clamp(6rem, 20vh, 7.5rem); }
}

/* ---------- VSL — banda "sala escura", separada das vizinhas ----------
   A faixa de logos acima usa --bg e a seção de dor abaixo usa --surface.
   Esta usa --panel-dark: mais escura que as duas, criando a separação
   que faltava e uma leitura de "sala de cinema" para o vídeo.        */
.vsl {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--panel-dark);
  overflow: clip;
}
/* brilho de marca atrás do player, dando profundidade à banda */
.vsl::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(42rem 26rem at 32% 50%, oklch(0.52 0.24 305 / 0.30), transparent 70%),
    radial-gradient(28rem 20rem at 78% 22%, oklch(0.72 0.15 205 / 0.16), transparent 70%);
}

.vsl-grid {
  position: relative;
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 900px) { .vsl-grid { grid-template-columns: 1fr; } }

/* ---- palco do player ---- */
.vsl-stage { position: relative; rotate: -1.2deg; transition: rotate 0.6s var(--ease-out); }
.vsl-stage.is-playing { rotate: 0deg; }

.vsl-frame {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  background: oklch(0.1 0.04 305);
  box-shadow: 0 34px 70px -26px oklch(0 0 0 / 0.85),
              0 0 0 1px oklch(0.96 0.015 300 / 0.08);
}
.vsl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.vsl-facade {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: grid; place-items: center; padding: 0; cursor: pointer; background: none;
}
.vsl-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vsl-facade::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0.1 0.04 305 / 0.55), transparent 60%);
  transition: opacity 0.35s ease;
}
.vsl-facade:hover::after { opacity: 0.6; }

/* botão de play em ciano: destaca-se sobre a foto e não compete
   com o roxo, que na página inteira significa "comprar" */
.vsl-btn {
  position: relative; z-index: 1;
  width: clamp(68px, 8vw, 92px); aspect-ratio: 1;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--butter); color: oklch(0.15 0.05 305);
  padding-left: 5px; /* compensa o peso óptico do triângulo */
  box-shadow: 0 0 0 10px oklch(0.82 0.15 205 / 0.16),
              0 14px 34px -8px oklch(0.72 0.15 205 / 0.6);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.vsl-facade:hover .vsl-btn,
.vsl-facade:focus-visible .vsl-btn {
  transform: scale(1.09);
  box-shadow: 0 0 0 16px oklch(0.82 0.15 205 / 0.2),
              0 18px 40px -8px oklch(0.72 0.15 205 / 0.75);
}
.vsl-facade:focus-visible { outline: 3px solid var(--butter); outline-offset: 4px; border-radius: var(--radius); }

/* selo de duração — padrão que todo mundo já reconhece de player */
.vsl-time {
  position: absolute; z-index: 1; right: 0.85rem; bottom: 0.8rem;
  font-size: 0.85rem; font-weight: 650; letter-spacing: 0.01em;
  color: #fff; background: oklch(0.1 0.04 305 / 0.82);
  padding: 0.25em 0.6em; border-radius: 6px;
  backdrop-filter: blur(4px);
}

.vsl-postit {
  position: absolute; z-index: 2;
  top: -1.6rem; right: -1.2rem; rotate: 7deg;
  width: clamp(88px, 9vw, 116px);
}
@media (max-width: 900px) { .vsl-postit { top: -1.2rem; right: 0.5rem; } }

/* ---- coluna de texto ---- */
.vsl-copy h2 { margin-bottom: 1rem; }
.vsl-copy > p { color: var(--ink-soft); margin-bottom: 1rem; }
.vsl-copy > p strong { color: var(--butter); font-weight: 650; }
.vsl-hand { display: block; margin: 0.2rem 0 1.4rem; }

@media (prefers-reduced-motion: reduce) {
  .vsl-stage { rotate: 0deg; transition: none; }
  .vsl-btn, .vsl-facade::after { transition: none; }
  .vsl-facade:hover .vsl-btn { transform: none; }
}

/* ---------- FACILITAÇÃO — definição da categoria ----------
   Fica entre o clímax da animação ("Facilitar, não dificultar") e o
   comparador: a página afirma, aqui explica, depois mostra.
   A seção NÃO repete a lista editorial de .why — a definição vira
   desenho (o nó que desata), os pilares viram cartões inclinados que
   se endireitam no hover, e o "7 de 8" vira medidor.            */
.facil { padding: clamp(4rem, 9vw, 7rem) 0; }

/* --- topo: a definição + o nó que desata --- */
.facil-top {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
@media (max-width: 860px) { .facil-top { grid-template-columns: 1fr; } }
.facil-intro h2 { margin-bottom: 1.2rem; }
.facil-intro .lead strong { color: var(--butter); font-weight: 650; }

.facil-untangle { position: relative; }
.facil-untangle svg { width: 100%; height: auto; overflow: visible; }
.facil-untangle path {
  fill: none; stroke-width: 3.5;
  stroke-linecap: round; stroke-linejoin: round;
}
/* estado final por padrão: sem JS o traço limpo já está desenhado
   e o emaranhado fica só como fantasma (mesma lógica de .reveal). */
.facil-knot { stroke: var(--mint-deep); opacity: 0.16; }
.facil-clean { stroke: var(--butter); stroke-dashoffset: 0; }
.facil-clean--tip { stroke-width: 4; }
.facil-untangle figcaption {
  position: absolute; right: 4%; bottom: -0.6rem; rotate: -4deg;
}
@media (max-width: 860px) {
  .facil-untangle { max-width: 30rem; }
  .facil-untangle figcaption { position: static; rotate: -2deg; display: block; margin-top: 0.4rem; }
}

/* --- os três pilares --- */
.facil-cards {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}
@media (max-width: 900px) { .facil-cards { grid-template-columns: 1fr; } }

.facil-card {
  --accent: var(--butter);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid oklch(0.96 0.015 300 / 0.09);
  border-top: 4px solid var(--accent);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  rotate: var(--tilt, 0deg);
  transition: rotate 0.45s var(--ease-out), transform 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out);
}
.facil-card--a { --accent: var(--butter);     --tilt: -1.6deg; }
.facil-card--b { --accent: var(--mint-deep);  --tilt:  1.2deg; }
.facil-card--c { --accent: var(--coral-bright); --tilt: -0.8deg; }
/* o gesto é a metáfora: passar o mouse endireita o cartão */
.facil-card:hover, .facil-card:focus-within {
  rotate: 0deg; transform: translateY(-4px);
}
@media (prefers-reduced-motion: reduce) {
  .facil-card { rotate: 0deg; transition: none; }
  .facil-card:hover { transform: none; }
}

.facil-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 730; line-height: 1.15;
  margin-bottom: 0.8rem;
}
/* o "É" repetido dos três pilares vira o marcador da seção */
.facil-e {
  display: block; font-size: 2.6em; font-weight: 800;
  line-height: 0.8; color: var(--accent);
  margin-bottom: 0.16em;
  transform-origin: left bottom;
}
.facil-card p { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }
.facil-card p strong { color: var(--ink); font-weight: 650; }

/* --- ponte para o lead magnet: 7 de 8 --- */
.facil-bridge {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}
.facil-meter { display: flex; gap: 7px; flex: none; }
.facil-meter i {
  display: block; width: 15px; height: 52px; border-radius: 8px;
  background: var(--butter);
  border: 2px solid var(--butter);
  transform-origin: bottom center;
}
.facil-meter i.is-off {
  background: transparent;
  border-style: dashed;
  border-color: oklch(0.96 0.015 300 / 0.38);
}
.facil-bridge p {
  flex: 1 1 24rem; margin: 0;
  font-size: clamp(1.02rem, 1.7vw, 1.15rem);
  color: var(--ink-soft);
}
.facil-bridge strong { color: var(--ink); font-weight: 650; }
.facil-bridge a {
  color: var(--butter); font-weight: 650;
  text-decoration-thickness: 2px; text-underline-offset: 4px;
  white-space: nowrap;
}
.facil-bridge a:hover { color: #fff; }
