/* ==========================================================================
   SPECTRO — landing page
   Réplica do frame "Frame 36" (1920 x 4299) do arquivo Figma "Espectro".
   Escala: 1rem = 16px em 1920px de viewport; todo o layout desktop é
   proporcional (px do Figma ÷ 16 = rem).
   ========================================================================== */

/* ---------- Fontes ---------- */
@font-face {
  font-family: 'Unbounded';
  src: url('assets/fonts/Unbounded-latin.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Unbounded';
  src: url('assets/fonts/Unbounded-latin-ext.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fakt Pro';
  src: url('assets/fonts/FaktPro-Normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fakt Pro';
  src: url('assets/fonts/FaktPro-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fakt Pro';
  src: url('assets/fonts/FaktPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --preto: #000;
  --branco: #fff;
  --linha: rgba(255, 255, 255, 0.57);
  --display: 'Unbounded', 'Arial Black', sans-serif;
  --ui: 'Fakt Pro', 'Helvetica Neue', Arial, sans-serif;
  --lh: 1.307;              /* 130.7% — line-height de todo o design */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 7.6875rem;    /* 123 — altura da faixa do topo */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  /* 16px @1920 · escala proporcional · piso em 1200px (troca p/ layout mobile) */
  font-size: clamp(10px, 0.83333vw, 20px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--preto);
  color: var(--branco);
  font-family: var(--ui);
  line-height: var(--lh);
  overflow-x: hidden;
}
h1, h2, h3, p { margin: 0; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--branco);
  outline-offset: 4px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--branco);
  color: var(--preto);
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ==========================================================================
   PALCO — hero e "quem somos" dividem a mesma arte.
   O hero fica preso enquanto a seção sobre sobe por cima e a arte escurece.
   Sem JS nada disso liga: o site cai no layout estático do Figma.
   ========================================================================== */
.stage {
  position: relative;
  --fh: 0;    /* fade das informações do hero */
  --dim: 0;   /* escurecimento da arte */
  --at: 1;    /* entrada do título "quem somos" */
  --a1: 1;    /* entrada de cada parágrafo */
  --a2: 1;
  --a3: 1;
  --fo: 0;    /* saída das informações do sobre */
}
.js .stage { --at: 0; --a1: 0; --a2: 0; --a3: 0; }
.js .stage .hero { position: sticky; top: 0; z-index: 0; }
.js .stage .about { position: relative; z-index: 5; background: transparent; }

.hero__dim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000;
  opacity: var(--dim);
  pointer-events: none;
}

/* saída do hero: fade + blur + leve subida (linguagem de movimento do GTA VI) */
.hero__title,
.hero__sub,
.hero__actions {
  transform: translateY(calc(var(--fh) * -2.5rem));
  filter: blur(calc(var(--fh) * 7px));
}
.hero__title,
.hero__sub,
.hero__actions,
.hero__wordmark { opacity: calc(1 - var(--fh)); }

/* entrada do "quem somos": cada bloco surge com fade, blur e escala */
.about__title,
.about__text p {
  --e: 1;
  opacity: calc(var(--e) * (1 - var(--fo)));
  filter: blur(calc((1 - var(--e)) * 7px));
  transform: translateY(calc((1 - var(--e)) * 2.25rem - var(--fo) * 2rem))
             scale(calc(0.985 + var(--e) * 0.015));
}
.about__title { --e: var(--at); }
.about__text p:nth-of-type(1) { --e: var(--a1); }
.about__text p:nth-of-type(2) { --e: var(--a2); }
.about__text p:nth-of-type(3) { --e: var(--a3); }

/* ==========================================================================
   HERO — Frame 17 (1920 x 1190)
   ========================================================================== */
.hero {
  position: relative;
  height: 74.375rem;          /* 1190 */
  background: var(--preto);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

/* Imagem com o mesmo enquadramento do fill CROP do Figma */
.hero__art { position: absolute; inset: 0; z-index: 0; }
.hero__art img {
  position: absolute;
  left: 5.19%;
  top: 11.95%;
  width: 89.61%;
  height: 80.70%;
  object-fit: fill;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 88.8%);
}

/* Topo — Frame 18 (1920 x 123, padding 30/32). Fixo em toda a página. */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  padding: 0 2rem;            /* 32 nas laterais; altura centraliza o resto */
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.topbar.is-stuck {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.topbar__logo { display: block; }
.topbar__logo img {
  width: 3.8125rem;           /* 61 */
  height: 4.625rem;           /* 74 */
  transition: opacity 0.3s var(--ease);
}
.topbar__logo:hover img { opacity: 0.72; }

.burger {
  width: 2.8125rem;           /* 45 */
  height: 1.6875rem;          /* 27 */
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.burger span {
  display: block;
  width: 100%;
  height: 0.5rem;             /* 8 */
  background: var(--branco);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.burger[aria-expanded='true'] span:first-child { transform: translateY(0.6rem) rotate(45deg); }
.burger[aria-expanded='true'] span:last-child { transform: translateY(-0.6rem) rotate(-45deg); }

/* Marca central — Group 9 (204 x 91, topo 29) */
.hero__wordmark {
  position: absolute;
  z-index: 2;
  top: 1.8125rem;             /* 29 */
  left: 50%;
  transform: translateX(-50%);
  width: 12.75rem;            /* 204 */
  height: 5.6875rem;          /* 91 */
}

/* Bloco de conteúdo — Frame 32 (885 de largura, topo 780) */
.hero__content {
  position: absolute;
  z-index: 2;
  top: 48.75rem;              /* 780 */
  left: 50%;
  transform: translateX(-50%);
  width: 55.3125rem;          /* 885 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4375rem;             /* 23 */
  text-align: center;
}
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3.5rem;          /* 56 */
  line-height: var(--lh);
}
.hero__sub {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 1.5rem;          /* 24 */
  width: 36.9375rem;          /* 591 */
  min-height: 4.3125rem;      /* 69 — mesma caixa do texto no Figma */
}
.hero__actions {
  display: flex;
  align-items: flex-start;
  gap: 1.5625rem;             /* 25 */
}

/* ==========================================================================
   Botões — Frame 20 / Frame 21 (raio 80, padding 20/30, borda 1px)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;               /* 12 */
  padding: 1.25rem 1.875rem;  /* 20 / 30 */
  border: 1px solid var(--linha);
  border-radius: 5rem;        /* 80 */
  font-family: var(--ui);
  font-weight: 700;
  font-size: 1.375rem;        /* 22 */
  line-height: var(--lh);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn--solid { background: var(--branco); color: var(--preto); }
.btn--ghost { background: transparent; color: var(--branco); }
.btn__icon { width: 1.6875rem; height: 1.3125rem; }

.hero__actions .btn--solid { font-size: 1.3125rem; }  /* 21 */

.btn--solid:hover { transform: translateY(-2px); background: #e9e9e9; }
.btn--ghost:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); border-color: var(--branco); }
.btn:active { transform: translateY(0); }

/* ==========================================================================
   MENU — painel lateral (referência: navegação do site do GTA VI)
   ========================================================================== */
.menu { position: fixed; inset: 0; z-index: 50; }
.menu[hidden] { display: none; }

.menu__veu {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}
.menu.is-open .menu__veu { opacity: 1; }

.menu__painel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: clamp(26rem, 40vw, 38rem);
  padding: 1.75rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu.is-open .menu__painel { transform: none; }

.menu__topo {
  height: var(--header-h);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__marca {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.menu__marca img { width: 1.9375rem; height: 2.375rem; }
.menu__marca span {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.62);
}

.menu__close {
  width: 3rem;
  height: 3rem;
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.menu__close:hover { border-color: var(--branco); background: rgba(255, 255, 255, 0.08); }
.menu__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 1.125rem;
  height: 2px;
  margin-left: -0.5625rem;
  background: var(--branco);
}
.menu__close span:first-child { transform: translateY(-50%) rotate(45deg); }
.menu__close span:last-child { transform: translateY(-50%) rotate(-45deg); }

.menu__inner { display: flex; flex-direction: column; align-items: flex-start; }
.menu__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.75rem, 2.4vw, 2.75rem);
  line-height: 1.24;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: translateX(1.5rem);
  transition: color 0.3s var(--ease), opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.menu.is-open .menu__link {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.14s + var(--i) * 0.07s);
}
.menu__link:hover { color: var(--branco); }
.menu__link--cta {
  margin-top: 1.75rem;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7);
}
.menu__link--cta img { width: 1.375rem; height: 1.0625rem; }

.menu__foot {
  margin-top: auto;
  padding-top: 2rem;
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.35s;
}
.menu.is-open .menu__foot { opacity: 0.5; }
.menu__foot img { width: 8.5rem; height: auto; }

/* ==========================================================================
   QUEM SOMOS — Frame 32 (1920 x 1050, padding 100/320)
   ========================================================================== */
.about,
.perks { scroll-margin-top: var(--header-h); }

.about {
  height: 65.625rem;          /* 1050 */
  padding: 6.25rem 20rem;     /* 100 / 320 */
  background: var(--preto);
  display: flex;
  align-items: center;
}
.about__inner {
  width: 47.375rem;           /* 758 */
  display: flex;
  flex-direction: column;
  gap: 4rem;                  /* 64 */
}
.about__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.5rem;          /* 40 */
  line-height: var(--lh);
}
.about__text p {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 1.875rem;        /* 30 */
  line-height: var(--lh);
}
.about__text p + p { margin-top: 2.45rem; }   /* 1 linha em branco */

/* ==========================================================================
   EXCLUSIVOS — Frame 31 (1920 x 1624, padding 154/320)
   ========================================================================== */
.perks {
  position: relative;
  padding: 9.625rem 20rem;    /* 154 / 320 */
  background: var(--preto);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;                  /* 64 */
  overflow: hidden;
  --pt: 1;                    /* entrada do título */
  --c1: 1;                    /* entrada de cada card */
  --c2: 1;
  --rg: 1;                    /* brilho radial ao fundo */
}
.js .perks { --pt: 0; --c1: 0; --c2: 0; --rg: 0; }

/* degradê radial cinza escuro para preto (do Figma), surge junto com os cards */
.perks__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--rg);
  background: radial-gradient(ellipse 62% 100% at 50% 50%, #1d1d1d 0%, #000 100%);
}
.perks > *:not(.perks__glow) { position: relative; z-index: 1; }

