/* ============================================================
   PN Lab — Provas & Nulidades
   Dark editorial / legal laboratory design system
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* paleta oliva (inspirada no Upmind: escuro #101604, não preto) */
  --bg-0: #0D1206;            /* base, oliva mais escuro */
  --bg-1: #121A09;            /* secundário */
  --bg-2: #1A220E;            /* banda de seção (oliva mais claro p/ ritmo) */
  --surface-1: #202A14;       /* superfície primária */
  --surface-2: #283318;       /* superfície secundária */
  --graphite: #2C3322;
  --text-1: #F3F1E8;
  --text-2: #C9C8C3;
  --text-3: #97987F;
  --lime: #D6E85A;
  --lime-soft: #B9C94C;
  --green-deep: #3D4A3A;
  --border: rgba(243, 241, 232, 0.10);
  --border-strong: rgba(243, 241, 232, 0.18);
  --glow: rgba(214, 232, 90, 0.14);

  /* bandas claras (creme Upmind #F7F9F2) */
  --light-bg: #F5F7EE;
  --light-bg-2: #E9EEDC;
  --light-ink: #171C0E;       /* texto escuro sobre claro */
  --light-ink-2: #3C4330;
  --light-ink-3: #6E7458;
  --light-border: rgba(23, 28, 14, 0.14);
  --light-accent: #51702A;    /* verde p/ marcadores/ênfase no claro */

  --font-display: "Space Grotesk", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --container: 76rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.25rem, 7.5vw, 6.75rem);
  --nav-h: 4.25rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
a, button { touch-action: manipulation; }

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

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* quiet film grain over the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.94 0 0 0 0 0.91 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-1);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
ul, ol, dl, dd, figure { margin: 0; padding: 0; }
li { list-style: none; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--lime); color: var(--bg-0); }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem; left: 0.75rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--lime);
  color: var(--bg-0);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border-radius: 3px;
  transform: translateY(-300%);
  transition: transform 200ms var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); }

/* scroll progress — a thin precision rule under the navbar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 110;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* section reveal (JS-gated: never hides content without JS) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(0.875rem);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Type primitives ---------- */
.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

.section-annot {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: right;
}
@media (max-width: 40rem) {
  .section-annot { display: none; }
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
  max-width: 22ch;
  margin-bottom: clamp(1.9rem, 4.5vw, 2.75rem);
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding-block: var(--section-y);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.section-tone-deep {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}

/* faint dossier baseline grid — quiet depth carried through the page.
   A soft top/bottom fade is baked into the gradient stack (no mask layer,
   which can break GPU compositing) so edges don't read as hard seams. */
.section-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, var(--bg-2) 0, transparent 9%, transparent 91%, var(--bg-2) 100%),
    linear-gradient(rgba(243, 241, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 241, 232, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 72px 72px, 72px 72px;
  background-position: center, center 0, center 0;
}
.section-tone-deep.section-grid::before {
  background-image:
    linear-gradient(180deg, var(--bg-2) 0, transparent 9%, transparent 91%, var(--bg-2) 100%),
    linear-gradient(rgba(243, 241, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 241, 232, 0.025) 1px, transparent 1px);
}
.section-grid:not(.section-tone):not(.section-tone-deep)::before {
  background-image:
    linear-gradient(180deg, var(--bg-0) 0, transparent 9%, transparent 91%, var(--bg-0) 100%),
    linear-gradient(rgba(243, 241, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 241, 232, 0.025) 1px, transparent 1px);
}
.section-grid > .container { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 200ms var(--ease-out),
              border-color 200ms var(--ease-out),
              color 200ms var(--ease-out),
              box-shadow 200ms var(--ease-out),
              transform 200ms var(--ease-out);
}
.btn:active { transform: scale(0.985); }

.btn-primary {
  background: var(--lime);
  color: var(--bg-0);
  border: 1px solid var(--lime);
}
.btn-primary:hover {
  background: #E2F36C;
  border-color: #E2F36C;
  box-shadow: 0 0 0 4px var(--glow);
}


.btn-lg {
  min-height: 3.375rem;
  padding: 0.95rem 2rem;
  font-size: 1.02rem;
}

.btn-arrow {
  font-size: 0.9em;
  color: var(--lime-soft);
  transition: transform 200ms var(--ease-out);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top);
  background: transparent;            /* sem barra visível sobre a hero */
  border-bottom: 1px solid transparent;
  transition: background 250ms var(--ease-out), border-color 250ms var(--ease-out),
              backdrop-filter 250ms var(--ease-out);
}
/* degradê forte e longo, que desce além da barra e some suave (barra imperceptível) */
.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 240%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.5) 28%,
    rgba(0, 0, 0, 0.22) 55%,
    rgba(0, 0, 0, 0.07) 78%,
    transparent 100%);
  transition: opacity 250ms var(--ease-out);
}
/* ganha fundo sólido ao rolar para fora da hero */
.site-header.is-scrolled {
  background: rgba(8, 11, 5, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.site-header.is-scrolled::before { opacity: 0; }   /* some quando a barra fica sólida */

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--nav-h);
}


.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.nav-logo { width: auto; height: 1.75rem; }
.nav-brand-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-left: 0.85rem;
  border-left: 1px solid var(--border);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #FFFFFF;
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid transparent;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.nav-links a:hover { color: #FFFFFF; opacity: 0.7; }
.nav-links a[aria-current="true"] {
  color: #FFFFFF;
  opacity: 1;
  border-bottom-color: var(--lime);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.6rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-1);
  transition: transform 250ms var(--ease-out);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

@media (max-width: 56rem) {
  .nav-brand-text { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem var(--gutter) 1.5rem;
    background: #070906;
    border-bottom: 1px solid var(--border);
  }
  /* Hidden only when JS can re-open it; no-JS users get a static stacked menu */
  .js .nav-menu { display: none; }
  .js .nav-menu.is-open { display: flex; }
  html:not(.js) .nav-toggle { display: none; }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 1.25rem;
  }
  .nav-links a {
    display: block;
    padding: 0.9rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a[aria-current="true"] { border-bottom-color: var(--lime); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;          /* conteúdo no centro-baixo, como o Upmind */
  justify-content: center;
  padding-top: calc(var(--nav-h) + 2rem + env(safe-area-inset-top));
  padding-bottom: calc(clamp(2.5rem, 6vh, 5rem) + env(safe-area-inset-bottom));
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--border);
}

/* ===== FUNDO FULL-BLEED =====
   Gradiente é o fallback/placeholder; o <video> (assets/hero-bg.mp4) cobre por cima
   quando existir. Sem vídeo/imagem, o gradiente aparece. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 95% at 50% 0%, #2b3520 0%, #161d10 46%, var(--bg-0) 100%),
    var(--bg-0);
}
/* vídeo de fundo */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;                  /* acima do gradiente, abaixo do overlay/scrim */
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }   /* sem movimento: mostra poster/gradiente */
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;                  /* tinta/legibilidade por cima do vídeo */
  background-image:
    radial-gradient(55% 45% at 50% 34%, rgba(214, 232, 90, 0.10), transparent 70%),
    radial-gradient(95% 70% at 50% 48%, rgba(3, 4, 2, 0.52), transparent 76%),
    linear-gradient(180deg, rgba(3, 4, 2, 0.28) 0%, rgba(3, 4, 2, 0.22) 32%, rgba(3, 4, 2, 0.62) 80%, var(--bg-0) 100%);
}
/* scrim para manter o texto legível sobre qualquer imagem */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(3, 4, 2, 0.34) 0%, rgba(3, 4, 2, 0.12) 34%,
    rgba(3, 4, 2, 0.55) 80%, var(--bg-0) 100%);
}

