/* ============================================================
   PALETA — black total (verde só no WhatsApp)
============================================================ */
:root {
  --bg: #0a0c0f;                 /* fundo escuro (Vanta WAVES por cima) */
  --bg-soft: #10131a;
  --card: #14161c;               /* blocos escuros */
  --text: #f4f4f4;               /* texto claro (dentro dos blocos) */
  --text-dim: #9a9a9a;
  --white: #ffffff;
  --ink: #f4f4f4;                /* texto claro (direto sobre o fundo escuro) */
  --ink-dim: #9aa0a8;
  --wa: #25d366;
  --red: #e30613;                /* cor da marca (destaques) */
  --line: rgba(255, 255, 255, .1);
  --line-ink: rgba(255, 255, 255, .14);
  --radius: 22px;
  --radius-sm: 16px;
  --font-display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: var(--bg);   /* base escura (o Vanta WAVES cobre por cima) */
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Fundo global animado (Vanta) — fixo, atrás de tudo (fora do smooth-content) */
#vanta-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
}
/* vinheta: sombra escura ao redor de todo o fundo Vanta */
#vanta-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(125% 115% at 50% 50%, transparent 50%, rgba(0, 0, 0, .78) 100%);
  box-shadow: inset 0 0 180px 40px rgba(0, 0, 0, .7);
}
/* seções de conteúdo transparentes → deixam o fundo animado aparecer
   (!important p/ vencer os background:var(--bg) definidos mais abaixo) */
.reveal, .proof, .rgsection, .method, .authority, .offer, .footer {
  background: transparent !important;
}

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

/* ============================================================
   PRELOADER
============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: grid; place-items: center;
}
.preloader-inner { text-align: center; }
.preloader-count {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--ink);
  line-height: 1;
  display: block;
}
.preloader-label {
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
}
body.no-gsap .preloader { display: none; }

/* ============================================================
   BOTÕES WHATSAPP
============================================================ */
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #06230f;
  font-weight: 800; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, .35);
  transition: box-shadow .25s ease;
  will-change: transform;
}
.btn-wa:hover { box-shadow: 0 12px 40px rgba(37, 211, 102, .5); }
.btn-wa--big { font-size: 1.2rem; padding: 20px 36px; }
.wa-icon { width: 1.35em; height: 1.35em; flex: none; }
.cta-note { display: block; color: var(--text-dim); font-size: .82rem; margin-top: 10px; padding-left: 6px; }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #06230f;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
  opacity: 0; transform: scale(.5); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.wa-float.is-on { opacity: 1; transform: scale(1); pointer-events: auto; }
.wa-float .wa-icon { width: 30px; height: 30px; }

/* ============================================================
   DOBRA 1 — HERÓI em camadas
   1 academia · 2 título · 3 atleta · 4 caption — com fade
   preto no rodapé conectando ao background do site.
============================================================ */
.hero {
  position: relative;
  margin: 0;                                /* full-bleed (sem bloco) */
  min-height: 100svh;
  overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: 0 0 clamp(28px, 5vw, 64px) clamp(28px, 5vw, 64px);   /* cantos de baixo arredondados */
}
/* sombra no topo da hero (branca) — ATRÁS do Gabriel, nunca cobre ele */
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: clamp(140px, 20vh, 240px);
  z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 45%, transparent 100%);
}

/* logo Team Miqueletti (topo esquerdo da hero) */
.site-logo {
  position: absolute; top: clamp(18px, 3vw, 34px); left: clamp(18px, 4vw, 48px);
  z-index: 10; display: inline-flex; align-items: center; gap: 12px;
  color: #fff;
}
.site-logo-mark {
  width: clamp(34px, 3.6vw, 46px); height: auto; display: block;
  filter: brightness(0);   /* shape preto (contraste no fog claro da hero) */
}
.site-logo-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(.8rem, 1vw, 1rem); letter-spacing: .14em; text-transform: uppercase;
  line-height: 1.08;
}

/* nav */
.hero-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px clamp(20px, 4vw, 56px);
}
.logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.3rem; letter-spacing: .04em; color: var(--white);
  display: inline-flex; align-items: center; gap: 8px;
}
.logo-mark { font-size: .68em; letter-spacing: -.1em; color: var(--wa); }
.hero-nav-links { display: flex; gap: 26px; }
.hero-nav-links a {
  font-family: var(--font-mono);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .2s ease;
}
.hero-nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--wa); color: #06230f;
  border-radius: 999px; padding: 11px 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: .88rem;
  will-change: transform;
}

/* palco em camadas */
.hero-stage { position: absolute; inset: 0; }

.hero-bg {
  position: absolute; inset: -12% 0 0 0; z-index: 1; will-change: filter;
  background: linear-gradient(120deg, #ffffff 0%, #f3fafc 55%, #e2f4f9 100%);   /* fundo claro estático (sem Vanta) */
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  filter: brightness(.75);
}
.js .hero-bg { filter: blur(22px); }
.js .hero-person { filter: blur(30px); }   /* Gabriel entra bem desfocado → câmera foca nele */

.hero-halo {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(46% 52% at 50% 46%, rgba(255,255,255,.16), rgba(255,255,255,.05) 55%, transparent 72%);
  pointer-events: none;
}

/* textura de fundo: foto P&B bem apagada (fica quase invisível no fog branco) */
.hero-photo {
  position: absolute; inset: -6%; z-index: 2;   /* inset negativo = folga p/ o parallax */
  background: url(img/hero-bw.png) center/cover no-repeat;
  filter: grayscale(1);
  opacity: .12;                 /* bem sutil — ajuste fino aqui */
  pointer-events: none; will-change: transform;
}
/* grade de pontos interativa */
.hero-dots {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}


/* selo 3D flutuante (efeito Osmo) */
.hero-badge3d {
  position: absolute; top: clamp(20px, 3.5vw, 40px); left: clamp(20px, 3.5vw, 44px);
  z-index: 8;
}
.logo-outer { display: inline-block; will-change: transform; transform-style: preserve-3d; }
.logo-inner {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 16px;
  background: rgba(10, 10, 10, .5);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  font-family: var(--font-display);
  font-size: 1.35rem; letter-spacing: .04em; color: var(--white);
  will-change: transform;
}
.logo-inner .logo-mark { color: var(--wa); font-size: .68em; letter-spacing: -.1em; }

.hero-person {
  position: absolute; inset: 0; z-index: 3;   /* Gabriel centralizado */
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
}
.hero-person img {
  height: min(106svh, 96vw);   /* um pouco maior */
  width: auto; max-width: none;   /* evita o "amassado" (vence o img{max-width:100%} global) */
  margin-bottom: -2px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));   /* sombra preta */
}

