/* =============================================================
   Web Cinematográfica · LP de venda
   Tokens: briefing.md seção 8. Acento contido, chassi neutro.
   ============================================================= */

:root {
  --surface-sunken: #0D0D0D;
  --surface-base: #141414;
  --surface-raised: #1C1C1C;
  --surface-overlay: #242424;

  --border-subtle: #262626;
  --border-strong: #363636;

  --text-primary: #EEEDED;
  --text-secondary: #EEEDED; /* era #A3A3A3. Paulo 02/09: "cinza não fica bom como cor de texto se tem um fundo com alguma coisa atrás". Texto corrido = branco em toda a página */
  --text-muted: #8A8A8A;

  --accent: #DC5808; /* laranja da logo, medido em 28/08/2026 (era #EA5420, Helix) */
  --accent-hover: #F06A1E;
  --accent-muted: rgba(220, 88, 8, 0.12);
  --accent-muted-strong: rgba(220, 88, 8, 0.22);

  --shell-max: 1280px;
  --shell-pad: clamp(20px, 5vw, 64px);
  --section-pad-y: clamp(72px, 12vh, 140px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================================
   Reset + base
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--surface-sunken);
  color: var(--text-primary);
  font-family: "Lexend", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
pre { font-family: "SFMono-Regular", "Consolas", "Menlo", monospace; margin: 0; }
strong { font-weight: 600; color: var(--text-primary); }

::selection { background: var(--accent); color: var(--text-primary); }

/* =============================================================
   Reveal (IntersectionObserver, adicionado por JS)
   ============================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Reveal Cortina (efeitos/reveal-cortina, Loja de Efeitos Helix): tokens na paleta da LP.
   Os cards .modulo não têm box-shadow, então o clip-path pode ficar no próprio card. */
.fx-reveal-cortina { --fx-accent: var(--accent); --fx-wipe-dur: 0.85s; --fx-stagger: 0.08s; }
/* will-change do efeito fica como o README manda: clip-path e transform no compositor (Paulo 02/09: "parece 15 fps" quando eu tinha desligado) */

/* =============================================================
   Animações de entrada (animacoes.js prepara, main.js dispara .is-visible)
   Paulo 02/09/2026: cards, linha do tempo e textos com animação.
   ============================================================= */
/* títulos: palavra por palavra, subindo de dentro de uma máscara */
.reveal--palavras { transform: none; opacity: 1; }
.reveal--palavras .palavra { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0.06em 0 0.12em; margin: -0.06em 0 -0.12em; }
.reveal--palavras .palavra__in {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--w, 0) * 45ms);
}
.reveal--palavras.is-visible .palavra__in { transform: none; }
/* cards: sobem e crescem */
.reveal--card { transform: translateY(28px) scale(0.97); transition-duration: 1000ms, 1000ms; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }
.reveal--card.is-visible { transform: none; }
/* linha de produção (Paulo 02/09): uma BOLINHA de luz corre de antes do 01 até o 09 em 5,5 s e, na
   passagem, acende o número e o nome de cada etapa, que ficam acesos. O passo i acende em
   5500ms * (i + 0,5) / 9, quando a bolinha cruza o centro dele. A bolinha vive num trilho absoluto
   com overflow hidden (.pipeline__trilho): não estoura o .pipeline nem cria barra de rolagem. */
.pipeline .pipeline__num, .pipeline .pipeline__label { opacity: 0.35; transition: opacity 500ms var(--ease-out), color 500ms var(--ease-out), border-color 500ms var(--ease-out), box-shadow 900ms var(--ease-out); }
.pipeline .pipeline__step::after { opacity: 0.35; transition: opacity 500ms var(--ease-out), background 500ms var(--ease-out); }
.pipeline .pipeline__num { transition-delay: calc(5500ms * (var(--i, 0) + 0.5) / 9); }
.pipeline .pipeline__label { transition-delay: calc(5500ms * (var(--i, 0) + 0.5) / 9 + 80ms); }
.pipeline .pipeline__step::after { transition-delay: calc(5500ms * (var(--i, 0) + 0.9) / 9); }
.pipeline.is-visible .pipeline__num { opacity: 1; color: var(--accent); border-color: var(--accent); box-shadow: 0 0 14px rgba(220, 88, 8, 0.45), inset 0 0 8px rgba(220, 88, 8, 0.25); animation: pipeline-flash 700ms var(--ease-out) both; animation-delay: calc(5500ms * (var(--i, 0) + 0.5) / 9); }
.pipeline.is-visible .pipeline__label { opacity: 1; color: var(--text-primary); }
.pipeline.is-visible .pipeline__step::after { opacity: 1; background: linear-gradient(90deg, var(--accent), rgba(220, 88, 8, 0.15)); }
@keyframes pipeline-flash {
  0% { box-shadow: 0 0 0 0 rgba(255, 176, 112, 0.9), 0 0 26px rgba(255, 140, 60, 0.9); color: #FFB070; border-color: #FFB070; }
  100% { box-shadow: 0 0 14px rgba(220, 88, 8, 0.45), inset 0 0 8px rgba(220, 88, 8, 0.25); }
}
.pipeline__trilho { position: absolute; inset: 0; overflow: hidden; pointer-events: none; border-radius: inherit; }
.pipeline__beam {
  position: absolute; top: 43px; left: -24px; width: 10px; height: 10px; border-radius: 50%; opacity: 0;
  background: radial-gradient(circle, #FFF3E8 0%, #FFB070 40%, rgba(255, 106, 20, 0) 75%);
  box-shadow: 0 0 8px 3px rgba(255, 150, 70, 0.75), 0 0 26px 8px rgba(255, 106, 20, 0.35);
}
.pipeline__beam::before { /* rastro curto atrás da bolinha */
  content: ""; position: absolute; right: 6px; top: 4px; width: 42px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 140, 60, 0), rgba(255, 176, 112, 0.7));
}
.pipeline.is-visible .pipeline__beam { animation: pipeline-beam 5500ms linear both; }
@keyframes pipeline-beam {
  0% { left: -24px; opacity: 0; }
  4% { opacity: 1; }
  95% { opacity: 1; }
  100% { left: calc(100% - 12px); opacity: 0; }
}
@media (max-width: 899px) { /* em coluna (celular) não há trilho horizontal: só a cascata de acender */
  .pipeline__trilho { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal--palavras .palavra__in, .reveal--card, .pipeline .pipeline__num, .pipeline .pipeline__label, .pipeline .pipeline__step::after { opacity: 1; transform: none; transition: none; animation: none; }
  .pipeline__trilho { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================================
   Nav (fixa, thin, blur)
   ============================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px var(--shell-pad);
  background: transparent;
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 13, 13, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border-subtle);
}
.nav__inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brandmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brandmark__img { display: none; width: auto; }
.brandmark[data-logo="wordmark"] .brandmark__img--wordmark { display: block; height: 58px; }
.brandmark[data-logo="selo"] .brandmark__img--selo { display: block; height: 64px; }
@media (max-width: 640px) {
  .brandmark[data-logo="wordmark"] .brandmark__img--wordmark { height: 46px; }
  .brandmark[data-logo="selo"] .brandmark__img--selo { height: 52px; }
}
.nav__cta {
  padding: 9px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
}
.nav__cta:hover {
  border-color: var(--accent);
  background: var(--accent-muted);
}

/* =============================================================
   S1 · HERO SLOT VAZIO
   Placeholder honesto, sem tentativa de direção visual.
   ============================================================= */

.hero-slot {
  position: relative;
  min-height: 100vh;
  background: var(--surface-sunken);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px var(--shell-pad) 60px;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.hero-slot__stamp {
  position: absolute;
  top: 84px;
  left: var(--shell-pad);
  padding: 6px 12px;
  border: 1px dashed var(--border-strong);
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(28, 28, 28, 0.5);
}
.hero-slot__center {
  max-width: 900px;
  text-align: center;
}
.hero-slot__headline {
  font-family: "Lexend", sans-serif;
  font-weight: 200;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-slot__note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.hero-slot__hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-slot__hint-line {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--text-muted) 0%, transparent 100%);
  animation: hint-pulse 2400ms ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slot__hint-line { animation: none; }
}

/* =============================================================
   Section base
   ============================================================= */

.section {
  padding: var(--section-pad-y) var(--shell-pad);
  position: relative;
}
.section__inner {
  max-width: var(--shell-max);
  margin: 0 auto;
}
.section__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 20px;
  font-weight: 500;
}
.section__title {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  letter-spacing: -0.015em;
  font-size: clamp(2.3rem, 4.8vw, 4rem); /* Paulo 02/09: "a head da seção tem que ser maior, mais evidente, em laranja" (era 1.8 a 3rem, branco) */
  line-height: 1.1;
  color: var(--accent);
  margin: 0 0 24px;
  text-wrap: balance;
  max-width: 26ch;
}
.section__sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--text-secondary);
  margin: 0 0 48px;
  max-width: 60ch;
}