/* ===== conteúdo centralizado ===== */
.hero-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(3, 4, 2, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
}

.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--text-1);
  text-wrap: balance;
  margin-bottom: clamp(1.1rem, 2.4vh, 1.7rem);
}
.hero-headline em { font-style: normal; color: var(--lime); }

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 50ch;
  margin-bottom: clamp(1.6rem, 3.5vh, 2.5rem);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: clamp(1.25rem, 3vh, 1.9rem);
}
.hero-altlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-2);
  border-bottom: 1px solid transparent;
  transition: color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.hero-altlink:hover { color: var(--lime); border-bottom-color: rgba(214, 232, 90, 0.5); }
.hero-altlink .btn-arrow { transition: transform 200ms var(--ease-out); }
.hero-altlink:hover .btn-arrow { transform: translateX(3px); }

/* ===== pills flutuantes ===== */
.hero-pills {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* camada externa: parallax do mouse (JS define --mx/--my com suavização spring) */
.hero-pill {
  position: absolute;
  will-change: transform;
  transform: translate(var(--mx, 0px), var(--my, 0px));
}
/* camada interna: o "balão" visual + flutuação ambiente contínua */
.hero-pill-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-1);
  padding: 0.4rem 0.95rem 0.4rem 0.45rem;
  border: 1px solid rgba(243, 241, 232, 0.14);
  border-radius: 999px;
  background: rgba(8, 10, 6, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px -14px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  will-change: transform;
}
.hero-pill-ic {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lime);
}
.hero-pill-ic::before {
  content: "";
  position: absolute; inset: 0; margin: auto;
  width: 10px; height: 10px;
  background: var(--bg-0);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}
.hero-pill--a { left: 15%;  top: 45%; }
.hero-pill--b { right: 14%; top: 39%; }
.hero-pill--c { left: 8%;   top: 69%; }
.hero-pill--d { right: 9%;  top: 64%; }
.hero-pill--e { right: 19%; top: 83%; }

/* flutuação ambiente: deriva multi-eixo + leve rotação, ritmos diferentes por balão */
@media (prefers-reduced-motion: no-preference) {
  .hero-pill-inner { animation: pillDrift 9s ease-in-out infinite; }
  .hero-pill--b .hero-pill-inner { animation-duration: 11.5s; animation-delay: -2s;   animation-direction: reverse; }
  .hero-pill--c .hero-pill-inner { animation-duration: 10s;   animation-delay: -4s; }
  .hero-pill--d .hero-pill-inner { animation-duration: 12.5s; animation-delay: -1.5s; animation-direction: reverse; }
  .hero-pill--e .hero-pill-inner { animation-duration: 8.5s;  animation-delay: -3.2s; }
}
@keyframes pillDrift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(7px, -9px) rotate(2.5deg); }
  50%  { transform: translate(-5px, -14px) rotate(-2deg); }
  75%  { transform: translate(-8px, -5px) rotate(1.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@media (max-width: 64rem) {
  .hero-pill-inner { font-size: 0.78rem; }
  .hero-pill--a { left: 3%;  top: 44%; }
  .hero-pill--b { right: 3%; top: 39%; }
  .hero-pill--c { left: 3%;  top: 71%; }
  .hero-pill--d { right: 3%; top: 67%; }
  .hero-pill--e { display: none; }
}
@media (max-width: 48rem) {
  .hero { align-items: center; }
  .hero-pills { display: none; }   /* sem clutter no mobile */
  .hero-headline { font-size: clamp(2.5rem, 11vw, 3.6rem); }
  .hero-ctas .btn { width: 100%; }
}

/* ============================================================
   01 — PROBLEMA
   ============================================================ */
.problem-statement {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.012em;
  max-width: 52ch;
  color: var(--text-3);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.problem-statement strong {
  display: block;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.6rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 62rem;
}

.failure-row {
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.35rem 0.25rem;
  border-top: 1px solid var(--border);
  transition: background-color 200ms var(--ease-out);
}
.failure-row:last-child { border-bottom: 1px solid var(--border); }
.failure-row:hover { background: rgba(243, 241, 232, 0.02); }
.failure-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--lime-soft);
}
.failure-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.35;
}
.failure-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  white-space: nowrap;
}

@media (max-width: 56rem) {
  .problem-grid { grid-template-columns: 1fr; }
  .failure-row { grid-template-columns: 2.6rem 1fr; }
  .failure-tag { grid-column: 2; justify-self: start; }
}

/* ============================================================
   CONVITE — bloco de fundo claro
   ============================================================ */
/* modificador genérico: banda clara (combina com .section) */
.section-light {
  background: var(--light-bg);
  color: var(--light-ink);
  border-block: 1px solid var(--light-border);
}
.section-light.section-grid::before { content: none; }   /* sem a grade fraca no claro */

/* elementos compartilhados, invertidos para o fundo claro */
.section-light .eyebrow { color: var(--light-ink-3); }
.section-light .section-annot { color: var(--light-ink-3); }
.section-light .section-head { border-bottom-color: var(--light-border); }
.section-light .section-title { color: var(--light-ink); }

/* "Para quem é" no claro */
.section-light .audience-lead { color: var(--light-ink-2); }
.section-light .audience-item { border-top-color: var(--light-border); color: var(--light-ink); }
.section-light .audience-item:last-child { border-bottom-color: var(--light-border); }
.section-light .audience-marker { border-color: var(--light-accent); }
.section-light .btn-arrow { color: var(--light-accent); }

/* títulos genéricos no claro */
.section-light h2, .section-light h3 { color: var(--light-ink); }