.hero-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  padding: 0 clamp(20px, 4vw, 56px) clamp(26px, 4vw, 46px);
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.hero-caption-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.hero-desc { max-width: 360px; }
.hero-desc p {
  color: rgba(255,255,255,.82);
  font-size: .96rem; line-height: 1.55;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0,0,0,.7);
}
.hero-desc strong { color: var(--white); }

.hero-metrics { display: flex; gap: clamp(22px, 3.4vw, 44px); text-align: right; }
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--white); line-height: 1; display: block;
  text-shadow: 0 4px 24px rgba(0,0,0,.7);
}
.metric-label {
  font-family: var(--font-mono);
  font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* fade de conexão com o background black
   (dentro do stage: acima do atleta z3, abaixo da caption z4) */
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  height: 34svh;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.35) 55%, var(--bg) 100%);
  pointer-events: none;
}

/* Headline do hero — bloco editorial à esquerda, centralizado na vertical */
/* Headline DIVIDIDA (desktop): flanqueia o Gabriel, um pouco acima dos ombros */
.hero-headline { position: absolute; inset: 0; z-index: 5; }
/* colunas flanqueando o Gabriel (texto + CTA embaixo) */
.hl-col {
  position: absolute; top: 40%;
  display: flex; flex-direction: column; gap: clamp(18px, 1.8vw, 30px);
}
.hl-col--left  { left: clamp(20px, 5vw, 72px);  align-items: flex-start; text-align: left; }
.hl-col--right { right: clamp(20px, 5vw, 72px); align-items: flex-end;  text-align: right; }
/* texto da headline */
.hl-txt {
  margin: 0; white-space: nowrap;
  font-family: "Montserrat", sans-serif; font-weight: 800;   /* Montserrat Ultra Bold */
  font-size: clamp(1rem, 1.9vw, 2rem);   /* 1ª linha (menor) */
  line-height: 1.05; letter-spacing: -.015em;
  text-transform: uppercase; color: #0a0c0f;
  text-shadow: 0 2px 20px rgba(255, 255, 255, .5);
}
/* 2ª linha em destaque: maior e mais bold (Montserrat Black 900) */
.hl-big {
  display: inline-block; font-weight: 900;
  font-size: 1.5em; line-height: .96; letter-spacing: -.025em;
}
/* CTAs da hero */
.hero-cta--solid {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  font-family: "Montserrat", sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: clamp(.78rem, .95vw, .92rem);
  padding: 14px 30px; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(227, 6, 19, .3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-cta--solid:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(227, 6, 19, .45); }
.hero-cta--ghost {
  display: inline-flex; align-items: center; gap: 9px;
  color: #0a0c0f; font-family: "Montserrat", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; line-height: 1.35;
  font-size: clamp(.7rem, .82vw, .8rem);
  text-decoration: none;   /* sem traço */
  transition: color .2s ease;
}
.hero-cta--ghost svg { flex: none; width: 1.35em; height: 1.35em; }
.hero-cta--ghost:hover { color: var(--red); }   /* sem traçado, fica vermelho */

/* rodapé da hero (CTAs embaixo: instagram à esquerda, botão à direita) */
.hero-footer {
  position: absolute; z-index: 5;
  left: clamp(20px, 5vw, 72px); right: clamp(20px, 5vw, 72px);
  bottom: clamp(28px, 5vh, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* cortina líquida MorphSVG — inunda de baixo p/ cima no scroll.
   Cobre o hero inteiro (transição forte -> dobra 02). */
.hero-morph {
  position: absolute; left: 0; bottom: 0; z-index: 7;
  width: 100%; height: 100svh;
  pointer-events: none;
  display: block;
  /* brilho sutil na borda superior para a curva líquida ser visível */
  filter: drop-shadow(0 -2px 16px rgba(255, 255, 255, .14));
}
.hero-morph-path { fill: var(--bg); }

/* ============================================================
   MARQUEE
============================================================ */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg);
  position: relative; z-index: 5;
}
.marquee-track { display: inline-block; will-change: transform; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  letter-spacing: .08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .5);
}

/* ============================================================
   SEÇÕES — base
============================================================ */
.section { padding: 110px 24px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-mono);
  color: var(--text-dim); font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; font-size: .74rem;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08; letter-spacing: -.01em;
  text-transform: uppercase;   /* caixa alta */
  color: var(--ink);
  margin-bottom: 42px;
}
/* contraste tipográfico da headline das provas (mesmo estilo da nova dobra) */
.section-title .st-thin { font-weight: 500; }
.section-title .st-big { font-weight: 900; font-size: 1.18em; }

/* ============================================================
   DOBRA 01 → 02 — HERÓI QUE VIRA UMA CAIXA (clip-path shrink)
============================================================ */
.reveal { background: var(--bg); position: relative; }
.reveal-sticky {
  position: relative;
  height: 100svh; width: 100%;
  overflow: hidden;
}