/* =============================================================
   Buttons
   ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  border: 1px solid transparent;
  will-change: transform;
}
.btn--primary {
  background: var(--accent);
  color: #0D0D0D;
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(220, 88, 8, 0.3);
}
.btn--lg { padding: 18px 40px; font-size: 17px; }
.btn--xl { padding: 22px 56px; font-size: 19px; }
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* =============================================================
   Token literal (placeholder visível de pendência)
   ============================================================= */

.token {
  display: inline-block;
  padding: 2px 10px;
  background: var(--accent-muted);
  border: 1px dashed var(--accent);
  border-radius: 6px;
  color: var(--accent-hover);
  font-family: "SFMono-Regular", "Consolas", "Menlo", monospace;
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
}
.token--price {
  padding: 12px 24px;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: "Lexend", sans-serif;
  font-weight: 200;
  letter-spacing: -0.02em;
  background: var(--accent-muted-strong);
}

/* =============================================================
   S2 · Prova
   ============================================================= */

.prova__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}
/* 5 cards (02/09): flex com quebra e centralização, 3 por linha e a última linha (2) no centro */
@media (min-width: 720px) {
  .prova__grid { display: flex; flex-wrap: wrap; justify-content: center; }
  .prova__grid > .site-card { width: calc((100% - 24px) / 2); }
}
@media (min-width: 1024px) {
  .prova__grid { gap: 32px; }
  .prova__grid > .site-card { width: calc((100% - 64px) / 3); }
}

.site-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.site-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .site-card:hover { transform: none; }
}

.site-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}
.site-card__still,
.site-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}
.site-card__still {
  /* Ken Burns lento: dá "movimento" a still sem virar loop chamativo */
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .site-card__still { animation: none; }
}
.site-card:hover .site-card__video,
.site-card:hover .site-card__still {
  transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .site-card:hover .site-card__video,
  .site-card:hover .site-card__still { transform: none; }
}

.site-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(13, 13, 13, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  z-index: 2;
}

.site-card__meta {
  padding: 20px 22px 22px;
}
.site-card__name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.site-card__concept {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.site-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  transition: color 200ms var(--ease-out), gap 200ms var(--ease-out);
  /* área de toque de 44px sem mexer no layout (QA celular 02/09/2026: media 74x21) */
  padding: 12px 0;
  margin: -12px 0;
}
.site-card__cta:hover {
  color: var(--accent-hover);
  gap: 10px;
}
.site-card__arrow { display: inline-block; }

.prova__micro {
  margin-top: 40px;
  color: var(--text-primary);
  font-size: 14px;
  max-width: 70ch;
  line-height: 1.65;
}

/* =============================================================
   S3 · Posicionamento
   ============================================================= */

.posicionamento { background: var(--surface-base); }

/* Faixa S2 + S3 com UM fundo (fundo-onda.js): canvas sticky de 100vh atrás das duas
   seções, que ficam transparentes. Paulo 02/09: fundo único e contínuo, mais escuro,
   texto branco. ?onda=0 desliga. */
.faixa-onda, .faixa-grade, .faixa-fluido { position: relative; }
.faixa-fluido { background: #0D0D0D; }
.faixa-onda { background: #0B0B0B; }
.faixa-grade { background: #0E0E10; }
.faixa-onda > .section, .faixa-grade > .section, .faixa-fluido > .section { background: transparent; position: relative; z-index: 1; }
/* emendas das faixas fluidas: fade de 140px a partir da cor das vizinhas no topo e no pé */
.faixa-fluido::before, .faixa-fluido::after {
  content: ""; position: absolute; left: 0; right: 0; height: 140px; z-index: 1; pointer-events: none;
}
.faixa-fluido::before { top: 0; background: linear-gradient(to bottom, var(--surface-sunken), rgba(13, 13, 13, 0)); }
.faixa-fluido::after { bottom: 0; background: linear-gradient(to top, var(--surface-sunken), rgba(13, 13, 13, 0)); }
.fundo-fluido { image-rendering: pixelated; }
.faixa-onda::after { /* emenda com a S4 */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 160px; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0), var(--surface-sunken));
}
/* camada do fundo grudado: a camada absoluta tem a altura EXATA da faixa e o canvas sticky vive dentro dela.
   (Antes o canvas era filho direto com margin-bottom: -100vh, e a margem negativa deixava ele vazar 100vh
   por baixo da S4 e da S5: a "transparência" que o Paulo circulou na Entrega em 02/09.) */
.faixa__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.fundo-onda, .fundo-grade, .fundo-fluido {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: block;
}
/* Paulo 02/09: "os textos podem ocupar mais espaço na tela pra não ficar esse vazio, tem que centralizar" */
.posicionamento__inner { max-width: 1120px; margin: 0 auto; text-align: center; }
.posicionamento .section__title { margin-left: auto; margin-right: auto; }
.posicionamento__body {
  color: var(--text-primary);            /* Paulo 02/09: branco, legível sobre os pontos */
  font-size: clamp(1.1rem, 1.5vw, 1.4rem); /* antes 16 a 18 px; agora 18 a 22 px */
  line-height: 1.6;
  margin-top: 36px;
  max-width: none;
}
.posicionamento__body p { margin: 0 0 20px; }
.posicionamento__body p:last-child { margin-bottom: 0; }

.tese {
  margin: 56px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--border-subtle);
}
.tese__text {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 16px;
  max-width: none;
}
.tese__attr {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* =============================================================
   S4 · Método
   ============================================================= */

.metodo { background: var(--surface-sunken); }

.pipeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 40px 0 40px;
  padding: 32px 24px;
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  counter-reset: pipeline;
}
@media (min-width: 900px) {
  .pipeline {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px;
    overflow-x: auto;
  }
}