/* Problema (#sobre) no claro */
.section-light .problem-statement { color: var(--light-ink-3); }
.section-light .problem-statement strong { color: var(--light-ink); }
.section-light .failure-row { border-top-color: var(--light-border); }
.section-light .failure-row:last-child { border-bottom-color: var(--light-border); }
.section-light .failure-row:hover { background: rgba(23, 28, 14, 0.03); }
.section-light .failure-index { color: var(--light-accent); }
.section-light .failure-text { color: var(--light-ink); }
.section-light .failure-tag { color: var(--light-ink-3); border-color: var(--light-border); }

/* Corpo docente (#professores) no claro */
.section-light .faculty-note { color: var(--light-ink-3); }

/* ===== CONVITE (banda clara com glow + floaters) ===== */
#convite {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(5rem, 11vw, 9rem);
  background: var(--bg-0);
}
.convite-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0b0f06 url("assets/convite-poster.jpg") center / cover no-repeat;
}
.convite-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.convite-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(78% 72% at 50% 50%, rgba(8, 11, 5, 0.58), rgba(8, 11, 5, 0.78) 100%),
    rgba(8, 11, 5, 0.36);
}
@media (prefers-reduced-motion: reduce) {
  .convite-vid { display: none; }
}
.convite-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Frase em duas vozes: condição discreta (setup) + veredito em display grande.
   O contraste de escala carrega o impacto; a frase-chave ganha o acento lime. */
.convite-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 46rem;
  color: var(--text-1);
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
}
.convite-cond {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.16rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.005em;
  color: var(--text-2);
  max-width: 42ch;
  text-wrap: balance;
}
.convite-cond--2 { margin-top: clamp(1.6rem, 3.4vw, 2.4rem); }
.convite-verdict {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 6.4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
  margin-top: clamp(0.5rem, 1.3vw, 0.9rem);
}
.convite-verdict--no { color: var(--text-2); }
.convite-verdict--yes { color: var(--text-1); }
.convite-verdict--yes em {
  font-style: normal;
  color: var(--lime);
  position: relative;
  white-space: nowrap;
}
.convite-verdict--yes em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.04em;
  height: 0.11em;
  background: var(--lime);
  border-radius: 999px;
}

.convite-cta {
  gap: 0.85rem;
  box-shadow: 0 14px 30px -14px rgba(35, 45, 20, 0.5);
}
.convite-lote {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  color: #1c1f17; background: #fff;
  padding: 0.3rem 0.62rem; border-radius: 999px;
}

/* ============================================================
   03 — BLOCOS DO LABORATÓRIO — horizontal stepped pathway
   ============================================================ */
.lab-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}
.lab-head .section-title { margin-bottom: 0; }
.lab-head-note {
  max-width: 46ch;
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ----- carrossel ----- */
.lab-carousel { position: relative; }
.lab-carousel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}
.lab-carousel-count {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
}
.lab-carousel-count [data-carousel-current] {
  color: var(--lime);
  font-size: 1.05rem;
}
.lab-carousel-arrows { display: inline-flex; gap: 0.6rem; }
.lab-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(243, 241, 232, 0.03);
  color: var(--text-1);
  cursor: pointer;
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out),
              color 180ms var(--ease-out), transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}
.lab-arrow:hover:not(:disabled) {
  background: var(--lime); border-color: var(--lime); color: var(--bg-0);
}
.lab-arrow:active:not(:disabled) { transform: scale(0.93); }
.lab-arrow:disabled { opacity: 0.32; cursor: default; }

.lab-viewport { overflow: hidden; }
.lab-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.lab-slide {
  flex: 0 0 84%;
}
@media (min-width: 40rem)  { .lab-slide { flex-basis: 56%; } }
@media (min-width: 56rem)  { .lab-slide { flex-basis: 42%; } }
@media (min-width: 72rem)  { .lab-slide { flex-basis: 31.5%; } }

.lab-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 280ms var(--ease-out);
}
.lab-card:hover { border-color: var(--border-strong); }

.lab-card-rail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.lab-card-node {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--text-3);
  flex-shrink: 0;
}
.lab-card-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600; line-height: 1;
  letter-spacing: -0.02em; color: var(--lime-soft);
}
.lab-card-key {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lime-soft);
}
.lab-card h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 600; letter-spacing: -0.012em; line-height: 1.25;
  margin-bottom: 0.7rem; text-wrap: balance;
}
.lab-card-desc {
  color: var(--text-3);
  font-size: 0.92rem;
  line-height: 1.55;
}
.lab-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 1.4rem; }
.lab-meta span {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3);
  padding: 0.26rem 0.5rem; border: 1px solid var(--border); border-radius: 3px;
}