/* grade final (5 clientes + célula do herói), por baixo do clip */
.reveal-stage {
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center;
  padding: 9vh 4vw;
}
.reveal-grid {
  width: 100%; max-width: 1180px; height: 78vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.4vw;
  perspective: 1000px;
}
.reveal-cell { position: relative; margin: 0; will-change: transform, opacity; }
.reveal-cell--hero { }   /* o clip opaco pousa aqui e no fim corta seco p/ o cliente */
.cell-img {
  width: 100%; height: 100%;
  border-radius: 14px; overflow: hidden;
  background-size: cover; background-position: 50% 40%;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .14em; color: rgba(255,255,255,.5);
}
/* SUBSTITUA: placeholders (troque por background-image real) */
.cell-1 { background: linear-gradient(150deg, #2a2f2b, #12160f); }
.cell-2 { background: linear-gradient(150deg, #2f2a2a, #16110f); }
.cell-3 { background: linear-gradient(150deg, #26292f, #0f1116); }
.cell-4 { background: linear-gradient(150deg, #2b2b2b, #131313); }
.cell-5 { background: linear-gradient(150deg, #292f2c, #101613); }
.cell-6 { background: linear-gradient(150deg, #2f2d29, #161310); }
.reveal-cell figcaption {
  position: absolute; left: 12px; bottom: 12px;
  font-size: .78rem; font-weight: 700; color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
}

/* HERO fullscreen que encolhe = o próprio clip */
.reveal-clip {
  position: absolute; inset: 0; z-index: 4;
  clip-path: inset(0% 0% 0% 0% round 0px);
  will-change: clip-path;
  overflow: hidden;
}
.reveal-clip .hero-bg { position: absolute; inset: -12% 0 0 0; }
.reveal-clip .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  filter: brightness(.75);
}
.reveal-clip .hero-halo {
  position: absolute; inset: 0;
  background: radial-gradient(46% 52% at 50% 46%, rgba(255,255,255,.16), rgba(255,255,255,.05) 55%, transparent 72%);
}
.reveal-clip .hero-person {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
}
.reveal-clip .hero-person img {
  height: min(96svh, 92vw); width: auto; margin-bottom: -2px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6));
}
.reveal-clip .hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 30svh;
  background: linear-gradient(180deg, transparent, rgba(6,6,6,.55) 55%, var(--bg));
}
.hero-cell-cap {
  position: absolute; left: 5vw; bottom: 5vh; z-index: 5;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 3rem); text-transform: uppercase;
  letter-spacing: .02em; color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,.7);
}

/* brilho que varre a caixa e mascara a troca hero -> cliente */
.reveal-swap-shine {
  position: absolute; z-index: 6; pointer-events: none;
  border-radius: 14px; overflow: hidden;
  opacity: 0;
}
.reveal-swap-shine .shine-band {
  position: absolute; top: -25%; left: -60%;
  width: 55%; height: 150%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .95) 50%, transparent);
  filter: blur(8px);
  will-change: transform;
}

/* eyebrow da dobra 02 (entra ao final do scrub) */
.reveal-eyebrow {
  position: absolute; top: 6vh; left: 50%; transform: translateX(-50%);
  z-index: 3; opacity: 0;
  font-family: var(--font-mono);
  color: var(--text-dim); font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; font-size: .74rem;
}

/* ============================================================
   DOBRA 02 — TRANSFORMAÇÕES (texto à esquerda, imagem à direita)
   Antes por padrão; o cursor revela o depois. Pausa no scroll (pin).
============================================================ */
.proof { background: var(--bg); }
.proof-head { padding-top: 100px; padding-bottom: 2vh; }
.tr-row {
  min-height: 92svh;
  max-width: 1180px; margin: 0 auto; padding: 4vh 24px;
  display: grid; grid-template-columns: 1fr auto; gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.tr-text { max-width: 46ch; }
.tr-result {
  display: inline-block; margin-bottom: 16px;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #128c4b;
  border: 1px solid rgba(18, 140, 75, .35); border-radius: 999px; padding: 7px 14px;
}
.tr-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.02;
  text-transform: uppercase; color: var(--ink); margin-bottom: 18px;
}
.tr-quote { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.5; color: var(--ink-dim); }

.tr-media {
  position: relative; margin: 0;
  width: clamp(260px, 34vw, 440px); aspect-ratio: 4 / 5;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .22);
  justify-self: end;
}
.tr-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: 50% 30%;
}
.tr-depois {
  clip-path: inset(0 0 0 100%);       /* escondido; entra da direita p/ esquerda */
  transition: clip-path .6s cubic-bezier(.7, 0, .2, 1);
}
.tr-media:hover .tr-depois { clip-path: inset(0 0 0 0%); }
.tr-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0,0,0,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  font-family: var(--font-mono); font-size: .66rem; font-weight: 700;
  letter-spacing: .16em; color: var(--white);
}
.tr-tag--after { background: rgba(37, 211, 102, .92); color: #06230f; }
.tr-hint {
  position: absolute; right: 14px; bottom: 12px; z-index: 3;
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  text-shadow: 0 2px 8px rgba(0,0,0,.8);
  transition: opacity .3s ease;
}
.tr-media:hover .tr-hint { opacity: 0; }

/* ============================================================
   FRASE HORIZONTAL — texto pinado que desliza (letras saltam)
   Efeito adaptado do Codrops "containerAnimation" (MIT).
============================================================ */
.htext {                          /* seção pinada; transparente p/ revelar a página quando o bloco encolhe */
  position: relative; overflow: hidden; height: 100svh;
  background: transparent;
}
.htext-screen {                   /* a "tela" que vira o bloco preto arredondado no fim */
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden; display: flex; align-items: center;
  background: #000;               /* preto: revelado quando a imagem some */
  will-change: width, height, top, left, border-radius;
}
.htext-bg {                       /* foto B&W + sombreamento topo/base; some (autoAlpha) na transição */
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, .88) 0%,
      rgba(0, 0, 0, .40) 24%,
      rgba(0, 0, 0, .40) 76%,
      rgba(0, 0, 0, .88) 100%),
    url(img/htext-bg.jpg) center / cover no-repeat;
}
.htext-line {
  position: relative; z-index: 1;  /* acima da imagem */
  display: flex; align-items: center; width: max-content; white-space: nowrap;
  gap: 1.8vw; padding-left: 100vw; margin: 0;   /* frase começa fora, à direita → emerge pela direita */
  will-change: transform;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 8.5vw, 9rem); line-height: 1.5;   /* folga vertical p/ acentos não cortarem */
  letter-spacing: -.01em;
  color: #fff;                     /* branco: fica legível sobre a foto escura */
  -webkit-text-stroke: .025em #fff; paint-order: stroke fill;   /* engrossa (faux-bold, além do 700) */
}
.htext-line > * { overflow: visible; line-height: 1.5; }   /* garante que cada letra (SplitText) não corte */