.pipeline__step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 8px 4px;
  position: relative;
  min-width: 0;
}
@media (min-width: 900px) {
  .pipeline__step {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
    padding: 4px 8px;
  }
  .pipeline__step:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 22px;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--border-strong), transparent);
  }
}

.pipeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  font-family: "SFMono-Regular", monospace;
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.pipeline__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  white-space: nowrap;
}

.metodo__body {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.7;
  max-width: 65ch;
  margin: 0 0 40px;
}

/* Accordion (S4 módulos) */
.accordion {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color 200ms var(--ease-out);
}
.accordion__toggle:hover { color: var(--accent-hover); }
.accordion__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-weight: 300;
  font-size: 18px;
  transition: transform 240ms var(--ease-out), border-color 200ms var(--ease-out);
  color: var(--text-primary);
}
.accordion__toggle[aria-expanded="true"] .accordion__toggle-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}
.accordion__panel {
  padding: 0 4px 32px;
}

.modulos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}
@media (min-width: 720px) {
  .modulos { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (min-width: 1024px) {
  .modulos { grid-template-columns: repeat(3, 1fr); }
}
.modulo { border-radius: 10px; overflow: hidden; }
.modulo__in {
  padding: 24px 20px;
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  transition: border-color 200ms var(--ease-out);
  height: 100%;
  box-sizing: border-box;
  overflow: hidden; /* é ELE que recorta o conteúdo contra-transladado; sem isso o texto aparece antes do card */
}
.modulo:hover .modulo__in { border-color: var(--border-strong); }
.modulo__label {
  font-family: "SFMono-Regular", monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.modulo__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.modulo__body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* =============================================================
   S5 · Entrega (o que você sai fazendo)
   ============================================================= */

.entrega { background: var(--surface-base); }
.entrega__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}
@media (min-width: 720px) {
  .entrega__list { grid-template-columns: 1fr 1fr; gap: 32px 48px; }
}
.entrega__item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
}
.entrega__num {
  font-family: "SFMono-Regular", monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 32px;
}
.entrega__label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.entrega__detail {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.entrega__micro {
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
}

/* =============================================================
   S6 · Ciclo
   ============================================================= */

.ciclo { background: var(--surface-sunken); }
.ciclo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}
@media (min-width: 900px) {
  .ciclo__grid { grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: start; }
}
.ciclo__text {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.7;
}
.ciclo__text p { margin: 0 0 20px; }
.ciclo__text p:last-child { margin: 0; }

.ciclo__diagram {
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px 24px;
  overflow-x: auto;
}
.ciclo__diagram pre {
  font-family: "SFMono-Regular", "Consolas", monospace;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-primary);
  white-space: pre;
  text-align: center;
}
.ciclo__micro {
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  max-width: 65ch;
}

/* =============================================================
   S7 removida em 08/08/2026.
   CSS dos tiles + demos vive em _demos-loja.js.txt (comentado).
   ============================================================= */

/* =============================================================
   S8 · Filtro (é pra você / não é pra você)
   ============================================================= */

.filtro { background: var(--surface-sunken); }
.filtro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}
@media (min-width: 780px) {
  .filtro__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.filtro__col {
  padding: 32px 28px;
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}
.filtro__col--in {
  border-color: rgba(220, 88, 8, 0.35);
  background: linear-gradient(180deg, rgba(220, 88, 8, 0.04) 0%, var(--surface-raised) 60%);
}
.filtro__label {
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.filtro__col--in .filtro__label { color: var(--accent); }
.filtro__col--out .filtro__label { color: var(--text-muted); }
.filtro__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filtro__list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
}
.filtro__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 1px;
  background: var(--text-muted);
}
.filtro__col--in .filtro__list li::before { background: var(--accent); }
.filtro__col--in .filtro__list li { color: var(--text-primary); }

/* =============================================================
   S9 · Paulo
   ============================================================= */

.paulo { background: var(--surface-base); }
.paulo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
  align-items: start;
}
@media (min-width: 780px) {
  .paulo__grid { grid-template-columns: 280px 1fr; gap: 56px; }
}
@media (min-width: 1024px) {
  .paulo__grid { grid-template-columns: 340px 1fr; }
}

.paulo__portrait { max-width: 340px; }
.paulo__frame {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--surface-raised) 0%, var(--surface-sunken) 100%);
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.paulo__frame--foto { border: 1px solid var(--border-subtle); background: var(--surface-raised); }
.paulo__frame--foto img { display: block; width: 100%; height: 100%; object-fit: cover; }
.paulo__frame--foto::before { display: none; }
.paulo__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(220, 88, 8, 0.06) 0%, transparent 70%);
}
.paulo__stamp {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border: 1px dashed var(--border-strong);
  border-radius: 4px;
  background: rgba(28, 28, 28, 0.6);
  position: relative;
}

.paulo__body {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.7;
}
.paulo__body p { margin: 0 0 32px; }
.paulo__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}
.paulo__links li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  flex-wrap: wrap;
}
.paulo__link-name {
  color: var(--text-primary);
  font-weight: 500;
  min-width: 140px;
}
.paulo__links a {
  color: var(--text-secondary);
  transition: color 200ms var(--ease-out);
  font-family: "SFMono-Regular", monospace;
  font-size: 12px;
  /* área de toque de 44px sem mexer no layout (QA celular 02/09/2026: media 161x20) */
  padding: 12px 0;
  margin: -12px 0;
}
.paulo__links a:hover { color: var(--accent-hover); }

/* =============================================================
   S10 · Oferta
   ============================================================= */