.lab-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}
.lab-dot {
  position: relative;
  width: 8px; height: 8px; padding: 0;
  border: 0; border-radius: 50%;
  background: var(--graphite);
  cursor: pointer;
  transition: background-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.lab-dot::after { content: ""; position: absolute; inset: -9px; border-radius: 50%; }
.lab-dot.is-active { background: var(--lime); transform: scale(1.35); }

@media (prefers-reduced-motion: reduce) {
  .lab-track { transition: none; }
}

/* ============================================================
   COUNTDOWN DO EVENTO — clean, muito respiro (números + labels)
   ============================================================ */
.event-countdown {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  text-align: center;
}
.ec-kicker {
  margin: 0 0 clamp(2rem, 4.5vw, 3.25rem);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.countdown {
  display: flex;
  gap: clamp(0.5rem, 3vw, 2.5rem);
  max-width: 54rem;
  margin: 0 auto;
}
.cd-unit {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.cd-num-wrap {
  display: block;
  overflow: hidden;
  line-height: 1;
}
.cd-num {
  display: block;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.8rem, 8.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-1);
  will-change: transform;
}
.cd-label {
  margin-top: clamp(0.6rem, 1.4vw, 1rem);
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  letter-spacing: 0.01em;
  color: var(--text-3);
}
.cd-unit::after {
  content: "";
  width: 100%;
  height: 1px;
  margin-top: clamp(1.1rem, 2.4vw, 1.8rem);
  background: var(--border);
}
.ec-cta { margin-top: clamp(2.75rem, 5.5vw, 4rem); }
@media (max-width: 40rem) {
  .countdown { gap: 0.4rem; }
  .cd-num { font-size: clamp(2.2rem, 15vw, 3.2rem); }
  .cd-label { font-size: 0.78rem; }
  .ec-cta { width: 100%; }
}

/* ============================================================
   05 — CORPO DOCENTE
   ============================================================ */
.faculty-note {
  color: var(--text-3);
  max-width: 52ch;
  margin-top: calc(-1 * clamp(0.9rem, 2.5vw, 1.5rem));
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* ============================================================
   06 — PARA QUEM
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.audience-copy .section-title { margin-bottom: 1.4rem; }
.audience-lead {
  color: var(--text-2);
  max-width: 48ch;
  margin-bottom: 2rem;
}

.audience-item {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 1.25rem 0.25rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.4;
}
.audience-item:last-child { border-bottom: 1px solid var(--border); }
.audience-marker {
  flex-shrink: 0;
  width: 9px; height: 9px;
  transform: rotate(45deg) translateY(-1px);
  border: 1.5px solid var(--lime);
}

@media (max-width: 56rem) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.section-final {
  background:
    radial-gradient(50rem 26rem at 50% 118%, rgba(214, 232, 90, 0.06), transparent 70%),
    var(--bg-1);
  border-top: 1px solid var(--border);
}

/* ===== INGRESSO / VALORES (dois formatos) ===== */
.tickets-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-1);
  text-align: center;
  text-wrap: balance;
  max-width: 22ch;
  margin: clamp(2.75rem, 5.5vw, 4rem) auto 0;
}
.tickets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 52rem;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
  text-align: left;
}
.tkt {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
}
.tkt--feature {
  border-color: rgba(214, 232, 90, 0.45);
  background:
    linear-gradient(180deg, rgba(214, 232, 90, 0.05), transparent 28%),
    var(--surface-1);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.tkt-flag {
  position: absolute;
  top: -0.7rem; left: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--bg-0); background: var(--lime);
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.tkt-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border-strong);
}
.tkt-name {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 600; letter-spacing: -0.01em; color: var(--text-1);
}
.tkt-sub { font-size: 0.85rem; color: var(--text-3); margin-top: 0.15rem; }
.tkt-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-3);
  margin-bottom: 1.4rem;
}
.tkt-lote {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  color: var(--bg-0); background: var(--lime);
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.tkt-price { margin-bottom: 1.4rem; }
.tkt-now {
  display: flex; align-items: baseline; gap: 0.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 600; line-height: 1;
  letter-spacing: -0.02em; color: var(--text-1);
  font-variant-numeric: tabular-nums;
}
.tkt-cur, .tkt-now small { font-size: 0.5em; font-weight: 500; }
.tkt-incl-title {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 0.9rem;
}
.tkt-incl ul { display: grid; gap: 0.55rem; margin-bottom: 1.6rem; }
.tkt-incl li {
  position: relative; padding-left: 1.5rem;
  font-size: 0.9rem; color: var(--text-2); line-height: 1.4;
}
.tkt-incl li::before {
  content: ""; position: absolute; left: 0; top: 0.34em;
  width: 8px; height: 8px; transform: rotate(45deg);
  border: 1.5px solid var(--lime);
}
.tkt-extra { color: var(--text-1); font-weight: 500; }
.tkt-extra::before { background: var(--lime); }
.tkt-cta { display: flex; margin-top: auto; }   /* alinha CTAs na base */

.tickets-trust {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem 1rem;
  max-width: 52rem; margin: 1.5rem auto 0;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.05em;
  color: var(--text-3);
}
.tickets-barcode {
  width: 120px; height: 26px; border-radius: 2px;
  background-image: repeating-linear-gradient(90deg,
    var(--text-3) 0, var(--text-3) 2px, transparent 2px, transparent 4px,
    var(--text-3) 4px, var(--text-3) 5px, transparent 5px, transparent 9px);
  opacity: 0.6;
}

@media (max-width: 48rem) {
  .tickets { grid-template-columns: 1fr; max-width: 30rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: #000000;
  border-top: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}
.footer-inner { padding-bottom: clamp(1.5rem, 3vw, 2.25rem); }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-mark { width: auto; height: 1.7rem; }

.footer-social { display: inline-flex; gap: 0.6rem; }
.footer-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem;
  color: var(--text-2);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(243, 241, 232, 0.03);
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out),
              background-color 180ms var(--ease-out);
}
.footer-social-btn:hover {
  color: var(--bg-0);
  background: var(--lime);
  border-color: var(--lime);
}

.footer-rule {
  display: block; height: 1px;
  background: var(--border);
  margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(0.25rem, 1.5vw, 0.75rem);
}

/* wordmark gigante em contorno (estilo Protocolo) */
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.01em;
  font-size: clamp(2.3rem, 10.5vw, 7rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 241, 232, 0.22);
  text-wrap: balance;
  max-width: 14ch;
  user-select: none;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--border);
}
.footer-legal {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.04em; color: var(--text-3);
}
.footer-links { display: inline-flex; align-items: center; gap: 0.9rem; }
.footer-links a {
  font-size: 0.85rem; color: var(--text-2);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--border-strong);
  transition: color 180ms var(--ease-out), text-decoration-color 180ms var(--ease-out);
}
.footer-links a:hover { color: var(--text-1); text-decoration-color: var(--lime); }
.footer-links-sep { color: var(--text-3); }

/* crédito da agência (Nothing) */
.footer-credit-row {
  margin-top: clamp(1.1rem, 2.5vw, 1.6rem);
  display: flex;
  justify-content: center;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-3);
  opacity: 0.8;
  transition: color 180ms var(--ease-out), opacity 180ms var(--ease-out);
}
.footer-credit:hover { color: var(--text-1); opacity: 1; }
.footer-credit-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-credit-logo { display: block; height: 1.1rem; width: auto; }

@media (max-width: 40rem) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PROVA SOCIAL · faixa de credibilidade (abaixo do hero)
   ============================================================ */
.proof-bar {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(1.5rem, 3.2vw, 2.25rem);
}
.proof-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 3.5rem);
}
.proof-claim {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--text-1);
  max-width: 46ch;
  text-wrap: balance;
}
.proof-claim strong {
  font-weight: 700;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}
.proof-record {
  margin: 0;
  display: grid;
  gap: 0.5rem;
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid var(--border);
}
.proof-record-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.75rem;
  font-family: var(--font-mono);
}
.proof-record dt {
  color: var(--text-2);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.proof-record dd {
  margin: 0;
  color: var(--text-1);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
@media (max-width: 46rem) {
  .proof-record {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: clamp(1rem, 4vw, 1.4rem);
    width: 100%;
  }
}

/* ============================================================
   PROVA SOCIAL · aftermovie + mural de prints (antes da oferta)
   ============================================================ */
.social-proof .section-title { margin-bottom: clamp(2rem, 4vw, 3rem); }

.sp-aftermovie { margin: 0 0 clamp(1.4rem, 3vw, 2.4rem); }
.sp-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #11160a;
}
.sp-frame video,
.sp-frame img,
.sp-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; border: 0; }