/* ============================================================
   MURAL DE RESULTADOS — galeria rotativa 3D no scroll (Codrops, MIT)
============================================================ */
.rgsection { background: var(--bg); padding-top: clamp(120px, 26vh, 320px); padding-bottom: clamp(240px, 45vh, 560px); }

/* ============================================================
   TRANSIÇÃO → NOVA DOBRA — a tela fecha num bloco branco arredondado
============================================================ */
/* trilha de scroll invisível que dirige a moldura fixa */
.foldnew {
  position: relative; z-index: 1;
  background: transparent;
  min-height: 700svh;              /* fase 1 (fechamento no bloco) + fase 2 (bloco vira barra) */
}
/* Vanta FOG azul/ciano — camada FIXA que surge dentro do bloco */
#foldvanta {
  position: fixed; inset: 0; z-index: 40;
  opacity: 0; pointer-events: none;
  will-change: opacity;
}
/* Copy da nova dobra — surge no FINAL da transição, à esquerda do Gabriel */
#foldcopy {
  position: fixed; inset: 0; z-index: 40;   /* dentro do bloco (acima do Vanta) */
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24svh calc(10vw + clamp(32px, 4vw, 84px)) 0;  /* DENTRO do bloco (inset 10%) + respiro */
  pointer-events: none;
}
/* linhas do copy: reveal em CASCATA (o JS anima uma a uma) */
.fl {
  display: block;
  opacity: 0; filter: blur(12px); transform: translateY(30px);
  will-change: opacity, filter, transform;
}
/* contraste tipográfico: linha fina menor + linha gigante ultra bold */
.fl--thin {
  font-weight: 400; font-size: .52em;
  letter-spacing: .14em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
}
.fl--big { font-size: 1.12em; font-weight: 900; }
.foldcopy-title {
  font-family: var(--font-display); font-weight: 900;
  text-transform: uppercase; line-height: .95; letter-spacing: -.01em;
  font-size: clamp(1.5rem, 3vw, 3.1rem);
  color: #fff;
  /* sombra escura + brilho ciano sutil (vida, ligado à névoa do fundo) */
  text-shadow: 0 6px 40px rgba(0, 0, 0, .55), 0 0 36px rgba(111, 243, 255, .3);
}
.foldcopy-title--right { text-align: right; }
/* rodapé do bloco: logo à esquerda, assinatura à direita */
.foldcopy-footer {
  position: absolute;
  left: calc(10vw + clamp(32px, 4vw, 84px));
  right: calc(10vw + clamp(32px, 4vw, 84px));
  bottom: 15%; height: 15%;                        /* ocupa a faixa exata da barra final */
  display: flex; align-items: center; justify-content: space-between;  /* centro vertical da barra */
  opacity: 0; filter: blur(12px); transform: translateY(30px);  /* última linha da cascata */
  will-change: opacity, filter, transform;
}
.foldcopy-logo {
  height: clamp(26px, 4.6svh, 44px); width: auto;
  filter: brightness(0) invert(1)                  /* logo branca sobre o fundo escuro */
          drop-shadow(0 2px 12px rgba(0, 0, 0, .4));
}
.foldcopy-team {
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: .22em;
  font-size: clamp(.7rem, 1.1vw, .95rem);
  color: #fff; text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

/* grade de pontos sobre o BRANCO da fase 2 (mesmo efeito da Hero) */
#folddots {
  position: fixed; inset: 0; z-index: 41;   /* acima da moldura branca, abaixo do Gabriel */
  pointer-events: none; opacity: 0;
}

/* credenciais do Gabriel — fileira de cards ABAIXO da barra */
#foldstats {
  position: fixed; z-index: 41;             /* acima do branco/pontos, abaixo do Gabriel */
  left: calc(10vw + clamp(14px, 1.6vw, 30px));
  right: calc(10vw + clamp(14px, 1.6vw, 30px));
  top: 76.5%;                               /* logo abaixo da barra levantada */
  display: flex; justify-content: space-between; align-items: stretch;
  gap: clamp(10px, 1.6vw, 24px);
  pointer-events: none;
}
.fstat {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  background: #ffffff;
  border: 1px solid rgba(10, 20, 40, .07);
  border-radius: 18px;
  padding: clamp(14px, 1.8vw, 24px) clamp(18px, 2.2vw, 30px);
  box-shadow: 0 18px 50px rgba(10, 20, 40, .12);
  opacity: 0; filter: blur(14px); transform: translateY(40px);
  will-change: opacity, filter, transform;
}
/* A CONSULTORIA — apresentada DENTRO do bloco recrescido */
#foldconsult {
  position: fixed; inset: 0; z-index: 46;
  overflow: hidden;
  color: #fff; pointer-events: none;
}
.fc-panel {                          /* chamada final: DESLIZA com o scroll */
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(10px, 1.8svh, 18px);
  padding: clamp(28px, 5vw, 90px) clamp(28px, 7vw, 120px) clamp(110px, 18svh, 170px);
  transform: translateY(120%);       /* fora da tela até a fase chegar */
  will-change: transform;
}
.fc-panel--final {
  align-items: center; text-align: center;
}
/* PALCO: headline fixa à esquerda + fotos girando à direita, DENTRO do bloco
   (o bloco recrescido ocupa 15%/10% — o palco fica acima da faixa do rodapé) */