.perks__title {
  opacity: var(--pt);
  filter: blur(calc((1 - var(--pt)) * 7px));
  transform: translateY(calc((1 - var(--pt)) * 2.25rem)) scale(calc(0.985 + var(--pt) * 0.015));
}
.card--left,
.card--right {
  --e: 1;
  opacity: var(--e);
  filter: blur(calc((1 - var(--e)) * 6px));
  transform: translateY(calc((1 - var(--e)) * 5.5rem)) scale(calc(0.975 + var(--e) * 0.025));
}
.card--left { --e: var(--c1); }
.card--right { --e: var(--c2); }
.perks__title {
  font-family: var(--display);
  font-weight: 500;           /* Unbounded Medium */
  font-size: 2.5rem;          /* 40 */
  line-height: var(--lh);
  text-align: center;
}
.perks__list {
  width: 80rem;               /* 1280 */
  display: flex;
  flex-direction: column;
  gap: 2.25rem;               /* 36 */
}

.card {
  position: relative;
  height: 36.375rem;          /* 582 */
  border-radius: 1.5rem;      /* 24 */
  overflow: hidden;
  isolation: isolate;
}
.card--left { height: 43.3125rem; }   /* 693 */
.card__art { position: absolute; inset: 0; z-index: 0; }
.card__art img {
  position: absolute;
  top: 0;
  object-fit: fill;
  transition: transform 0.9s var(--ease);
}
.card--left .card__art img { left: 0; width: 109.375%; height: 113.64%; }
.card--right .card__art img { left: -16.375%; width: 85.91%; height: 106.29%; }
.card:hover .card__art img { transform: scale(1.03); }