/* lite-embed do YouTube: pôster + play; troca pelo iframe no clique */
.sp-yt { position: absolute; inset: 0; display: block; cursor: pointer; }
.sp-yt::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13, 18, 6, 0) 50%, rgba(13, 18, 6, 0.42) 100%);
  transition: opacity 200ms ease;
}
.sp-yt:hover::before { opacity: 0.78; }
.sp-yt:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .sp-yt .sp-play { transition: none; }
}
.sp-aftermovie-cap {
  margin: clamp(0.9rem, 2vw, 1.25rem) 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.6;
  color: #545a40;
  max-width: 100%;
  text-wrap: pretty;
}

/* depoimentos: cards evocando o DM, masonry por colunas */
.sp-quotes-intro {
  margin: clamp(2.2rem, 5vw, 3.4rem) 0 clamp(1.1rem, 2.5vw, 1.6rem);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.55;
  color: var(--light-ink-2);
  max-width: none;
}
.sp-quotes {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 300px;
  column-gap: clamp(0.8rem, 1.6vw, 1.1rem);
}
.sp-quote {
  break-inside: avoid;
  margin: 0 0 clamp(0.8rem, 1.6vw, 1.1rem);
  padding: clamp(1.05rem, 2vw, 1.35rem) clamp(1.15rem, 2.2vw, 1.45rem);
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(23, 28, 14, 0.05);
}
.sp-quote-text {
  margin: 0 0 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--light-ink);
  text-wrap: pretty;
}
.sp-quote-author {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--light-ink);
}
.sp-avatar {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #5c6626;
}
/* avatar com cor própria por depoimento — paleta terrosa fixa (combina com o verde/limão da marca) */
.sp-quote:nth-child(1) .sp-avatar { background: #5c6626; } /* LG · oliva */
.sp-quote:nth-child(2) .sp-avatar { background: #8a4a30; } /* RC · terracota */
.sp-quote:nth-child(3) .sp-avatar { background: #356040; } /* SM · verde */
.sp-quote:nth-child(4) .sp-avatar { background: #3b4578; } /* JB · índigo */
.sp-quote:nth-child(5) .sp-avatar { background: #6e3440; } /* HW · vinho */
.sp-quote:nth-child(6) .sp-avatar { background: #2f5d57; } /* RW · teal */
.sp-quote:nth-child(7) .sp-avatar { background: #7a5f2c; } /* EF · bronze */
.sp-play {
  position: absolute; inset: 0; margin: auto;
  z-index: 2;
  width: clamp(58px, 9vw, 78px); height: clamp(58px, 9vw, 78px);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 12px 34px -10px rgba(214, 232, 90, 0.5);
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}
.sp-yt:hover .sp-play,
.sp-yt:focus-visible .sp-play { transform: scale(1.06); }
.sp-play::after {
  content: "";
  position: absolute; inset: 0; margin: auto;
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #0D1206;
  transform: translateX(2px);
}

/* ============================================================
   Barra de CTA fixa (sticky) — aparece após o hero
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(13, 18, 6, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding-block: 0.7rem;
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
  transform: translateY(115%);
  visibility: hidden;
  transition: transform 380ms var(--ease-out), visibility 380ms;
}
.sticky-cta.is-visible { transform: translateY(0); visibility: visible; }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 3vw, 2rem);
}
.sticky-cta-info {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-2);
}
.sticky-cta-info strong { color: var(--lime); font-weight: 400; }
.sticky-cta-btn { flex: none; }
@media (max-width: 34rem) {
  .sticky-cta-info { font-size: 0.7rem; line-height: 1.3; }
  .sticky-cta-btn { padding-left: 1.1rem; padding-right: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: visibility 0ms; }
}

/* ============================================================
   Garantia (reversão de risco) na seção de oferta
   ============================================================ */
.tickets-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: clamp(1.4rem, 3vw, 2rem) auto 0;
  max-width: 46rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.45;
  color: var(--text-2);
}
.tickets-guarantee strong { color: var(--lime); font-weight: 600; }
.tickets-fn-mark { color: var(--lime); font-weight: 700; }
.tickets-fineprint {
  margin: 0.55rem auto 0;
  max-width: 46rem;
  text-align: center;
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  line-height: 1.45;
  color: var(--text-3);
}
.tickets-guarantee-ic {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(214, 232, 90, 0.4);
  color: var(--lime);
  font-size: 1rem;
}

/* ============================================================
   FAQ (acordeão nativo <details>)
   ============================================================ */
.faq-list {
  max-width: 62rem;
  margin: clamp(1.8rem, 3.8vw, 2.6rem) 0 0;
}
.faq-item { border-bottom: 1px solid var(--light-border); }
.faq-item:first-child { border-top: 1px solid var(--light-border); }
.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.3rem, 2.8vw, 1.75rem) 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--light-ink);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }
.faq-mark {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
}
.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  background: var(--light-ink-2);
  transition: transform 240ms var(--ease-out), opacity 240ms var(--ease-out);
}
.faq-mark::before { top: 9px; left: 1px; right: 1px; height: 2px; }
.faq-mark::after { left: 9px; top: 1px; bottom: 1px; width: 2px; }
.faq-item[open] .faq-mark::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  padding: 0.35rem 0 clamp(1.8rem, 3.6vw, 2.4rem);
  max-width: 72ch;
}
.faq-a p {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.45vw, 1.1rem);
  line-height: 1.74;
  color: var(--light-ink-2);
}
.faq-a p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-mark::before, .faq-mark::after { transition: none; }
}

/* ============================================================
   Programação (timeline do dia)
   ============================================================ */
.prog-note {
  color: var(--text-2);
  max-width: 60ch;
  margin: 0 0 clamp(2rem, 4.2vw, 3rem);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.6;
}

/* cabeçalho: título à esquerda, ficha do evento à direita */
.prog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.4rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.3rem, 2.6vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--border);
}
.prog-head-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
}
.prog-title {
  margin-bottom: 0;
  max-width: 18ch;
}
.prog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
  row-gap: 0.85rem;
  margin: 0;
  padding-bottom: 0.35rem;
}
.prog-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}
.prog-meta dt {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.prog-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.25vw, 1.06rem);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-1);
  white-space: nowrap;
}

/* grade do dia: linhas full width — hora · tema · professor */
.prog-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: none;
}
.prog-item {
  display: grid;
  grid-template-columns: clamp(100px, 11vw, 132px) minmax(0, 1fr) clamp(190px, 25vw, 340px);
  align-items: center;
  column-gap: clamp(1.2rem, 3.4vw, 3rem);
  padding: clamp(1.1rem, 2.5vw, 1.7rem) clamp(0.5rem, 1.5vw, 1.1rem);
  border-top: 1px solid var(--border);
  position: relative;
  isolation: isolate;
  transition: background 450ms var(--ease-out);
}
.prog-list .prog-item:last-child { border-bottom: 1px solid var(--border); }
.prog-item--confirmed:hover {
  background: linear-gradient(90deg, rgba(214, 232, 90, 0.07), rgba(214, 232, 90, 0.012) 58%, transparent);
}