.fc-stage {
  position: absolute;
  top: 18%; bottom: 30%;
  /* mesmo recuo do rodapé do bloco: respiro generoso das bordas brancas */
  left: calc(10vw + clamp(32px, 4vw, 84px));
  right: calc(10vw + clamp(32px, 4vw, 84px));
  display: flex; align-items: center; gap: clamp(24px, 4vw, 70px);
  transform: translateY(150%);
  will-change: transform;
}
.fc-left {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: clamp(12px, 2.2svh, 22px);
}
.fc-headline {
  font-family: var(--font-display); text-transform: uppercase;
  line-height: 1.04; letter-spacing: -.01em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, .55);
}
.fch-thin { font-weight: 500; font-size: clamp(1.05rem, 1.8vw, 1.8rem); }
.fch-big { font-weight: 900; font-size: clamp(1.7rem, 3vw, 3.1rem); }
.fc-swap { position: relative; min-height: clamp(104px, 18svh, 160px); }
.fc-info {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; will-change: opacity, transform;
}
.fc-right {
  position: relative; align-self: stretch;
  flex: 0 0 min(36%, 400px);
  perspective: 900px;
}
.fc-photo {
  position: absolute; inset: 0; margin: 0;
  border-radius: 20px; overflow: hidden;
  transform: translate3d(0, 140%, 0) rotateX(85deg);   /* nasce DEBAIXO, deitada */
  will-change: transform;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.fc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* BENEFÍCIOS — headline + 3 blocos girando enquanto o bloco expande */
.fc-benstage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  gap: clamp(18px, 3.4svh, 34px);
  padding: clamp(48px, 9svh, 110px) clamp(32px, 8vw, 120px);
  transform: translateY(150%);
  will-change: transform;
}
.fc-bhead {
  font-family: var(--font-display); text-transform: uppercase;
  line-height: 1.05; letter-spacing: -.01em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, .5);
}
.fc-benwrap { perspective: 800px; }
.fc-benwrap .fc-ben {
  height: 100%; text-align: left;
  transform: translate3d(0, 140%, 0) rotateX(85deg);   /* nasce DEBAIXO, deitado */
  will-change: transform;
}
/* PRELOADER — fundo preto, logo central se preenche com o carregamento */
#preloader {
  position: fixed; inset: 0; z-index: 999;
  background: #05070b;
  display: grid; place-items: center;
  transition: opacity .55s ease;
}
#preloader.done { opacity: 0; pointer-events: none; }
.pre-logo { position: relative; width: clamp(90px, 13vw, 150px); }
.pre-logo img {
  width: 100%; display: block;
  filter: brightness(0) invert(1);
}
.pre-logo-base { opacity: .16; }
.pre-logo-fill {
  position: absolute; inset: 0;
  clip-path: inset(100% 0 0 0);          /* preenche de baixo pra cima */
}

/* rodapé PRETO da chamada final */
.fc-footer {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: clamp(16px, 2.6svh, 26px) clamp(24px, 6vw, 90px);
  background: #05070b;
  border-top: 1px solid rgba(255, 255, 255, .08);
  pointer-events: auto;
}
.fc-footer-ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  font-size: clamp(.68rem, .95vw, .9rem); color: #fff;
}
.fc-footer-ig svg { width: 1.25em; height: 1.25em; }
.fc-eyebrow {
  display: block;
  font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  font-size: clamp(.65rem, .85vw, .8rem); color: #6ff3ff;
}
.fc-title {
  font-family: var(--font-display); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em; line-height: .98;
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
}
.fc-desc {
  font-weight: 500; line-height: 1.55; max-width: 52ch;
  font-size: clamp(.9rem, 1.15vw, 1.1rem); color: rgba(255, 255, 255, .82);
}
/* benefícios em CARDS visuais (ícone + título + texto) */
.fc-bens {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(8px, 1.8svh, 18px);
  max-width: 980px;
}
.fc-ben {
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  padding: clamp(16px, 1.9vw, 28px);
  backdrop-filter: blur(6px);
}
.fc-ben-ico {
  width: clamp(38px, 3.4vw, 48px); height: clamp(38px, 3.4vw, 48px);
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(111, 243, 255, .14);
  color: #6ff3ff;
  margin-bottom: 4px;
}
.fc-ben-ico svg { width: 55%; height: 55%; }
.fc-ben strong {
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; font-size: clamp(.85rem, 1.1vw, 1.05rem);
}
.fc-ben span {
  font-weight: 500; line-height: 1.5;
  font-size: clamp(.78rem, .98vw, .92rem); color: rgba(255, 255, 255, .75);
}
/* CTA das frentes: MESMO botão 3D do resto da página (tilt via data-tilt3d) */
.fc-cta { margin-top: clamp(10px, 2svh, 20px); }
.fc-cta .btn3d-wrap { pointer-events: auto; }
.fc-cta .btn3d-outer {
  padding: 18px 42px; border-radius: 15px;
  font-size: clamp(1rem, 1.3vw, 1.25rem); letter-spacing: .05em;
}
.btn3d-outer--green {
  color: #06230f;
  background: radial-gradient(89% 85% at 17% 78%, #7dffb0 0%, #34e07a 38%, #25d366 76%, #0e8f43 100%);
  box-shadow: 0 20px 50px rgba(37, 211, 102, .35);
}
.btn3d-outer--green:hover { box-shadow: 0 26px 64px rgba(37, 211, 102, .5); }
/* chamada final (sobre o FOG vermelho) */
.fc-final-title {
  font-family: var(--font-display); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em; line-height: 1;
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  text-shadow: 0 6px 44px rgba(0, 0, 0, .5);
}
.fc-final-text {
  font-weight: 500; line-height: 1.6; max-width: 56ch;
  font-size: clamp(1rem, 1.5vw, 1.3rem); color: rgba(255, 255, 255, .88);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .45);
}
/* Instagram no rodapé FINAL (invisível até a última fase) */
.foldcopy-ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  font-size: clamp(.68rem, .95vw, .9rem); color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
  opacity: 0; pointer-events: none;
  will-change: opacity, filter;
}
.foldcopy-ig svg { width: 1.25em; height: 1.25em; }