.oferta { background: var(--surface-sunken); }
.oferta__card {
  margin-top: 32px;
  padding: clamp(32px, 5vw, 56px);
  background: var(--surface-raised);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.oferta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(220, 88, 8, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.oferta__card > * { position: relative; }

.oferta__name {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 32px;
  font-weight: 500;
}
.oferta__price {
  /* era flex em linha (feito pro token antigo); com o preço real empilha: rótulo, âncora, valor */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 0 0 14px;
}
.oferta__parcel {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0 0 8px;
}
.oferta__label {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 40px;
  letter-spacing: 0.02em;
}

.oferta__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px;
}
@media (min-width: 720px) {
  .oferta__cols { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.oferta__col-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 500;
}
.oferta__col-title--out { color: var(--text-muted); }
.oferta__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.oferta__list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}
.oferta__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--accent);
}
.oferta__list--out li::before { background: var(--text-muted); }

.oferta__cta {
  width: 100%;
  margin-bottom: 16px;
}
.oferta__micro {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 0 32px;
}

.garantia {
  padding: 20px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--surface-sunken);
}
.garantia__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.garantia__body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* =============================================================
   S11 · FAQ
   ============================================================= */

.faq { background: var(--surface-base); }
.faq__inner { max-width: 820px; }
.faq__list {
  margin-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.faq__item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  letter-spacing: -0.005em;
  list-style: none;
  transition: color 200ms var(--ease-out);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-weight: 300;
  font-size: 18px;
  transition: transform 240ms var(--ease-out), border-color 200ms var(--ease-out), color 200ms var(--ease-out);
  color: var(--text-primary);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__q:hover { color: var(--accent-hover); }
.faq__item[open] .faq__q { color: var(--accent); }
.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}
.faq__a {
  padding: 0 4px 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 65ch;
}
.faq__a p { margin: 0; }

/* =============================================================
   S12 · CTA final
   ============================================================= */

.cta-final {
  background: var(--surface-sunken);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-pad-y) var(--shell-pad);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(220, 88, 8, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final__inner {
  text-align: center;
  max-width: 880px;
  position: relative;
}
.cta-final__title {
  font-family: "Lexend", sans-serif;
  font-weight: 200;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--accent);
  margin: 0 0 24px;
  text-wrap: balance;
}
.cta-final__body {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin: 0 0 48px;
}
.cta-final__cta { margin-bottom: 24px; }
.cta-final__micro {
  color: var(--text-muted);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =============================================================
   Footer
   ============================================================= */

.foot {
  padding: 72px var(--shell-pad) 28px;
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-sunken);
  position: relative;
}
.foot__inner { max-width: var(--shell-max); margin: 0 auto; }
.foot__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}
@media (min-width: 720px) { .foot__top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .foot__top { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; } }
.foot__marca { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.foot__selo { width: 118px; height: auto; filter: drop-shadow(0 0 14px rgba(220, 88, 8, 0.35)); }
.foot__tag { margin: 0; max-width: 300px; font-size: 16px; line-height: 1.5; color: var(--text-primary); }
.foot__cta.fx-botao-neon-bordas {
  --fx-bg: #0D0D0D; --fx-accent: var(--accent); --fx-radius: 8px; --fx-speed: 1.6; --fx-neon-linha: 2px;
  padding: 14px 24px; font-size: 12px; letter-spacing: 0.18em; line-height: 1.2; margin-top: 6px;
  box-shadow: 0 0 22px rgba(220, 88, 8, 0.2);
}
.foot__title { margin: 0 0 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.foot__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot__list a { color: var(--text-primary); font-size: 14px; text-decoration: none; transition: color 150ms var(--ease-out); }
.foot__list a:hover { color: var(--accent); }
.foot__list--texto li { font-size: 14px; line-height: 1.5; color: var(--text-primary); }
.foot__bottom { display: flex; flex-direction: column; gap: 12px; padding-top: 22px; }
@media (min-width: 720px) { .foot__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.foot__copy { font-size: 12px; color: var(--text-primary); opacity: 0.7; }
.foot__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; }
.foot__legal a { font-size: 12px; color: var(--text-primary); opacity: 0.7; text-decoration: none; }
.foot__legal a:hover { opacity: 1; color: var(--accent); }
.foot__pendente { border-bottom: 1px dashed var(--accent); } /* token: páginas de termos e privacidade ainda não existem */

/* =============================================================
   Utilitário: focus-visible acessível
   ============================================================= */

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ============================================================
   CASCA · o site falso que cobre a LP até o visitante rasgar
   (hero/hero-curl.js). z-index acima do nav (50).
   ============================================================ */
html.casca-lock, html.casca-lock body { overflow: hidden; height: 100%; }
.casca {
  position: fixed; inset: 0; z-index: 90;
  touch-action: none; user-select: none; -webkit-user-select: none;
  overscroll-behavior: contain; cursor: grab;
  transition: opacity 600ms var(--ease-out);
}
.casca:active { cursor: grabbing; }
.casca.is-done { opacity: 0; pointer-events: none; }
.casca__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; background: #fff;
}
.casca.is-gl .casca__img { opacity: 0; }
.casca__gl { position: absolute; inset: 0; width: 100%; height: 100%; }
.casca.is-fallback .casca__gl { display: none; }
.casca__hint {
  position: absolute; left: 50%; bottom: 92px; transform: translateX(-50%);
  margin: 0; padding: 8px 14px; border-radius: 999px;
  background: rgba(13, 13, 13, 0.78); color: #fff;
  font-family: "Lexend", sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap; opacity: 0; pointer-events: none;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.casca.is-armed .casca__hint { animation: casca-hint-in 500ms var(--ease-out) 1000ms both; }
.casca.is-touched .casca__hint, .casca.is-done .casca__hint { display: none; }
.casca__hint-mobile { display: none; }
@media (max-width: 719px), (pointer: coarse) {
  .casca__hint-desktop { display: none; }
  .casca__hint-mobile { display: inline; }
  .casca__hint { display: none; } /* Paulo 02/09: no celular, uma mensagem só (fica o botão) */
}
/* rasgando (data-progress > 0,02): botão e dica saem na hora, não só no fim */
.casca.is-tearing .casca__btn, .casca.is-tearing .casca__hint { opacity: 0 !important; animation: none !important; pointer-events: none; transition: opacity 200ms ease-out; }
@keyframes casca-hint-in {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.casca__btn {
  position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%);
  padding: 12px 22px; border-radius: 999px;
  background: #0d0d0d; color: #fff; font-family: "Lexend", sans-serif; font-size: 14px; font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0; animation: casca-hint-in 500ms var(--ease-out) 1000ms both;
  cursor: pointer; white-space: nowrap;
}
.casca.is-armed .casca__btn { animation-name: casca-hint-in; }
.casca__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.casca.is-done .casca__btn { display: none; }
@media (prefers-reduced-motion: reduce) {
  .casca__hint, .casca__btn { animation: none; opacity: 1; }
}

/* ============================================================
   S1 · HERO real (por baixo da casca)
   ============================================================ */
.hero__eyebrow {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px; font-weight: 500;
}
.hero__sub {
  font-size: clamp(16px, 1.6vw, 20px); color: var(--text-secondary, #b9b5ad);
  margin: 0 0 30px; font-weight: 300;
}
.hero__cta {
  display: inline-block; padding: 14px 26px; border-radius: 999px;
  background: var(--accent); color: #fff; font-weight: 500; font-size: 15px;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.hero__cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* enquanto a casca cobre a LP, o convite "role" do hero fica escondido pra não brigar com o da casca */
html.casca-lock .hero-slot__hint { opacity: 0; }


/* ============================================================
   HERO REAL · fundo em 3 tratamentos (?hero=sala|filme|lanterna)
   ============================================================ */
.hero-slot__center { position: relative; z-index: 2; }
.hero-slot__hint { z-index: 2; } /* continua absoluto; virar relative o jogava pra dentro do flex e descentrava o texto */
.hero__bg { position: absolute; inset: 0; display: none; overflow: hidden; z-index: 0; }
html[data-hero="sala"] .hero__bg--sala,
html[data-hero="filme"] .hero__bg--filme,
html[data-hero="lanterna"] .hero__bg--lanterna { display: block; }

/* grão de filme (só quando há variante) */
.hero__grain {
  position: absolute; inset: -50%; width: 200%; height: 200%; z-index: 1;
  pointer-events: none; opacity: 0; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
html[data-hero] .hero__grain { opacity: 0.13; animation: hero-grain 0.8s steps(5) infinite; }
@keyframes hero-grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-2%, 1.5%); } 40% { transform: translate(1.5%, -2%); }
  60% { transform: translate(-1%, -1%); } 80% { transform: translate(2%, 2%); } 100% { transform: translate(0, 0); }
}

/* sala escura: feixe do projetor + poeira */
.hero__bg--sala::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(58% 90% at 50% -22%, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0) 62%),
    radial-gradient(46% 38% at 50% 112%, rgba(220, 88, 8, 0.12), rgba(220, 88, 8, 0) 70%);
}
.hero__dust { position: absolute; inset: 0; width: 100%; height: 100%; }