.card__veil { position: absolute; inset: 0; z-index: 1; }
.card--left .card__veil {
  opacity: 0.93;
  background: linear-gradient(90deg, #000 0%, #000 22.1%, rgba(0, 0, 0, 0.54) 41.6%, rgba(12, 13, 27, 0) 84.4%);
}
.card--right .card__veil {
  background: linear-gradient(270deg, #000 0%, #000 30%, rgba(0, 0, 0, 0.54) 47.5%, rgba(12, 13, 27, 0) 86%);
}

.card__content {
  position: absolute;
  z-index: 2;
  top: 8.0625rem;             /* 129 */
  width: 29.875rem;           /* 478 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5625rem;             /* 25 */
}
.card--left .card__content { left: 4.3125rem; }   /* 69 */
.card--right .card__content { left: 49.375rem; }  /* 790 */
.card__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.25rem;         /* 36 */
  line-height: var(--lh);
}
.card__text {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 1.375rem;        /* 22 */
  width: 26.125rem;           /* 418 */
}

/* ==========================================================================
   RODAPÉ — Frame 33 (1920 x 435, padding 0/320/105)
   ========================================================================== */
.footer {
  padding: 0 20rem 6.5625rem; /* 0 / 320 / 105 */
  background: var(--preto);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;                  /* 64 */
}
.footer__logo {
  width: 10.75rem;            /* 172 */
  height: 13rem;              /* 208 */
}
.footer__text {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 1.375rem;        /* 22 */
  text-align: center;
  max-width: 56rem;           /* 896 */
}

/* ==========================================================================
   Entrada em cena
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

/* ==========================================================================
   Abaixo de 1200px — layout adaptado (o desktop é fiel até 1200px exatos)
   ========================================================================== */
@media (max-width: 1199px) {
  html { font-size: 16px; }
  :root { --header-h: 72px; }

  .hero {
    height: auto;
    min-height: 100svh;
  }
  /* A arte começa abaixo da faixa do topo, como no desktop */
  .hero__art { inset: var(--header-h) 0 0 0; }
  .hero__art img {
    position: absolute;
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 28%;
  }
  .hero__veil { background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 45%, #000 100%); }

  .topbar { padding: 0 20px; }
  .topbar__logo img { width: 27px; height: 33px; }
  .burger { width: 24px; height: 15px; }
  .burger span { height: 4px; }
  .burger[aria-expanded='true'] span:first-child { transform: translateY(5.5px) rotate(45deg); }
  .burger[aria-expanded='true'] span:last-child { transform: translateY(-5.5px) rotate(-45deg); }

  /* centralizado na faixa do topo, seja qual for a altura da marca */
  .hero__wordmark {
    width: clamp(88px, 24vw, 112px);
    height: auto;
    top: calc(var(--header-h) / 2);
    transform: translate(-50%, -50%);
  }

  .hero__content {
    position: static;
    transform: none;
    width: 100%;
    margin-top: auto;
    padding: 30vh 24px 56px;
    gap: 18px;
  }
  .hero__title { font-size: clamp(28px, 7.6vw, 46px); }
  .hero__sub { font-size: clamp(15px, 3.9vw, 21px); max-width: 34ch; }
  .hero__actions { flex-direction: column; align-items: stretch; width: min(360px, 100%); gap: 14px; }
  .btn { padding: 16px 24px; font-size: 17px; }
  .hero__actions .btn--solid { font-size: 17px; }

  .menu__painel { width: min(88vw, 380px); padding: 8px 24px 32px; }
  .menu__topo { margin-bottom: 24px; }
  .menu__marca img { width: 22px; height: 27px; }
  .menu__marca span { font-size: 12px; }
  .menu__close { width: 40px; height: 40px; }
  .menu__close span { width: 15px; margin-left: -7.5px; }
  .menu__link { font-size: clamp(26px, 7.4vw, 36px); }
  .menu__link--cta { font-size: 16px; margin-top: 20px; }
  .menu__foot img { width: 108px; }

  .about {
    height: auto;
    padding: 72px 24px;
    display: block;
  }
  .about__inner { width: auto; gap: 26px; }
  .about__title { font-size: clamp(24px, 6.4vw, 36px); }
  .about__text p { font-size: clamp(16px, 4.2vw, 21px); }
  .about__text p + p { margin-top: 1.3em; }

  .perks { padding: 72px 24px; gap: 32px; }
  .perks__title { font-size: clamp(22px, 5.8vw, 34px); }
  .perks__list { width: 100%; gap: 20px; }

  .card,
  .card--left {
    height: auto;
    min-height: 560px;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
  }
  .card__art img,
  .card--left .card__art img,
  .card--right .card__art img {
    position: absolute;
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* enquadramento pensado para retrato: mantém os personagens no centro do card */
  .card--left .card__art img { object-position: 63% 18%; }
  .card--right .card__art img { object-position: 40% 20%; }
  .card__veil,
  .card--left .card__veil,
  .card--right .card__veil {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 34%, rgba(0, 0, 0, 0.82) 62%, #000 88%);
  }
  .card__content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding: 0 24px 32px;
    gap: 16px;
  }
  .card--left .card__content,
  .card--right .card__content { left: auto; }
  .card__title { font-size: clamp(20px, 5.4vw, 30px); }
  .card__text { width: auto; font-size: clamp(15px, 4vw, 19px); }

  .footer { padding: 0 24px 64px; gap: 32px; }
  .footer__logo { width: 108px; height: auto; }
  .footer__text { font-size: clamp(14px, 3.7vw, 19px); }
}

@media (max-width: 640px) {
  .card, .card--left { min-height: 520px; }
}

/* ==========================================================================
   Acessibilidade — movimento reduzido
   ========================================================================== */
@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;
  }
  .reveal { opacity: 1; transform: none; }

  /* nada de palco nem entradas por scroll: volta ao layout estático */
  .js .stage .hero { position: static; }
  .js .stage .about { background: var(--preto); }
  .js .stage { --fh: 0; --dim: 0; --at: 1; --a1: 1; --a2: 1; --a3: 1; --fo: 0; }
  .js .perks { --pt: 1; --c1: 1; --c2: 1; --rg: 1; }
  .hero__title, .hero__sub, .hero__actions,
  .about__title, .about__text p,
  .perks__title, .card--left, .card--right { filter: none; transform: none; }
  .menu__link { opacity: 1; transform: none; }
  .menu__foot { opacity: 0.5; }
}