/* bio do Gabriel — à direita, revelada enquanto ele desliza pra esquerda */
#foldbio {
  position: fixed; z-index: 41;
  right: calc(10vw + clamp(14px, 1.6vw, 30px));
  top: 22%;
  width: min(34vw, 480px);
  opacity: 0; filter: blur(14px); transform: translateY(40px);
  will-change: opacity, filter, transform;
  pointer-events: none;
}
.foldbio-title {
  font-family: var(--font-display); font-weight: 900;
  text-transform: uppercase; line-height: .98; letter-spacing: -.01em;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  color: #0a0c0f; margin-bottom: 14px;
}
.foldbio-text {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(.9rem, 1.15vw, 1.05rem); line-height: 1.65;
  color: rgba(10, 12, 15, .72);
}
.fstat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1;
  color: #0a0c0f;
}
.fstat-txt {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(.95rem, 1.3vw, 1.2rem); line-height: 1.2;
  text-transform: uppercase; color: #0a0c0f;
}
.fstat-label {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(.7rem, .95vw, .85rem);
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(10, 12, 15, .55);
}

/* Gabriel 02 — FIXO no centro do bloco, revelado com blur (igual à intro da Hero) */
#foldperson {
  position: fixed; inset: 0; z-index: 42;   /* ACIMA da moldura: a cabeça sai por cima da borda */
  display: grid; place-items: end center;   /* pé do Gabriel SEMPRE na base do bloco */
  overflow: hidden;                         /* clipa base e laterais (topo fica aberto via JS) */
  opacity: 0; filter: blur(26px);
  pointer-events: none;
  will-change: opacity, filter, transform, inset, border-radius;
}
#foldperson img {
  height: min(82svh, 110vw); width: auto; max-width: none;   /* maior: topo corta no limite do bloco */
  margin-bottom: -3svh;            /* afunda a base pra DENTRO da borda (o blur não abre fenda) */
  transform: scale(0.94); transform-origin: 50% 100%;        /* nasce do pé: cresce SUBINDO */
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .45));
  will-change: transform;
}
/* Moldura branca FIXA: este elemento é o "buraco" (o bloco). O box-shadow branco
   preenche tudo FORA dele → conforme o inset cresce, bordas brancas fecham a tela. */
#foldframe {
  position: fixed; inset: 0; z-index: 41;
  pointer-events: none;
  border-radius: 0;
  box-shadow: 0 0 0 110vmax #ffffff;
  will-change: inset, border-radius;
}
.foldnew__ph { position: relative; z-index: 1; text-align: center; color: #fff; }
.foldnew__eyebrow {
  display: block; margin-bottom: 12px;
  font-family: var(--font-mono); font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; font-size: .8rem; color: #6ff3ff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}
.foldnew__ph h2 {
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
  font-size: clamp(1.6rem, 4vw, 3rem);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}
.rgallery {                        /* coluna fluida (Codrops) — na METADE DIREITA da tela */
  position: relative; z-index: 2;
  width: min(620px, 46vw);
  margin: -32vh clamp(24px, 7vw, 140px) 2vh auto;  /* puxada pra CIMA: fotos já entram com a headline */
  display: flex; flex-direction: column; align-items: center;
}
.proof-head { position: relative; z-index: 1; }    /* headline pinada fica à ESQUERDA */
/* headline + CTA nunca invadem a coluna de fotos (metade direita):
   fonte menor (cabe nas 2 linhas naturais, sem quebras extras) */
.proof-head .section-title {
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  white-space: nowrap;               /* trava as 2 linhas originais */
  margin-bottom: 0;
}
.proof-head .dobra-cta { margin-top: clamp(28px, 4.5vh, 44px); text-align: left; }
.rg-wrap {                         /* wrapper com perspectiva própria (padrão do repo) */
  width: min(620px, 92vw);
  perspective: 900px;
  margin-bottom: -5rem;            /* leve sobreposição entre os cards */
}
.rg-row {                          /* (legado — não usado no grid) */
  width: min(1180px, 94vw);
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: clamp(28px, 4vw, 60px);
}
.rg-text {                         /* card com o mesmo brilho (.gleam) das outras boxes */
  max-width: 46ch; justify-self: end;
  padding: clamp(24px, 2.4vw, 38px);
  border-radius: var(--radius-sm);
}
.rg-result {
  display: inline-block; margin-bottom: 14px;
  font: 700 .8rem/1 var(--font-mono);
  letter-spacing: .1em; text-transform: uppercase;
  color: #06230f; background: rgba(37, 211, 102, .92);
  padding: 8px 14px; border-radius: 999px;
}
.rg-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.05;
  color: var(--ink); margin-bottom: 14px;
}
.rg-quote {
  font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.55; color: var(--ink-dim);
}
.rg-stats {
  display: flex; flex-wrap: wrap; gap: clamp(16px, 2.2vw, 32px);
  list-style: none; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line-ink);
}
.rg-stats li { display: flex; flex-direction: column; line-height: 1.15; }
.rg-stats strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem); color: var(--ink);
}
.rg-stats span {
  margin-top: 3px; font: 700 .68rem/1 var(--font-mono);
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim);
}
.rg-item {
  position: relative; margin: 0; width: 100%;
  aspect-ratio: 8 / 5;             /* colagem: duas metades 4/5 lado a lado */
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
  transform-style: preserve-3d; will-change: transform;
}
.rg-face {                        /* COLAGEM: antes na metade esquerda, depois na direita */
  position: absolute; top: 0; bottom: 0; width: 50%;
  background-size: cover; background-position: 50% 28%;
}
.rg-antes  { left: 0; }
.rg-depois { right: 0; }
.rg-tag {
  position: absolute; left: 14px; top: 14px;
  font: 700 .68rem/1 var(--font-mono);
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: rgba(0, 0, 0, .55);
  padding: 6px 10px; border-radius: 999px;
}
.rg-tag--after { background: rgba(37, 211, 102, .92); color: #06230f; }
/* linha divisória sutil entre o antes e o depois */
.rg-depois::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: rgba(255, 255, 255, .85);
}