.prog-time {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.prog-time-start {
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--lime);
}
.prog-time-end {
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--text-2);
}
.prog-main { min-width: 0; }
.prog-theme {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-1);
  text-wrap: balance;
}

.prog-speaker {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}
.prog-speaker-name {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-1);
  text-wrap: balance;
}

/* professor confirmado, tema em aberto */
.prog-item--tba .prog-theme { color: var(--text-3); font-weight: 500; }

/* sessão a confirmar */
.prog-item--pending .prog-time-start { color: var(--text-2); }
.prog-item--pending .prog-theme { color: var(--text-3); font-weight: 500; }
.prog-speaker-name--tba {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* intervalo (almoço) */
.prog-item--break .prog-time-start { color: var(--text-3); font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
.prog-item--break .prog-theme { color: var(--text-3); font-weight: 500; font-style: italic; }
.prog-break-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

@media (prefers-reduced-motion: reduce) {
  .prog-item { transition: none; }
}

/* responsivo */
@media (max-width: 52rem) {
  .prog-head { align-items: flex-start; }
  .prog-meta { width: 100%; justify-content: flex-start; padding-bottom: 0; }
}
@media (max-width: 52rem) {
  .prog-item {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
    padding: 1.25rem 0.15rem;
  }
  .prog-time { flex-direction: row; align-items: baseline; gap: 0.5rem; }
  .prog-time-start, .prog-time-end { font-size: 1.35rem; }
  .prog-theme, .prog-speaker-name:not(.prog-speaker-name--tba) { font-size: clamp(1.15rem, 5.2vw, 1.45rem); }
  .prog-speaker { justify-content: flex-start; text-align: left; }
}

/* ============================================================
   Galeria de estrutura/produção (fotos reais dos Labs)
   ============================================================ */
.lab-gallery { margin: clamp(2.2rem, 4.5vw, 3.4rem) 0 0; }
.lab-gallery-head {
  margin: 0 0 clamp(1rem, 2.2vw, 1.4rem);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #545a40;
}
.lab-row {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(0.5rem, 1.2vw, 0.9rem);
}
.lab-shot {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #11160a;
}
.lab-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 34rem) {
  .lab-row { grid-template-columns: repeat(2, 1fr); }
}

/* Marquee infinito (InfiniteSlider nativo). Construído só via JS quando há
   movimento permitido; sem JS / reduced-motion a grade .lab-row acima fica
   intacta (visível e operável). Loop perfeito: conjunto duplicado + translateX(-50%),
   com o espaço entre fotos como margin (não flex-gap) p/ a emenda casar exata. */
.lab-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
/* duas faixas: espaço entre os marquees (e no fallback estático, entre as .lab-row) */
.lab-gallery.is-marquee .lab-marquee + .lab-marquee { margin-top: clamp(0.5rem, 1.2vw, 0.9rem); }
.lab-row + .lab-row { margin-top: clamp(0.5rem, 1.2vw, 0.9rem); }
.lab-gallery.is-marquee .lab-row {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 0;
  will-change: transform;
}
.lab-gallery.is-marquee .lab-shot {
  flex: 0 0 auto;
  height: clamp(136px, 15vw, 184px);
  aspect-ratio: auto;
  margin-inline-end: clamp(0.5rem, 1.2vw, 0.9rem);
}
.lab-gallery.is-marquee .lab-shot img { width: auto; height: 100%; }
@media (max-width: 34rem) {
  .lab-gallery.is-marquee .lab-shot { height: clamp(116px, 30vw, 142px); }
}

/* ============================================================
   Corpo docente — team showcase (foto P&B -> cor no hover, lista sincronizada)
   ============================================================ */
.team {
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 4vw, 2.6rem);
  margin: clamp(1.8rem, 3.5vw, 2.6rem) 0 0;
}
@media (min-width: 50rem) {
  /* desktop: mosaico de fotos à ESQUERDA + lista de nomes à DIREITA */
  .team { flex-direction: row; align-items: flex-start; gap: clamp(2rem, 5vw, 4rem); }
}
/* mosaico de 3 colunas escalonadas (larguras levemente diferentes, como a referência) */
.team-photos {
  display: flex;
  justify-content: center;
  gap: clamp(0.45rem, 1.1vw, 0.7rem);
  flex: none;
}
.team-col {
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 1.1vw, 0.7rem);
}
.team-col--2 { margin-top: clamp(36px, 6vw, 64px); }
.team-col--3 { margin-top: clamp(18px, 3vw, 30px); }
.team-photo {
  margin: 0;
  aspect-ratio: 31 / 33;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #e4e8d6;
  transition: opacity 400ms var(--ease-out);
}
.team-col--1 .team-photo { width: clamp(112px, 14.8vw, 178px); }
.team-col--2 .team-photo { width: clamp(124px, 16.6vw, 204px); }
.team-col--3 .team-photo { width: clamp(118px, 15.6vw, 192px); }
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) brightness(0.86);
  transition: filter 500ms var(--ease-out);
}
.team.is-active .team-photo:not(.is-active) { opacity: 0.5; }
.team-photo.is-active img { filter: grayscale(0) brightness(1); }
/* Zanone: foto de origem menor (recorte de paisagem) -> leve punch de contraste p/ casar com as nítidas */
.team-photo[data-member="zanone"] img { filter: grayscale(1) brightness(0.84) contrast(1.05); }
.team-photo[data-member="zanone"].is-active img { filter: grayscale(0) brightness(1) contrast(1.03); }