/* filme: clipe em tela cheia, escurecido, zoom lento, texto embaixo à esquerda */
.hero__film {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5) saturate(0.85); transform: scale(1.04);
  animation: hero-kenburns 26s ease-in-out infinite alternate;
}
@keyframes hero-kenburns { from { transform: scale(1.04) translate(0, 0); } to { transform: scale(1.13) translate(-1.5%, -1%); } }
.hero__bg--filme::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.55) 0%, rgba(13, 13, 13, 0.1) 40%, rgba(13, 13, 13, 0.88) 100%);
}
html[data-hero="filme"] .hero-slot { align-items: flex-end; justify-content: flex-start; padding-bottom: 110px; }
html[data-hero="filme"] .hero-slot__center { text-align: left; max-width: 860px; }
html[data-hero="filme"] .hero-slot__headline { font-size: clamp(2rem, 5vw, 4.2rem); }

/* lanterna: still apagado + a mesma imagem acesa sob uma máscara que segue o cursor */
.hero__still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__still--dim { filter: brightness(0.18) saturate(0.6); }
.hero__still--lit {
  filter: brightness(0.95);
  -webkit-mask-image: radial-gradient(circle var(--lr, 24vw) at var(--lx, 50%) var(--ly, 48%), #000 0%, rgba(0, 0, 0, 0.55) 45%, transparent 100%);
          mask-image: radial-gradient(circle var(--lr, 24vw) at var(--lx, 50%) var(--ly, 48%), #000 0%, rgba(0, 0, 0, 0.55) 45%, transparent 100%);
}
.hero__bg--lanterna::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 70% at 50% 50%, rgba(13, 13, 13, 0) 40%, rgba(13, 13, 13, 0.75) 100%);
}
@media (max-width: 719px) { .hero__still--lit { --lr: 46vw; } }

@media (prefers-reduced-motion: reduce) {
  html[data-hero] .hero__grain { animation: none; }
  .hero__film { animation: none; }
}


/* ============================================================
   HERO REAL · ?hero=corredor · sala 3D com telas nas paredes
   Geometria: a boca do corredor coincide com a viewport (W x H), as
   paredes vão de z=0 até z=-D. Paredes têm 2H de altura: a metade de
   baixo é o reflexo, visto através do chão semitransparente.
   ============================================================ */
html[data-hero="corredor"] .hero__bg--corredor { display: block; }
.corredor {
  position: absolute; inset: 0; overflow: hidden; background: #050505;
  perspective: 900px; perspective-origin: 50% 50%;
  --W: 1440px; --H: 900px; --D: 2700px;
}
.corredor__room {
  position: absolute; left: 50%; top: 50%; width: 0; height: 0;
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--D) / -2));
}
.corredor__face { position: absolute; left: 0; top: 0; backface-visibility: hidden; display: block; max-width: none; }
.corredor__face--left {
  width: var(--D); height: calc(var(--H) * 2);
  margin-left: calc(var(--D) / -2); margin-top: calc(var(--H) / -2);
  transform: rotateY(90deg) translateZ(calc(var(--W) / -2));
}
.corredor__face--right {
  width: var(--D); height: calc(var(--H) * 2);
  margin-left: calc(var(--D) / -2); margin-top: calc(var(--H) / -2);
  transform: rotateY(-90deg) translateZ(calc(var(--W) / -2));
}
.corredor__face--back {
  width: var(--W); height: calc(var(--H) * 2);
  margin-left: calc(var(--W) / -2); margin-top: calc(var(--H) / -2);
  transform: translateZ(calc(var(--D) / -2));
}
.corredor__face--ceiling {
  width: var(--W); height: var(--D);
  margin-left: calc(var(--W) / -2); margin-top: calc(var(--D) / -2);
  transform: rotateX(-90deg) translateZ(calc(var(--H) / -2));
  background: linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  overflow: hidden;
}
/* néon do teto: 5 barras cruzando o corredor + 2 trilhos ao longo */
.corredor__face--ceiling i {
  position: absolute; left: 12%; right: 12%; height: 3px; border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 28px rgba(255, 255, 255, 0.7), 0 0 60px rgba(220, 88, 8, 0.45);
}
.corredor__face--ceiling i:nth-child(1) { top: 8%; }
.corredor__face--ceiling i:nth-child(2) { top: 26%; }
.corredor__face--ceiling i:nth-child(3) { top: 44%; }
.corredor__face--ceiling i:nth-child(4) { top: 62%; }
.corredor__face--ceiling i:nth-child(5) { top: 80%; }
.corredor__face--ceiling b {
  position: absolute; top: 4%; bottom: 4%; width: 2px; background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 24px rgba(220, 88, 8, 0.35);
}
.corredor__face--ceiling b:nth-of-type(1) { left: 12%; }
.corredor__face--ceiling b:nth-of-type(2) { right: 12%; }
.corredor__face--floor {
  width: var(--W); height: var(--D);
  margin-left: calc(var(--W) / -2); margin-top: calc(var(--D) / -2);
  transform: rotateX(90deg) translateZ(calc(var(--H) / -2));
  /* topo = fundo do corredor, base = perto da câmera */
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.96) 0%, rgba(6, 6, 6, 0.86) 45%, rgba(6, 6, 6, 0.6) 100%);
}
/* névoa no fundo do corredor + vinheta, pra headline respirar */
.corredor__fog {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52% 60% at 50% 50%, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.2) 45%, rgba(5, 5, 5, 0) 70%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0) 30%, rgba(5, 5, 5, 0) 70%, rgba(5, 5, 5, 0.55) 100%);
}
.corredor__src { position: absolute; width: 4px; height: 4px; opacity: 0; pointer-events: none; left: 0; top: 0; }
html[data-hero="corredor"] .hero-slot__headline { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8); }
html[data-hero="corredor"] .hero__sub { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8); }