/* ============================================================
   DOBRA 02 — ANTES/DEPOIS (legado, sem uso)
============================================================ */
.ba-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 46px;
}
.ba-card {
  position: relative; margin: 0;
  aspect-ratio: 4 / 5; border-radius: var(--radius-sm); overflow: hidden;
}
.ba-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: 50% 40%;
  display: grid; place-items: start;
}
/* SUBSTITUA os gradientes por background-image real */
.ba-antes   { background: linear-gradient(160deg, #20211f, #0f100e); }
.ba-antes-2 { background: linear-gradient(160deg, #22201f, #100f0e); }
.ba-antes-3 { background: linear-gradient(160deg, #1e2124, #0e1013); }
.ba-depois {
  background: linear-gradient(160deg, #3a4038, #1a1f19);
  /* começa escondido; revela no HOVER, de baixo p/ cima */
  clip-path: inset(100% 0 0 0);
  transition: clip-path .6s cubic-bezier(.7, 0, .2, 1);
  will-change: clip-path;
}
.ba-card:hover .ba-depois { clip-path: inset(0% 0 0 0); }
.ba-depois-2 { background: linear-gradient(160deg, #3f3a34, #1f1a15); }
.ba-depois-3 { background: linear-gradient(160deg, #34403c, #161f1b); }
.ba-tag {
  margin: 14px; padding: 6px 12px; border-radius: 999px;
  background: rgba(0,0,0,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  font-family: var(--font-mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; color: var(--white);
}
.ba-tag--after { background: rgba(37, 211, 102, .9); color: #06230f; }
.ba-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 16px 16px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  font-size: .9rem; color: var(--text-dim);
}
.ba-cap strong { color: var(--white); }

/* ============================================================
   DOBRA 2 — PROVA SOCIAL (continuação: prints)
============================================================ */
.proof { background: var(--bg-soft); }
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 46px;
}
.proof-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}
.proof-card:hover { border-color: rgba(255,255,255,.35); transform: translateY(-4px); }
.ba { display: grid; grid-template-columns: 1fr 1fr; aspect-ratio: 16 / 11; }
.ba-half {
  display: grid; place-items: center;
  font-family: var(--font-mono); letter-spacing: .14em; font-size: .8rem;
}
.ba-before { background: linear-gradient(160deg, #1e1e1e, #121212); color: var(--text-dim); }
.ba-after  { background: linear-gradient(160deg, #3a3a3a, #1a1a1a); color: var(--white); }
.proof-caption { padding: 14px 18px; color: var(--text-dim); font-size: .95rem; }
.proof-caption strong { color: var(--text); }

.wa-prints { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wa-chat {
  background: #0b120d; border: 1px solid rgba(37, 211, 102, .2);
  border-radius: var(--radius-sm); padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.wa-chat-header {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700; color: var(--wa);
  text-transform: uppercase; letter-spacing: .1em;
  padding-bottom: 8px; border-bottom: 1px solid rgba(37, 211, 102, .15);
}
.wa-bubble {
  background: #17211a; border-radius: 12px 12px 12px 4px;
  padding: 10px 14px; font-size: .92rem; max-width: 90%;
}
.wa-bubble--reply { background: #075e54; align-self: flex-end; border-radius: 12px 12px 4px 12px; }

/* ============================================================
   DOBRA 3 — MÉTODO (pinada com scrub no desktop)
============================================================ */
.method { background: var(--bg); }
.method-pin { padding: 110px 24px; }
.method-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
  align-items: start;
}
.method-left .section-title { margin-bottom: 34px; }
.method-progress {
  width: 3px; height: 180px; background: var(--line-ink);
  border-radius: 3px; overflow: hidden;
}
.method-progress-bar {
  width: 100%; height: 100%; background: var(--ink);
  transform: scaleY(0); transform-origin: top;
}
body.no-gsap .method-progress-bar { transform: none; }

.steps { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.step {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 28px 26px;
  display: grid; grid-template-columns: auto 1fr; gap: 6px 22px;
  opacity: .35;
  transition: border-color .3s ease;
}
body.no-gsap .step { opacity: 1; }
.step.is-active { border-color: rgba(255,255,255,.4); }
.step-num {
  font-family: var(--font-mono);
  font-size: 1.6rem; font-weight: 700; line-height: 1.4; color: var(--wa);
  grid-row: span 2;
}
.step h3 { font-size: 1.15rem; font-weight: 800; }
.step p { color: var(--text-dim); font-size: .95rem; grid-column: 2; }

/* ============================================================
   DOBRA 4 — AUTORIDADE + FAQ
============================================================ */
.authority { background: var(--bg-soft); }
.authority-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
.bio { display: flex; flex-direction: column; gap: 26px; }
.bio-photo { max-width: 320px; border-radius: var(--radius-sm); overflow: hidden; }
.photo-placeholder {
  aspect-ratio: 4 / 5;
  border: 2px dashed rgba(0, 0, 0, .2);
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #e6e8e5, #d8dbd7);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; letter-spacing: .06em; color: var(--ink-dim);
}
.photo-placeholder--small { aspect-ratio: 1; }
.bio-text .section-title { margin-bottom: 16px; }
.bio-text > p { color: var(--ink-dim); margin-bottom: 18px; }
.creds { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.creds li { padding-left: 26px; position: relative; font-size: .95rem; color: var(--ink); }
.creds li::before { content: "✓"; position: absolute; left: 0; color: #128c4b; font-weight: 800; }

.faq-title {
  font-size: 1.1rem; font-weight: 800; margin-bottom: 18px;
  letter-spacing: .01em; color: var(--ink);
}
.faq-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 18px 20px;
  font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--wa); font-size: 1.4rem; font-weight: 400;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { overflow: hidden; }
.faq-body p { padding: 0 20px 18px; color: var(--text-dim); font-size: .95rem; }

/* ============================================================
   DOBRA 5 — OFERTA
============================================================ */
.offer {
  text-align: center; position: relative; overflow: hidden;
  padding-top: 130px; padding-bottom: 130px;
  background: var(--bg);
}
.offer-glow {
  position: absolute; inset: -30% -10%;
  background: radial-gradient(700px 420px at 50% 30%, rgba(37, 211, 102, .1), transparent 65%);
  pointer-events: none;
}
.offer-inner { max-width: 820px; position: relative; }
.offer-scarcity {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: .78rem; letter-spacing: .06em; color: var(--text-dim);
  margin-bottom: 26px;
}
.offer-scarcity strong { color: var(--wa); }
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--wa);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); }
  100% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}
.offer-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 auto 18px; max-width: 20ch;
}
.offer-sub { color: var(--ink-dim); margin-bottom: 34px; }
.offer-sub strong { color: var(--ink); }

/* ============================================================
   RODAPÉ
============================================================ */
.footer { border-top: 1px solid var(--line-ink); padding: 46px 24px; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
  color: var(--ink-dim); font-size: .9rem;
}
.footer .logo { font-size: 1.4rem; color: var(--ink); }
.footer .logo-dot { color: var(--wa); }
.footer a { color: #128c4b; font-weight: 700; }

/* ============================================================
   BOTÃO 3D (bloco Osmo) — card verde que inclina no hover.
   .btn3d-wrap = perspectiva · -outer = rotaciona · -inner = translada
============================================================ */
.btn3d-wrap { perspective: 650px; display: inline-block; }
.btn3d-outer {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 20px 40px; border-radius: 18px;
  background:
    radial-gradient(89% 85% at 17% 78%, #ff8a8a 0%, #f23a3a 38%, #e30613 76%, #a3060f 100%);
  color: #fff;
  font-family: var(--font-display);      /* Montserrat, peso forte */
  font-weight: 800; font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: .01em; line-height: 1; text-transform: uppercase;
  transform-style: preserve-3d; will-change: transform;
  box-shadow: 0 20px 50px rgba(227, 6, 19, .3);
  cursor: pointer;
}
.btn3d-inner {
  display: inline-flex; align-items: center; gap: 12px;
  will-change: transform;
}
.btn3d-inner .wa-icon { color: #fff; }
.btn3d-outer:hover { box-shadow: 0 26px 64px rgba(227, 6, 19, .45); }
/* botão do rodapé da hero */
.hero-footer .btn3d-outer {
  padding: 22px 52px; border-radius: 18px;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem); letter-spacing: .06em;
}
.dobra-cta { margin-top: 44px; }
.dobra-cta--center { text-align: center; }

/* ============================================================
   SHINE (bloco Codrops, MIT) — luz varre a caixa + borda brilha
   ao entrar na viewport. CSS puro via animation-timeline: view().
   Só anima em Chromium 115+; degrada para estático nos demais.
============================================================ */
@property --gl-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --gl-x { syntax: "<percentage>"; initial-value: 35%; inherits: false; }
@property --gl-shine { syntax: "<color>"; initial-value: transparent; inherits: false; }

.gleam {
  --gl-s1: #131313;   /* preenchimento do card */
  --gl-s2: #232323;
  --gl-s3: #3a3a3a;   /* realce das bordas / varredura */
  --_gl-sweep: linear-gradient(115deg, transparent 40%, var(--gl-s3), transparent 70%) var(--gl-x) 0 / 600% 100% padding-box;
  --_gl-cover: radial-gradient(circle at center, var(--gl-s1), transparent) padding-box;
  --_gl-fill: linear-gradient(var(--gl-s1), var(--gl-s1)) padding-box;
  --_gl-shine: conic-gradient(from var(--gl-angle), var(--gl-shine), transparent 20% 80%, var(--gl-shine)) border-box;
  --_gl-edges: linear-gradient(155deg, var(--gl-s3), var(--gl-s2) 20% 80%, var(--gl-s3)) border-box;
  border: 1px solid transparent;
  background: var(--_gl-cover), var(--_gl-sweep), var(--_gl-fill), var(--_gl-shine), var(--_gl-edges);
}
/* animação dirigida pelo GSAP ScrollTrigger (sincroniza com o
   ScrollSmoother; o animation-timeline: view() nativo não funciona
   junto do smooth-scroll por transform). Ver script.js. */

/* aplica o shine a todos os blocos/caixas */
.wa-chat, .step, .faq-item { border: 1px solid transparent; }
.wa-chat.gleam, .step.gleam, .faq-item.gleam { background: var(--_gl-cover), var(--_gl-sweep), var(--_gl-fill), var(--_gl-shine), var(--_gl-edges); }

/* células de foto: moldura fina que brilha (mantém a imagem) */
.reveal-cell.gleam { padding: 2px; border-radius: 15px; }
.reveal-cell.gleam .cell-img { border-radius: 13px; }

/* ============================================================
   SPLITTEXT — linhas mascaradas
============================================================ */
.split-line { overflow: hidden; }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 900px) {
  .hero-nav-links { display: none; }
  .hero-person { inset: 0; justify-content: center; padding: 0; }   /* centralizado no mobile */
  /* headline empilhada (acima do rodapé) + CTAs no rodapé */
  .hero-headline { inset: auto 0 clamp(150px, 24svh, 210px) 0; padding: 0 clamp(20px, 5vw, 40px); display: flex; flex-direction: column; gap: 22px; }
  .hl-col { position: static; top: auto; left: auto; right: auto; align-items: flex-start; text-align: left; gap: 16px; }
  .hl-txt { white-space: normal; font-size: clamp(1.7rem, 8vw, 2.8rem); }
  .hero-footer { left: clamp(20px, 5vw, 40px); right: clamp(20px, 5vw, 40px); bottom: clamp(26px, 6svh, 52px); flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-cta--solid { justify-content: center; }
  .reveal-clip .hero-person img { height: min(80svh, 130vw); width: auto; }
  .hero-caption-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-metrics { text-align: left; }
  .proof-grid, .wa-prints { grid-template-columns: 1fr; }
  .rgallery { grid-template-columns: 1fr; gap: 14px; }
  .method-grid { grid-template-columns: 1fr; gap: 40px; }
  .method-progress { display: none; }
  .authority-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 70px 20px; }
  .method-pin { padding: 70px 20px; }
}