.team-list {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.95rem, 2.2vw, 1.35rem);
}
.team-row { transition: opacity 300ms var(--ease-out); cursor: pointer; }
.team-row--pending { cursor: default; }
.team-list.is-active .team-row:not(.is-active) { opacity: 0.45; }
.team-row-head { display: flex; align-items: center; gap: 0.65rem; }
.team-marker {
  flex: none;
  width: 16px;
  height: 11px;
  border-radius: 5px;
  background: rgba(23, 28, 14, 0.22);
  transition: width 300ms var(--ease-out), background-color 300ms var(--ease-out);
}
.team-row:not(.team-row--pending):hover .team-marker,
.team-row.is-active .team-marker { width: 24px; background: var(--light-accent); }
.team-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--light-ink);
  transition: color 300ms var(--ease-out);
}
.team-row--pending .team-name { color: var(--light-ink-3); }
/* social: escondido, desliza no hover/ativo (como a referência) */
.team-ig {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem;
  margin: -0.5rem -0.35rem -0.5rem -0.3rem;
  color: var(--light-ink-3);
  opacity: 0;
  transform: translateX(-6px);
  pointer-events: none;
  transition: color 180ms var(--ease-out), opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.team-row:hover .team-ig,
.team-row.is-active .team-ig,
.team-row:focus-within .team-ig { opacity: 1; transform: translateX(0); pointer-events: auto; }
.team-ig:hover, .team-ig:focus-visible { color: var(--light-accent); }
.team-ig svg { display: block; }
.team-role {
  display: block;
  margin: 0.5rem 0 0;
  padding-left: calc(16px + 0.65rem);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5e6448;
}
/* bio: escondida, revela no hover/ativo (cliente escolheu "bio só no hover") */
.team-bio {
  display: block;
  padding-left: calc(16px + 0.65rem);
  max-width: 42ch;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--light-ink-2);
  max-height: 0;
  opacity: 0;
  margin: 0;
  overflow: hidden;
  transition: max-height 360ms var(--ease-out), opacity 280ms var(--ease-out), margin-top 360ms var(--ease-out);
}
.team-row:hover .team-bio,
.team-row.is-active .team-bio,
.team-row:focus-within .team-bio { max-height: 8rem; opacity: 1; margin-top: 0.5rem; }
@media (max-width: 50rem) {
  /* mobile: mosaico centralizado em cima (rola na horizontal se faltar espaço), lista embaixo */
  .team-photos { overflow-x: auto; padding-bottom: 0.25rem; }
}
@media (hover: none) {
  /* touch: sem hover -> foto colorida + social e bio visíveis (senão somem) */
  .team-photo img { filter: grayscale(0) brightness(1); }
  .team-photo[data-member="zanone"] img { filter: grayscale(0) brightness(1) contrast(1.03); }
  .team-ig { opacity: 1; transform: none; pointer-events: auto; }
  .team-bio { max-height: 8rem; opacity: 1; margin-top: 0.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .team-photo, .team-photo img, .team-row, .team-marker, .team-ig, .team-bio { transition: none; }
}

/* ============================================================
   Certificado (destaque de confiança após o preço)
   ============================================================ */
.cert-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 46rem;
}
.cert-seal {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(81, 112, 42, 0.35);
  color: var(--light-accent);
  margin-bottom: clamp(1.1rem, 2.5vw, 1.5rem);
}
.cert-q {
  margin: 0 0 clamp(0.9rem, 2.2vw, 1.3rem);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--light-ink);
  text-wrap: balance;
}
.cert-a {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.62;
  color: var(--light-ink-2);
  max-width: 42ch;
  text-wrap: pretty;
}
.cert-a strong { color: var(--light-accent); font-weight: 700; }

/* ============================================================
   PROTÓTIPOS inspirados na referência (Protocolo Pink)
   ============================================================ */

/* 1 — Barra de progresso de lote.
   PRÉ-LANÇAMENTO: o fill mostra o ESTÁGIO de preço (1º lote = início, menor preço),
   NÃO um % de vendas. Ao abrir vendas, trocar `.lote-bar-fill { width }` pelo % real. */
.lote-bar {
  width: min(100%, 30rem);
  margin: clamp(1.1rem, 2.4vw, 1.6rem) auto clamp(2.2rem, 4.5vw, 3.2rem);
  padding: clamp(1rem, 2vw, 1.3rem) clamp(1.1rem, 2.2vw, 1.5rem);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: rgba(3, 4, 2, 0.35);
  text-align: left;
}
.lote-bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.lote-bar-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.lote-bar-dot {
  flex: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(214, 232, 90, 0.18);
  animation: lotePulse 2.2s var(--ease-out) infinite;
}
.lote-bar-price {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-2);
  white-space: nowrap;
}
.lote-bar-price strong { color: var(--text-1); font-size: 0.95rem; }
.lote-bar-track {
  height: 8px;
  border-radius: 999px;
  background: var(--surface-1);
  overflow: hidden;
}
.lote-bar-fill {
  width: 83%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime-soft), var(--lime));
}
/* Botão do Agente de Vendas IA da Hotmart (wpp-button): sobe pra não cobrir a barra fixa de CTA */
wpp-button { bottom: 100px !important; right: 18px !important; }
.lote-bar-sold {
  margin: 0 0 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--lime);
  text-align: right;
}
.lote-bar-note {
  margin: 0.6rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--text-3);
}
@keyframes lotePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(214, 232, 90, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(214, 232, 90, 0.04); }
}
@media (prefers-reduced-motion: reduce) {
  .lote-bar-dot { animation: none; }
}

/* 2 — Faixa cinematográfica full-bleed */
.cine-band {
  position: relative;
  min-height: clamp(420px, 68vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-0);
  border-block: 1px solid var(--border);
}
.cine-band-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.cine-band-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg,
    rgba(3, 4, 2, 0.94) 0%, rgba(3, 4, 2, 0.55) 38%,
    rgba(3, 4, 2, 0.28) 66%, rgba(3, 4, 2, 0.55) 100%);
}
.cine-band-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter);
}
.cine-band-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}
.cine-band-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text-1);
  max-width: 20ch;
  text-wrap: balance;
}

/* ============================================================
   Banca · marquee infinito de fotos dos professores (substitui o headliner)
   ============================================================ */
.prof-strip {
  background: var(--bg-1);
  border-block: 1px solid var(--border);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.prof-strip-head {
  text-align: center;
  margin: 0 0 clamp(1.6rem, 3.2vw, 2.5rem);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.prof-marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.prof-marquee-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: profScroll 40s linear infinite;
  will-change: transform;
}
@keyframes profScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.prof-marquee:hover .prof-marquee-track { animation-play-state: paused; }
.prof-marquee-item {
  flex: none;
  width: clamp(165px, 20vw, 260px);
  margin-inline-end: clamp(0.7rem, 1.5vw, 1.3rem);
}
.prof-marquee-photo {
  display: block;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
}
.prof-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 450ms var(--ease-out), filter 450ms var(--ease-out);
}
.prof-marquee-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}
.prof-marquee-name {
  display: block;
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-1);
  transition: color 300ms var(--ease-out);
  text-wrap: balance;
}
.prof-marquee-item:hover .prof-marquee-name {
  color: var(--lime);
}
@media (prefers-reduced-motion: reduce) {
  .prof-marquee-track { animation: none; }
}

/* ============================================================ PÁGINAS LEGAIS (termos / privacidade) */
.legal-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
  position: sticky;
  top: 0;
  z-index: 110;
}
.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  padding-block: 0.85rem;
}
.legal-brand img {
  width: clamp(74px, 9vw, 98px);
  height: auto;
}
.legal-back {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 200ms var(--ease-out);
}
.legal-back:hover { color: var(--text-1); }
.legal-back .legal-back-arrow { transition: transform 200ms var(--ease-out); }
.legal-back:hover .legal-back-arrow { transform: translateX(-3px); }