/* ============================================================
   CORREDOR · aprimoramentos de 30/08 (entrada, links, poças de luz,
   texto, ?andar=1, ?titulo=3d)
   ============================================================ */
/* néon do teto: começa apagado e acende da frente (80%) pro fundo (8%) */
.corredor.is-dark .corredor__face--ceiling i,
.corredor.is-dark .corredor__face--ceiling b { opacity: 0.06; box-shadow: none; }
.corredor__face--ceiling i, .corredor__face--ceiling b { transition: opacity 320ms ease-out, box-shadow 320ms ease-out; }
.corredor.is-lit .corredor__face--ceiling i:nth-child(5) { transition-delay: 0.1s; }
.corredor.is-lit .corredor__face--ceiling i:nth-child(4) { transition-delay: 0.25s; }
.corredor.is-lit .corredor__face--ceiling i:nth-child(3) { transition-delay: 0.4s; }
.corredor.is-lit .corredor__face--ceiling i:nth-child(2) { transition-delay: 0.55s; }
.corredor.is-lit .corredor__face--ceiling i:nth-child(1) { transition-delay: 0.7s; }
.corredor.is-lit .corredor__face--ceiling b { transition-delay: 0.3s; transition-duration: 900ms; }

/* poças de luz no chão, embaixo de cada barra de néon (mesmas posições do teto) */
.corredor__face--floor { overflow: hidden; }
.corredor__face--floor i {
  position: absolute; left: 6%; right: 6%; height: 14%; transform: translateY(-50%);
  background: radial-gradient(50% 100% at 50% 50%, rgba(255, 255, 255, 0.10), rgba(220, 88, 8, 0.04) 55%, rgba(0, 0, 0, 0) 100%);
  opacity: 0; transition: opacity 700ms ease-out;
}
.corredor.is-lit .corredor__face--floor i { opacity: 1; }
.corredor__face--floor i:nth-child(1) { top: 8%; transition-delay: 0.7s; }
.corredor__face--floor i:nth-child(2) { top: 26%; transition-delay: 0.55s; }
.corredor__face--floor i:nth-child(3) { top: 44%; transition-delay: 0.4s; }
.corredor__face--floor i:nth-child(4) { top: 62%; transition-delay: 0.25s; }
.corredor__face--floor i:nth-child(5) { top: 80%; transition-delay: 0.1s; }

/* links 3D nas paredes: mesma transformação dos canvas, filhos posicionados pelo JS */
.corredor__links { pointer-events: none; }
.corredor__links--left {
  width: var(--D); height: calc(var(--H) * 2);
  margin-left: calc(var(--D) / -2); margin-top: calc(var(--H) / -2);
  transform: rotateY(90deg) translateZ(calc(var(--W) / -2 + 1px));
}
.corredor__links--right {
  width: var(--D); height: calc(var(--H) * 2);
  margin-left: calc(var(--D) / -2); margin-top: calc(var(--H) / -2);
  transform: rotateY(-90deg) translateZ(calc(var(--W) / -2 + 1px));
}
.corredor__link {
  position: absolute; left: 0; top: 0; display: none; pointer-events: auto;
  cursor: pointer; text-decoration: none; will-change: transform;
}
.corredor__cap {
  position: absolute; left: 0; right: 0; bottom: -44px; text-align: center;
  font-family: "Lexend", sans-serif; font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; opacity: 0; transform: translateY(6px); transition: opacity 200ms, transform 200ms;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9); white-space: nowrap; pointer-events: none;
}
.corredor__link:hover .corredor__cap, .corredor__link:focus-visible .corredor__cap { opacity: 1; transform: translateY(0); }
.corredor__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* texto: varredura de luz na headline e brilho de néon no CTA quando o corredor acende */
html[data-hero="corredor"] .hero-slot__headline {
  background: linear-gradient(100deg, #fff 0%, #fff 40%, #ffd9c2 50%, #fff 60%, #fff 100%);
  background-size: 260% 100%; background-position: 120% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  opacity: 0.55; text-shadow: none;
}
html[data-hero="corredor"] .hero.is-lit .hero-slot__headline { animation: hero-sweep 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s both; opacity: 1; }
@keyframes hero-sweep { from { background-position: 120% 0; opacity: 0.55; } to { background-position: -20% 0; opacity: 1; } }
html[data-hero="corredor"] .hero__cta { box-shadow: 0 0 0 rgba(220, 88, 8, 0); transition: box-shadow 900ms ease-out 0.6s, background 200ms var(--ease-out), transform 200ms var(--ease-out); }
html[data-hero="corredor"] .hero.is-lit .hero__cta { box-shadow: 0 0 22px rgba(220, 88, 8, 0.45), 0 0 60px rgba(220, 88, 8, 0.18); }
html[data-hero="corredor"] .hero__eyebrow, html[data-hero="corredor"] .hero__sub { opacity: 0.35; transition: opacity 900ms ease-out 0.4s; }
html[data-hero="corredor"] .hero.is-lit .hero__eyebrow, html[data-hero="corredor"] .hero.is-lit .hero__sub { opacity: 1; }

/* ?andar=1 · o hero gruda e a rolagem vira andar pelo corredor */
.hero--andar { position: sticky; top: 0; }
/* pino da saída (?saida=): o hero gruda enquanto o pino rola */
.hero-pin { position: relative; }
.hero-pin--andar { height: 200vh; }
.hero-pin--cortina, .hero-pin--luz { height: 300vh; }
/* chegada da S2 por cima do corredor: sobe os últimos 100vh do pino, opaca, com sombra na borda de cima */
html[data-saida="cortina"] .faixa-onda, html[data-saida="luz"] .faixa-onda {
  margin-top: -100vh; z-index: 3;
  box-shadow: 0 -40px 90px rgba(0, 0, 0, 0.6);
}
html[data-saida="luz"] .faixa-onda { box-shadow: none; }
.hero__dim { position: absolute; inset: 0; pointer-events: none; opacity: 0; z-index: 3; background: #050505; }
html[data-saida="luz"] .hero__dim { background: #fff1e0; }

/* ?titulo=3d · headline num plano dentro do corredor */
html[data-titulo="3d"] .hero-slot { perspective: 900px; perspective-origin: 50% 50%; }
/* Paulo 02/09: texto mais pra baixo pra não brigar com o selo neon no fundo. --hero-texto-y vem de ?texto=<vh>
   (padrão 16, medido na TELA). No plano 3D (translateZ -420 com perspectiva 900) todo deslocamento encolhe
   pra 68%, por isso o valor é dividido por 0,68 lá. */
html[data-hero="corredor"] .hero-slot__center { transform: translateY(var(--hero-texto-y, 22vh)); }
html[data-titulo="3d"] .hero-slot__center { transform: translateY(calc(var(--hero-texto-y, 22vh) / 0.68)) translateZ(-420px) scale(1.47); transform-origin: 50% 50%; }
/* com o texto mais baixo: o "Curso online" caía em cima do letreiro (sai no corredor; Paulo decide se volta)
   e o botão encostava no "role para ver a página" (a dica desce pra 14 px do pé) */
html[data-hero="corredor"] .hero__eyebrow { display: none; }
html[data-hero="corredor"] .hero-slot__hint { bottom: 14px; }
@media (max-height: 960px) { html[data-hero="corredor"] .hero-slot__hint { display: none; } } /* com o texto a 22vh, a dica só cabe em tela alta */

@media (prefers-reduced-motion: reduce) {
  html[data-hero="corredor"] .hero-slot__headline { animation: none !important; opacity: 1; }
}

/* ?andar=1 · nav sem fundo enquanto o hero está grudado (main.js liga .is-scrolled a partir de 40px, mas o corredor ainda ocupa a tela) */
.nav.is-clear { background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }

/* avental do corredor: as 4 faces continuam --E à frente da boca. Assentado (boca = viewport)
   ele projeta fora da tela; durante a entrada (quarto recuado 420px, boca em 73% da tela)
   cobre a moldura preta chapada que a boca deixaria à mostra. Medido em 30/08: 1054x659 de 1440x900. */
.corredor { --E: 520px; }
.corredor__apron { pointer-events: none; }
.corredor__apron--left, .corredor__apron--right {
  width: var(--E); height: calc(var(--H) * 2); margin-top: calc(var(--H) / -2);
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 50%, #070707 50%, #070707 100%);
}
/* transform-origin: a rotação precisa ser em torno do MESMO ponto da parede (centro da parede = origem
   do quarto). Deslocado por margem, o avental giraria em torno do próprio centro e cairia no lugar errado. */
.corredor__apron--left { margin-left: calc(var(--D) / -2 - var(--E)); transform-origin: calc(var(--D) / 2 + var(--E)) 50%; transform: rotateY(90deg) translateZ(calc(var(--W) / -2)); }
.corredor__apron--right { margin-left: calc(var(--D) / 2); transform-origin: calc(var(--D) / -2) 50%; transform: rotateY(-90deg) translateZ(calc(var(--W) / -2)); }
.corredor__apron--ceiling, .corredor__apron--floor { width: var(--W); height: var(--E); margin-left: calc(var(--W) / -2); }
.corredor__apron--ceiling { margin-top: calc(var(--D) / -2 - var(--E)); transform-origin: 50% calc(var(--D) / 2 + var(--E)); transform: rotateX(-90deg) translateZ(calc(var(--H) / -2)); background: #050505; }
.corredor__apron--floor { margin-top: calc(var(--D) / 2); transform-origin: 50% calc(var(--D) / -2); transform: rotateX(90deg) translateZ(calc(var(--H) / -2)); background: rgba(6, 6, 6, 0.6); }

/* Barra de rolagem escondida (Paulo, 30/08): a página continua rolando, só a barra some.
   scrollbar-width cobre Firefox e Chrome 121+; ::-webkit-scrollbar cobre o Chrome antigo dele e Safari. */
html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; width: 0; height: 0; }

/* ============================================================
   S10 · preço FECHADO 30/08 (lançamento R$ 197, âncora R$ 497)
   ============================================================ */
.oferta__lancamento { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 0 0 10px; }
.oferta__de { font-size: 18px; color: var(--text-secondary, rgba(255, 255, 255, 0.65)); margin: 0 0 2px; }
.oferta__de s { text-decoration-color: rgba(220, 88, 8, 0.8); text-decoration-thickness: 2px; }
.oferta__preco { font-size: clamp(44px, 6vw, 72px); font-weight: 600; line-height: 1.05; color: var(--text-primary, #fff); margin: 0 0 6px; letter-spacing: -0.02em; }

/* Texto que era cinza-apagado (--text-muted) e é LEITURA, não rótulo, vira branco (Paulo 02/09). No FIM do arquivo: as regras específicas de cada bloco vêm antes e perderiam na ordem.
   Ficam em --text-muted só números de índice, dicas, carimbos e o preço riscado. */
.section__eyebrow, .tese__attr, .entrega__micro, .ciclo__micro, .oferta__micro, .oferta__name, .oferta__label,
.oferta__col-title--out, .filtro__col--out .filtro__label, .foot__note, .paulo__links a { color: var(--text-primary); }

/* Cards dos módulos: cortina por TRANSFORM (Paulo 02/09: "ainda 15 ou 30 fps, tem que ser mais fluida").
   O Reveal Cortina continua sendo o maestro (arma, escalona, põe .fx-in), mas o corte deixa de ser
   clip-path (que o Chrome pinta no processador a cada quadro) e vira dois transforms que a placa de
   vídeo compõe: o .modulo__in sobe de 101% pra 0 e o .modulo__conteudo desce de -101% pra 0 ao mesmo
   tempo, então o conteúdo fica parado enquanto a "cortina" abre de baixo pra cima; a escala 1,08 → 1
   fica no conteúdo, como no original. */
.fx-reveal-cortina.fx-js .modulo[data-fx-cortina] { opacity: 1 !important; clip-path: none !important; transform: none !important; transition: none !important; will-change: auto; }
.fx-reveal-cortina.fx-js .modulo[data-fx-cortina] .modulo__in { transform: translateY(101%); will-change: transform; }
.fx-reveal-cortina.fx-js .modulo[data-fx-cortina] .modulo__conteudo { transform: translateY(-101%) scale(1.08); will-change: transform; }
.fx-reveal-cortina.fx-js .modulo[data-fx-cortina].fx-in .modulo__in,
.fx-reveal-cortina.fx-js .modulo[data-fx-cortina].fx-in .modulo__conteudo {
  transform: none;
  transition: transform calc(var(--fx-wipe-dur) * var(--fx-speed)) cubic-bezier(0.65, 0, 0.35, 1);
  transition-delay: inherit; /* o atraso da cascata vem inline do efeito, no .modulo */
}
.fx-reveal-cortina.fx-rm .modulo .modulo__in, .fx-reveal-cortina.fx-rm .modulo .modulo__conteudo { transform: none !important; transition: none !important; }

/* 4) card da oferta: bloco do valor centralizado (Paulo 02/09) */
.oferta__name, .oferta__price, .oferta__parcel, .oferta__label { text-align: center; }
.oferta__price { margin-left: auto; margin-right: auto; align-items: center; } /* o bloco é flex em coluna: sem align-items o preço fica na esquerda */

/* 5) botão pra oferta no fim das seções (Paulo 02/09: "seções 2 a 7") */
/* Paulo 02/09: "sempre centralizado na tela, não mais na esquerda ou na direita".
   grid-column 1/-1 cobre as seções em duas colunas (Ciclo, Prova); o texto centra o botão inline. */
.section__cta { margin: 48px 0 0; text-align: center; width: 100%; grid-column: 1 / -1; align-self: stretch; }
.section__cta-btn { padding: 15px 32px; font-size: 15px; box-shadow: 0 0 22px rgba(220, 88, 8, 0.25); }

/* =============================================================
   Botão Neon com Bordas Animadas (Helix, efeitos/botao-neon-bordas) nos botões de seção e da oferta.
   Paulo 02/09: "e os botões coloca esse". O JS do efeito NÃO é carregado: no toque ele faz
   preventDefault no touchstart pra alternar o aceso, e isso mataria o clique do link no celular.
   Reduced motion fica por media query aqui. Raio 8px: com pílula (999px) as linhas somem nas curvas.
   ============================================================= */
.section__cta-btn.fx-botao-neon-bordas, .oferta__cta.fx-botao-neon-bordas {
  --fx-bg: #0D0D0D; --fx-accent: var(--accent); --fx-radius: 8px; --fx-speed: 1.6; --fx-neon-linha: 2px;
  padding: 18px 34px; font-size: 14px; letter-spacing: 0.18em; line-height: 1.2;
}
.oferta__cta.fx-botao-neon-bordas { display: block; box-sizing: border-box; width: 100%; text-align: center; padding: 22px 40px; font-size: 16px; margin-bottom: 16px; box-shadow: 0 0 22px rgba(220, 88, 8, 0.25); }
.fx-botao-neon-bordas:hover, .fx-botao-neon-bordas:focus-visible { -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.35)); }
@media (prefers-reduced-motion: reduce) { .fx-botao-neon-bordas__linha { animation: none; } }

/* =============================================================
   Transição S5 → S6 com a mecânica do Parallax Camadas (Helix). Ver ciclo-parallax.js.
   A faixa das ondas (S2 a S5) fica por cima da faixa fluida, que começa 100vh antes (debaixo da
   última tela da S5); a S6 gruda no topo por 100vh (padding do pino) enquanto a S5 sobe.
   ============================================================= */
.faixa-onda { z-index: 3; }
.faixa-fluido { margin-top: -100vh; }
/* o curso do sticky é a caixa de CONTEÚDO do pino: padding não conta (medido: com padding-bottom a S6 não
   grudava nem 1px). O espaçador é um ::after de 100vh em fluxo. */
.ciclo-pin::after { content: ""; display: block; height: 100vh; }
.faixa-fluido > .ciclo-pin > .section { position: sticky; top: 0; z-index: 1; background: transparent; }
.ciclo-pin .section__inner, .faixa-fluido .fundo-fluido, .fundo-onda { will-change: transform; } /* .fundo-onda: camada própria, pra não ser re-rasterizado junto com os vídeos dos cards (piscada da S2, 02/09) */
.faixa-fluido--plana { margin-top: 0; }
.ciclo-pin--off::after { display: none; }
.faixa-fluido > .ciclo-pin--off > .section { position: relative; }

/* Paulo 02/09: "coloca esse texto em outro local" (o reflexo do botão neon passava por cima) e "tá
   faltando o efeito no primeiro botão, da hero". O micro foi pro pé do card; a hero ganha o neon com
   os mesmos tokens, e o brilho que acende com as luzes do corredor continua por cima. */
.oferta__cta.fx-botao-neon-bordas { margin-bottom: 72px; } /* reflexo do hover tem a altura do botão (63px medido) e não pode entrar na garantia */
.oferta__micro--pe { margin: 20px 0 0; }
.hero__cta.fx-botao-neon-bordas {
  --fx-bg: #0D0D0D; --fx-accent: var(--accent); --fx-radius: 8px; --fx-speed: 1.6; --fx-neon-linha: 2px;
  background: transparent; color: var(--accent); border-radius: 8px;
  padding: 16px 30px; font-size: 14px; font-weight: 700; letter-spacing: 0.18em; line-height: 1.2;
}
.hero__cta.fx-botao-neon-bordas:hover, .hero__cta.fx-botao-neon-bordas:focus-visible { background: var(--accent); color: #0D0D0D; transform: none; }

/* Paulo 02/09: "tira o título A oferta e coloca o card mais pra cima". O h2 fica só pra leitor de tela. */
.oferta.section { padding-top: 40px; }

/* celular (padrao 'cabos'): telas como planos 3D dentro do corredor */
.corredor__plano {
  position: absolute; left: 0; top: 0; width: var(--pw, 300px); height: var(--ph, 169px);
  margin-left: calc(var(--pw, 300px) / -2); margin-top: calc(var(--ph, 169px) / -2);
  opacity: 0; backface-visibility: hidden; will-change: transform, opacity; transform-style: preserve-3d;
}
.corredor__plano-tela {
  position: absolute; inset: 0; background: #000; border-radius: 6px; overflow: hidden;
  box-shadow: 0 0 0 2px #151515, 0 24px 50px rgba(0, 0, 0, 0.75), 0 0 34px rgba(255, 214, 170, 0.12);
}
.corredor__plano .corredor__src { position: static; width: 100%; height: 100%; opacity: 1; object-fit: cover; pointer-events: none; }
/* cabos ate o teto (so no ?hm=cabos): 2 linhas finas com brilho, do topo da tela ate y = teto */
.corredor__cabo { display: none; }
.corredor--cabos .corredor__cabo {
  display: block; position: absolute; bottom: 100%; width: 2px; height: var(--cabo, 200px);
  background: linear-gradient(to top, #6a6a6a, #2a2a2a 60%, #151515);
  box-shadow: 0 0 6px rgba(255, 214, 170, 0.18);
}
.corredor--cabos .corredor__cabo--1 { left: 14%; }
.corredor--cabos .corredor__cabo--2 { right: 14%; }
.corredor--cabos .corredor__plano-tela { box-shadow: 0 0 0 3px #1a1a1a, 0 0 0 4px #333, 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 214, 170, 0.14); }

/* celular 'cabos': sem paredes laterais; teto e chão largos (--W = 2,4 x a janela) */
.corredor--aberto .corredor__face--left, .corredor--aberto .corredor__face--right,
.corredor--aberto .corredor__apron--left, .corredor--aberto .corredor__apron--right,
.corredor--aberto .corredor__links { display: none; }