.legal {
  max-width: 50rem;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}
.legal-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-soft);
  margin-bottom: 1rem;
}
.legal-title {
  font-size: clamp(2.1rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--text-1);
}
.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 1.1rem;
  padding-bottom: clamp(1.6rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--border);
}
.legal-intro {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  font-size: 1.08rem;
  color: var(--text-1);
}
.legal h2 {
  font-size: clamp(1.18rem, 2.4vw, 1.45rem);
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-top: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
  scroll-margin-top: 5.5rem;
}
.legal h2 .legal-num {
  font-family: var(--font-mono);
  font-size: 0.78em;
  color: var(--lime-soft);
  margin-right: 0.55rem;
}
.legal p { margin-bottom: 1rem; color: var(--text-2); }
.legal ul { margin: 0 0 1.1rem; padding: 0; }
.legal li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.6rem;
  color: var(--text-2);
}
.legal li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-soft);
}
.legal strong { color: var(--text-1); font-weight: 600; }
.legal-inline {
  color: var(--lime-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms var(--ease-out);
}
.legal-inline:hover { color: var(--lime); }

.legal-foot {
  border-top: 1px solid var(--border);
  background: var(--bg-1);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.legal-foot-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.legal-foot p {
  font-size: 0.82rem;
  color: var(--text-3);
  margin: 0;
}
.legal-foot nav {
  display: flex;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.legal-foot nav a {
  color: var(--text-3);
  transition: color 200ms var(--ease-out);
}
.legal-foot nav a:hover { color: var(--lime-soft); }
.legal-foot nav a[aria-current="page"] { color: var(--text-1); }

/* ============================================================ HOUSE-AD NOTHING (rodapé) */
.footer-credit-row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.7rem;
}
.footer-credit-sep { color: var(--text-3); opacity: 0.5; font-size: 0.72rem; }
.footer-credit-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--text-3);
  transition: color 200ms var(--ease-out);
}
.footer-credit-cta:hover { color: var(--lime-soft); }

/* ============================================================ BANNER DE COOKIES (LGPD) */
.cookie-consent {
  position: fixed;
  left: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 150;
  width: min(440px, calc(100vw - 2rem));
  padding: 1.15rem 1.25rem 1.2rem;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  transform: translateY(135%);
  opacity: 0;
  transition: transform 480ms var(--ease-out), opacity 480ms var(--ease-out);
}
.cookie-consent.is-visible { transform: translateY(0); opacity: 1; }
.cookie-consent-text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-2);
}
.cookie-consent-text a {
  color: var(--lime-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent-text a:hover { color: var(--lime); }
.cookie-consent-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}
.cookie-consent-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 0.6rem 1.15rem;
  border-radius: 7px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out),
    border-color 200ms var(--ease-out), transform 120ms var(--ease-out);
}
.cookie-consent-btn:active { transform: scale(0.97); }
.cookie-consent-reject {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-strong);
}
.cookie-consent-reject:hover { color: var(--text-1); border-color: var(--text-3); }
.cookie-consent-accept {
  background: var(--lime);
  color: var(--bg-0);
  font-weight: 700;
}
.cookie-consent-accept:hover { background: var(--lime-soft); }
@media (max-width: 30rem) {
  .cookie-consent { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; width: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-consent { transform: none; transition: opacity 200ms linear; }
  .cookie-consent.is-visible { transform: none; }
}

/* ============================================================ POPUP DE CAPTAÇÃO (form LeadLovers) */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 1000; /* topo de tudo: acima da barra fixa e do header */
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  background: rgba(8, 11, 4, 0.74);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 260ms var(--ease-out);
}
.lead-popup.is-open { display: flex; opacity: 1; }
.lead-popup-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6);
  transform: translateY(8px) scale(0.97);
  transition: transform 320ms var(--ease-out);
}
.lead-popup.is-open .lead-popup-card { transform: none; }
.lead-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  transition: color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.lead-popup-close:hover { color: var(--text-1); border-color: var(--text-3); }
.lead-popup-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-soft);
  margin: 0 0 0.7rem;
}
.lead-popup-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin: 0 0 0.6rem;
}
.lead-popup-sub {
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0 0 1.4rem;
}
/* override do form LeadLovers — escopado no popup, nao toca o resto do site */
.lead-popup .llformCustom { font-family: var(--font-body); background: transparent !important; }
.lead-popup .llformCustom > div { margin-bottom: 0.85rem; }
.lead-popup .llformCustom label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3) !important;
}
.lead-popup .llformCustom input {
  width: 100%;
  background-color: var(--bg-0) !important; /* vence o #fff !important do formCustom.css */
  border: 1px solid var(--border-strong) !important;
  border-radius: 9px !important;
  box-shadow: none !important;
  color: var(--text-1) !important;
  padding: 0.72rem 0.9rem;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 200ms var(--ease-out);
}
.lead-popup .llformCustom input::placeholder { color: var(--text-3) !important; }
.lead-popup .llformCustom input:focus { outline: none; border-color: var(--lime) !important; box-shadow: none !important; }
.lead-popup .llformCustom select {
  width: 100%;
  background-color: var(--bg-0) !important;
  border: 1px solid var(--border-strong) !important;
  border-radius: 9px !important;
  box-shadow: none !important;
  color: var(--text-1) !important;
  padding: 0.72rem 2.4rem 0.72rem 0.9rem;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2397987F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.9rem center !important;
  transition: border-color 200ms var(--ease-out);
}
.lead-popup .llformCustom select:focus { outline: none; border-color: var(--lime) !important; box-shadow: none !important; }
.lead-popup .llformCustom select option { background-color: var(--bg-1); color: var(--text-1); }
.lead-popup .llformCustom .button-bar { margin-top: 1.1rem; margin-bottom: 0; }
.lead-popup .llformCustom .button-bar button {
  width: 100%;
  background: var(--lime) !important;
  color: var(--bg-0) !important;
  border: none !important;
  border-radius: 9px;
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 200ms var(--ease-out), transform 120ms var(--ease-out);
}
.lead-popup .llformCustom .button-bar button:hover { background: var(--lime-soft) !important; }
.lead-popup .llformCustom .button-bar button:active { transform: scale(0.98); }
.lead-popup .llformCustom .field-error { color: #ff9090; font-size: 0.78rem; margin-top: 0.3rem; }
.lead-popup-fineprint {
  margin: 1.1rem 0 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--text-3);
  text-align: center;
}
.lead-popup-fineprint a { color: var(--lime-soft); text-decoration: underline; text-underline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .lead-popup { transition: opacity 200ms linear; }
  .lead-popup-card { transform: none; transition: none; }
}

