/* ============================================
   FONT FACES — Combinação 02
   Thunder (display) · Right Grotesk (body/labels)
   ============================================ */

/* Thunder — display headlines condensadas */
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-BlackHC.woff2') format('woff2');
  font-weight: 900; font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-ExtraBoldHC.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-BoldHC.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Thunder';
  src: url('fonts/Thunder-BlackHCItalic.woff2') format('woff2');
  font-weight: 900; font-style: italic; font-display: swap;
}

/* Right Grotesk — corpo, labels, UI */
@font-face {
  font-family: 'Right Grotesk';
  src: url('fonts/RightGrotesk-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Right Grotesk';
  src: url('fonts/RightGrotesk-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Right Grotesk';
  src: url('fonts/RightGrotesk-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Right Grotesk';
  src: url('fonts/RightGrotesk-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}

/* Right Grotesk Compact — eyebrows, labels, caps */
@font-face {
  font-family: 'Right Grotesk Compact';
  src: url('fonts/RightGrotesk-CompactBlack.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Right Grotesk Compact';
  src: url('fonts/RightGrotesk-CompactBold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Right Grotesk Compact';
  src: url('fonts/RightGrotesk-CompactRegular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* Inter via <link> no HTML — sem @import duplicado */

/* ============================================
   TOKENS
   ============================================ */
:root {
  --gold:        #D4AF37;   /* premium metallic gold */
  --gold-bright: #FDF1A9;   /* glow top */
  --gold-dark:   #9C7718;   /* deep rich shade */
  --gold-faint:  rgba(212,175,55,0.08);
  --gold-grad:   linear-gradient(135deg, #FBF4C9 0%, #D4AF37 40%, #AA7F1F 100%);
  --bg:          #070605;   /* rich black warm */
  --bg-2:        #0A0908;   /* slightly elevated */
  --bg-3:        #0D0B0A;   /* section elevated */
  --bg-card:     rgba(13, 11, 10, 0.45); /* translucent base for glass */
  --border:      rgba(212,175,55,0.12); /* unified with glass */
  --border-glass: rgba(255,255,255,0.03);
  --border-gold: rgba(212,175,55,0.25);
  --text:        #FDFBF2;   /* warm off-white for luxury feel */
  --text-80:     rgba(253,251,242,0.80);
  --text-70:     rgba(253,251,242,0.70);
  --text-60:     rgba(253,251,242,0.68);
  --text-40:     rgba(253,251,242,0.40);
  --text-25:     rgba(253,251,242,0.25);
  --text-15:     rgba(253,251,242,0.15);
  --green:       #4ade80;
  --red:         #f87171;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Oswald', sans-serif;
  --font-mono:    'Inter', system-ui, sans-serif;
  --radius:      8px;
  --radius-lg:   14px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Skip to content — acessibilidade teclado */
.skip-to-content {
  position: fixed; top: -100%; left: 1rem; z-index: 9999;
  padding: 0.6rem 1.25rem;
  background: var(--gold); color: #000;
  font-weight: 700; font-size: 0.875rem;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}
.skip-to-content:focus { top: 1rem; }

::selection { background: rgba(212,175,55,0.2); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.2); border-radius: 3px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 6rem 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--bg-3); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* Contadores: esconde "0" inicial, JS revela ao animar */
[data-target] { opacity: 0; }

/* ============================================
   NOISE TEXTURE
   ============================================ */
.noise {
  position: absolute; inset: 0;
  opacity: 0.025; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.eyebrow .line { display: block; width: 2rem; height: 1px; background: rgba(212,175,55,0.5); }

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900; line-height: 0.92; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 0.95; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.0; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.gold { color: var(--gold); }

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 0.95; letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-60);
  line-height: 1.8;
  max-width: 38rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-sub { margin: 0.75rem auto 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.875rem 2rem;
  font-family: var(--font-sans); font-size: 0.875rem;
  font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  border-radius: var(--radius); transition: all 0.25s ease;
  cursor: pointer; border: none; text-decoration: none;
}
.btn-gold {
  background-color: var(--gold); /* fallback explícito */
  background: var(--gold-grad); color: #000;
  box-shadow: 0 4px 20px rgba(212,175,55,0.25), inset 0 1px 1px rgba(255,255,255,0.7);
  font-weight: 800;
  letter-spacing: 0.1em;
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-out);
}
.btn-gold::after {
  content: '';
  position: absolute; top: -50%; left: -75%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.22);
  transform: skewX(-20deg);
  animation: btn-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shimmer {
  0%   { left: -75%; opacity: 0; }
  10%  { opacity: 1; }
  40%  { left: 125%; opacity: 0; }
  100% { left: 125%; opacity: 0; }
}
.btn-gold:hover {
  filter: brightness(1.15) contrast(1.05);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.45), inset 0 1px 1px rgba(255,255,255,0.9);
}
.btn-outline {
  background: transparent; color: var(--text-80);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-outline:hover {
  border-color: rgba(212,175,55,0.55);
  color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.9rem; }
.btn-xl { padding: 1.25rem 3.5rem; font-size: 0.9rem; }

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,0,0,0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
#site-header.scrolled {
  background: rgba(7, 6, 5, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-glass);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; padding: 0 1.5rem;
  max-width: 78rem; margin: 0 auto;
}
.header-logo { display: flex; align-items: center; gap: 0.75rem; }
.header-nav {
  display: flex; align-items: center; gap: 2rem;
}
.header-nav a {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-60); transition: color 0.2s ease;
}
.header-nav a:hover { color: var(--gold); }
.header-logo img { height: 30px; width: auto; }
.header-logo span {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-60);
}
.header-cta {
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  padding: 0.6rem 1.4rem; border-radius: 4px;
  border: 1px solid rgba(212,175,55,0.4);
  transition: all 0.35s ease;
}
.header-cta:hover {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.65);
}
#site-header.scrolled .header-cta {
  color: #000; background: var(--gold-grad);
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(212,175,55,0.35);
}
#site-header.scrolled .header-cta:hover {
  filter: brightness(1.15) contrast(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.45), inset 0 1px 1px rgba(255,255,255,0.8);
}
.scroll-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.07);
}
.scroll-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-bright), #fff);
  transition: width 0.1s linear;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: #000;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('ADG/imagens/2026/seja-bem-vindo-1.webp');
  background-size: cover; background-position: 60% center;
  opacity: 0.55;
  z-index: 0;
  transform: scale(1.05); /* parallax effect scaling */
  will-change: transform, opacity, filter;
}
.hero-glow { will-change: transform, opacity; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,6,5,1) 32%, rgba(7,6,5,0.4) 100%);
}
.hero-glow {
  position: absolute; top: 10%; left: 0%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; padding-top: 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem; align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  display: none; /* substituído por .eyebrow-line (animado via Anime.js) */
}
/* Linha dourada do eyebrow — animada via hero-anim.js */
.eyebrow-line {
  display: block;
  width: 2.5rem; /* fallback sem JS */
  height: 1px;
  background: rgba(212,175,55,0.5);
  flex-shrink: 0;
  will-change: width;
}
/* Chars individuais do H1 — criados via wrapChars() */
.ch {
  display: inline-block;
  will-change: opacity;
}
.ch-sp {
  display: inline; /* espaço normal */
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 900; line-height: 0.88;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  text-shadow: 0 10px 40px rgba(7,6,5,0.8);
}
.hero-h1 .line-1 { display: block; }
.hero-h1 .line-2 { display: block; color: var(--text-60); font-style: italic; }
.hero-h1 .line-3 { display: block; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-60);
  line-height: 1.8; max-width: 30rem;
  margin-bottom: 2.25rem;
}
.hero-sub strong { color: var(--text-80); font-weight: 600; }
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
}
.hero-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; color: var(--text-40);
  letter-spacing: 0.08em;
}
.hero-badge::before {
  content: ''; display: block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
/* Hero image */
.hero-photo {
  position: relative; display: flex;
  align-items: flex-end; justify-content: center;
}
.hero-photo img {
  width: 100%; max-width: 420px;
  filter: drop-shadow(0 0 40px rgba(212,175,55,0.12));
  position: relative; z-index: 1;
}
.hero-photo-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 200px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.15) 0%, transparent 70%);
  pointer-events: none;
}
/* Scroll caret */
.scroll-caret {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.scroll-caret span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-25); }
.caret-icon { animation: bounce-down 2s ease-in-out infinite; }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
#trust-bar {
  background: rgba(13, 11, 10, 0.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 1.25rem 0;
  position: relative;
  z-index: 10;
}
.trust-bar-inner {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 0 3.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0;
}
.trust-num {
  font-size: 1.15rem; font-weight: 800;
  color: var(--gold); font-family: var(--font-display); line-height: 1;
}
.trust-sep {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-40); line-height: 1.2;
}
.trust-divider {
  width: 1px; height: 2rem;
  background: var(--border);
}

/* ============================================
   ATLETAS
   ============================================ */
#atletas { padding: 5.5rem 0; background: var(--bg-3); }
.atletas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 3rem;
}
.atletas-single {
  grid-template-columns: 1fr;
}
.atleta-card-full {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 520px;
}
.atleta-card-full img { display: none; }
.atleta-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  opacity: 0;
  animation: atleta-crossfade 20s ease-in-out infinite;
}
.atleta-slide:nth-child(1) { animation-delay: 0s; }
.atleta-slide:nth-child(2) { animation-delay: 5s; }
.atleta-slide:nth-child(3) { animation-delay: 10s; }
.atleta-slide:nth-child(4) { animation-delay: 15s; }
.atleta-slide-desk { display: none; }
@keyframes atleta-crossfade {
  0%, 100% { opacity: 0; }
  5%, 20% { opacity: 1; }
  25% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .atleta-slide { animation: none; opacity: 0; }
  .atleta-slide:nth-child(1) { opacity: 1; }
}
.atleta-card {
  position: relative; overflow: hidden;
  background: var(--bg-card); cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.atleta-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,6,5,0.98) 0%, rgba(7,6,5,0.15) 55%, transparent 100%);
  z-index: 1;
}
.atleta-card img {
  width: 100%; height: 360px;
  object-fit: cover; object-position: top center;
  display: block; filter: grayscale(15%) contrast(1.05);
  transition: transform 0.6s var(--ease-out), filter 0.5s ease;
}
.atleta-card:hover img {
  transform: scale(1.06); filter: grayscale(0%) contrast(1.12);
}
.atleta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom center, rgba(212,175,55,0.12) 0%, transparent 70%);
  z-index: 1; opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.atleta-card:hover::before { opacity: 1; }
.atleta-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.25rem 1.25rem;
  z-index: 2;
}
.atleta-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold); font-size: 0.55rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.2rem 0.5rem; border-radius: 2px;
  margin-bottom: 0.4rem;
}
.atleta-name {
  display: block; font-size: 1rem; font-weight: 700; color: #fff;
}
.atleta-title {
  display: block; font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 0.2rem;
}
.atletas-footnote {
  text-align: center; margin-top: 1.5rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-25);
}

/* ============================================
   DIAGNÓSTICO — Os 5 erros
   ============================================ */
#diagnostico { padding: 6rem 0; }
.diagnostico-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.diagnostico-sticky { position: sticky; top: 6rem; }
.diagnostico-lead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 1.5rem;
}
.diagnostico-body {
  font-size: 0.9rem; color: var(--text-60);
  line-height: 1.75; margin-bottom: 2rem;
}
.diagnostico-cta-note {
  font-size: 0.75rem; color: var(--text-40);
  font-style: italic; margin-top: 1rem;
}
.erros-list { display: flex; flex-direction: column; gap: 0; }
.erro-item {
  display: grid; grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem; padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.erro-item:first-child { border-top: 1px solid var(--border); }
.erro-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 900;
  color: rgba(212,175,55,0.15); line-height: 1;
  padding-top: 0.1rem;
  transition: color 0.3s ease;
}
.erro-item:hover .erro-num { color: rgba(212,175,55,0.4); }
.erro-content h3 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem;
  color: var(--text-80);
}
.erro-content p {
  font-size: 0.8rem; color: var(--text-40); line-height: 1.6;
}
.erro-tag {
  display: inline-block; margin-top: 0.5rem;
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2);
  padding: 0.15rem 0.5rem; border-radius: 2px;
}

/* ============================================
   REVELAÇÃO
   ============================================ */
#revelacao {
  background: var(--bg); padding: 5rem 0;
  text-align: center; position: relative; overflow: hidden;
}
.revelacao-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.revelacao-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.5) 30%, rgba(212,175,55,0.5) 70%, transparent);
  margin-bottom: 3rem;
}
.revelacao-line-bottom {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.3) 30%, rgba(212,175,55,0.3) 70%, transparent);
  margin-top: 3rem;
}
.revelacao-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 44rem; margin: 0 auto 2rem;
}
.revelacao-sub {
  font-size: 1rem; color: var(--text-60);
  max-width: 34rem; margin: 0 auto 3rem;
  line-height: 1.7;
}
.revelacao-items {
  display: flex; justify-content: center; gap: 4rem;
  flex-wrap: wrap; margin-top: 3.5rem;
}
.revelacao-item { text-align: center; }
.revelacao-item-label {
  display: block; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-25); margin-bottom: 0.3rem;
}
.revelacao-item-val {
  display: block; font-size: 0.9rem;
  font-weight: 600; color: var(--text-60);
  font-style: italic; font-family: var(--font-display);
}
.revelacao-item-val del { color: var(--text-25); margin-right: 0.4rem; font-style: normal; }
.revelacao-item-val em { color: var(--gold); font-style: normal; }

/* ============================================
   ORIGEM
   ============================================ */
#origem { padding: 6rem 0; background: var(--bg-2); }
.origem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.origem-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 0.75rem;
  position: relative;
}
.foto-main {
  grid-column: 1; grid-row: 1 / 3;
}
.foto-main img {
  width: 100%; height: 460px;
  object-fit: cover; object-position: top;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.foto-side img {
  width: 100%; height: 220px;
  object-fit: cover; object-position: top;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.origem-tag-float {
  position: absolute; bottom: -1rem; left: -1rem;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 0.7rem 1.1rem; border-radius: 4px;
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  backdrop-filter: blur(8px);
}
.origem-copy { padding-right: 1rem; }
.origem-copy p {
  font-size: 0.92rem; color: var(--text-60);
  line-height: 1.8; margin-bottom: 1rem;
}
.origem-copy strong { color: var(--text-80); }
.origem-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 2rem;
}
.origem-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
}
.origem-stat-num {
  display: block; font-size: 1.6rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.origem-stat-lbl {
  display: block; font-size: 0.65rem;
  color: var(--text-40); margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* ============================================
   O MÉTODO 2.0
   ============================================ */
#metodo { padding: 6rem 0; }
.metodo-upgrade {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2);
  padding: 0.5rem 1rem; border-radius: 20px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.metodo-upgrade .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse-gold 2s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.metodo-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start; margin-bottom: 4rem;
}
.metodo-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.12;
  margin-bottom: 1.25rem;
}
.metodo-copy p {
  font-size: 0.9rem; color: var(--text-60);
  line-height: 1.75; margin-bottom: 1rem;
}
.metodo-divisoes {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 2rem;
}
.divisao-chip {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; padding: 0.5rem 0.875rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; color: var(--text-60);
  transition: border-color 0.2s, color 0.2s;
}
.divisao-chip:hover, .divisao-chip.active {
  border-color: rgba(212,175,55,0.4); color: var(--gold);
}
.metodo-planilhas-count {
  text-align: center; padding: 2rem;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
}
.planilhas-big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900; color: var(--gold);
  line-height: 1; display: block;
}
.planilhas-label {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-40);
  margin-top: 0.5rem; display: block;
}
/* Screenshots grid */
.screenshots-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
.screenshot-card {
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
  overflow: hidden; background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.screenshot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.2);
}
.screenshot-card img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
  border-bottom: 1px solid var(--border);
}
.screenshot-card.large img { height: 260px; }
.screenshot-body {
  padding: 1rem 1.25rem;
}
.screenshot-body h4 {
  font-size: 0.85rem; font-weight: 700; margin-bottom: 0.3rem;
}
.screenshot-body p {
  font-size: 0.72rem; color: var(--text-40); line-height: 1.5;
}
/* Mockup full-width */
.mockup-full {
  margin-top: 3rem; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.mockup-full img { width: 100%; display: block; }

/* ============================================
   DIETA — Ângulo #1 obstáculo
   ============================================ */
#dieta {
  padding: 6rem 0; background: var(--bg-2);
  position: relative; overflow: hidden;
}
.dieta-bg-num {
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: clamp(12rem, 20vw, 20rem);
  font-weight: 900; color: rgba(212,175,55,0.03);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}
.dieta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.dieta-stat-side { text-align: center; }
.dieta-pct {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900; line-height: 0.9;
  display: block; margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #E8C870 0%, #D4AF37 60%, #A87E38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dieta-pct-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-40);
  display: block; line-height: 1.5;
}
.dieta-pct-source {
  font-size: 0.6rem; color: var(--text-25);
  margin-top: 1rem; display: block;
  font-style: italic;
}
.dieta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 1.25rem;
}
.dieta-copy p {
  font-size: 0.92rem; color: var(--text-60);
  line-height: 1.75; margin-bottom: 1rem;
}
.dieta-copy strong { color: var(--text-80); }
.dieta-bullets { margin-top: 1.5rem; }
.dieta-bullet {
  display: flex; gap: 0.75rem; align-items: baseline;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-60);
}
.dieta-bullet::before {
  content: '—'; color: var(--gold); flex-shrink: 0;
}

/* ============================================
   TRANSFORMAÇÕES — Antes/Depois
   ============================================ */
#transformacoes { padding: 6rem 0; }
.stats-row-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 4rem;
}
.stat-cell {
  background: var(--bg-card); padding: 2rem;
  text-align: center;
}
.stat-cell-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 900;
  display: block; line-height: 1;
  background: linear-gradient(135deg, #E8C870 0%, #D4AF37 60%, #A87E38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-cell-lbl {
  font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-40);
  margin-top: 0.4rem; display: block; line-height: 1.4;
}
.ba-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-bottom: 3.5rem;
}
.ba-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border-glass);
  background: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.ba-card img {
  width: 100%; display: block;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.ba-card:hover img { transform: scale(1.03); }
.ba-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,6,5,0.8) 0%, transparent 100%);
  padding: 1.25rem 1rem 0.875rem;
}
.ba-pill {
  display: inline-block;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.2rem 0.5rem; border-radius: 2px;
}
.ba-label-hint {
  display: block; font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-top: 0.3rem;
}
/* Testimonials */
.testimonials-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg); padding: 1.75rem;
  border-left: 2px solid rgba(212,175,55,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.4s var(--ease-out);
}
.testi-card:hover { 
  border-left-color: rgba(212,175,55,0.8);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.testi-card:hover { border-left-color: rgba(212,175,55,0.6); }
.testi-stars {
  display: flex; gap: 0.2rem; margin-bottom: 1rem;
}
.testi-star {
  width: 12px; height: 12px;
  background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.testi-text {
  font-size: 0.85rem; color: var(--text-60);
  line-height: 1.7; margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(228,194,112,0.3) 0%, rgba(139,117,54,0.2) 100%);
  border: 1px solid rgba(212,175,55,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; color: var(--gold-bright);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.06);
}
.testi-name { font-size: 0.82rem; font-weight: 600; }
.testi-loc { font-size: 0.68rem; color: var(--text-40); }

/* ============================================
   ACIDENTE — Backstory
   ============================================ */
#acidente { padding: 6rem 0; background: var(--bg-3); }
.acidente-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.acidente-img-wrap {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}
.acidente-img-wrap img { width: 100%; display: block; }
.acidente-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,6,5,0.85) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.25rem;
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-40);
}
.acidente-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 1.5rem;
}
.acidente-copy > p {
  font-size: 0.92rem; color: var(--text-60);
  line-height: 1.8; margin-bottom: 1rem;
}
.acidente-copy strong { color: var(--text-80); }
.acidente-blockquote {
  border-left: 2px solid rgba(212,175,55,0.4);
  padding-left: 1.25rem; margin: 1.75rem 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: var(--text-70); line-height: 1.5;
}
.acidente-price-box {
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin-top: 1.75rem;
}
.acidente-price-box p {
  font-size: 0.8rem; color: var(--text-40); margin-bottom: 0.4rem;
}
.acidente-price-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--gold); display: block; line-height: 1;
}
.acidente-price-box .nota {
  font-size: 0.72rem; color: var(--text-40);
  margin-top: 0.4rem; display: block;
}

/* ============================================
   OFERTA
   ============================================ */
#oferta { padding: 6rem 0; background: var(--bg-2); }
/* Price comparison */
.compare-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 3rem;
}
.compare-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.compare-col.is-adg {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.04);
}
.compare-col img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
  filter: grayscale(20%);
  border-bottom: 1px solid var(--border);
}
.compare-col.is-adg img { filter: none; }
.compare-body { padding: 1.5rem; }
.compare-tag {
  font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; display: block;
  color: var(--text-40); margin-bottom: 0.5rem;
}
.compare-col.is-adg .compare-tag { color: var(--gold); }
.compare-price {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  display: block; line-height: 1;
  color: rgba(255,255,255,0.2);
}
.compare-col.is-adg .compare-price { color: var(--gold); }
.compare-desc {
  font-size: 0.8rem; color: var(--text-40);
  margin-top: 0.4rem; line-height: 1.5;
}
.compare-col.is-adg .compare-desc { color: var(--text-60); }
/* Offer card */
@keyframes border-glow-pulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.55; }
}
.offer-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.1), 0 40px 100px rgba(7,6,5,0.8), 0 10px 40px rgba(212,175,55,0.12);
}
.offer-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,175,55,0.5) 0%, transparent 50%, rgba(212,175,55,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: border-glow-pulse 3s ease-in-out infinite;
}
.offer-card-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.offer-card-inner { position: relative; z-index: 1; padding: 2.5rem; }
.offer-logo { height: 32px; width: auto; display: block; margin: 0 auto 1.75rem; }
.price-display {
  text-align: center; margin-bottom: 1.25rem;
}
.price-main {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0.25rem;
}
.price-currency {
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); margin-top: 0.75rem;
}
.price-int {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 5.5rem);
  font-weight: 900; color: var(--gold);
  line-height: 0.9;
}
.price-cents {
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  margin-top: 0.75rem;
}
.price-period {
  display: block; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-40);
  margin-top: 0.5rem;
}
.price-parcelado {
  text-align: center;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 4px; padding: 0.6rem; margin: 1rem 0;
  font-size: 0.78rem; color: var(--text-60);
}
.price-parcelado strong { color: var(--text-80); }
.price-nota {
  text-align: center; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
/* Deliverables in offer */
.offer-deliverables {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin: 1.5rem 0;
}
.offer-deliv {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.875rem 1rem;
  display: flex; gap: 0.75rem; align-items: center;
}
.offer-deliv img {
  width: 48px; height: 36px;
  object-fit: cover; border-radius: 3px; flex-shrink: 0;
}
.offer-deliv-txt h4 {
  font-size: 0.78rem; font-weight: 700; margin-bottom: 0.2rem;
}
.offer-deliv-txt p {
  font-size: 0.68rem; color: var(--text-40); line-height: 1.3;
}
/* Guarantee */
.guarantee-row {
  display: flex; gap: 1.25rem; align-items: center;
  padding: 1.25rem; margin: 1.5rem 0;
  background: rgba(74,222,128,0.04);
  border: 1px solid rgba(74,222,128,0.12);
  border-radius: var(--radius);
}
.guarantee-row img { width: 72px; flex-shrink: 0; }
.guarantee-row p {
  font-size: 0.82rem; color: var(--text-60); line-height: 1.6;
}
.guarantee-row p strong { color: var(--text-80); }
.offer-cta-note {
  text-align: center; font-size: 0.68rem;
  color: var(--text-40); margin-top: 1rem; line-height: 1.6;
}
/* Triple affirmation */
.triple-affirm {
  margin-top: 2rem; padding-top: 1.75rem;
  border-top: 1px solid var(--border); text-align: center;
}
.affirm-item {
  padding: 0.6rem 0; font-size: 0.82rem;
  color: var(--text-40); line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.affirm-item strong { color: var(--gold); }
.affirm-item:last-child { border-bottom: none; }

/* ============================================
   FAQ
   ============================================ */
#faq { padding: 6rem 0; }
.faq-list { max-width: 52rem; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 1.4rem 0;
  font-size: 0.92rem; font-weight: 600; color: var(--text-80);
  text-align: left; cursor: pointer; gap: 1rem;
  transition: color 0.2s ease;
}
.faq-question:hover { color: #fff; }
.faq-toggle {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-40);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.faq-toggle svg {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.35s var(--ease-out);
}
.faq-item.open .faq-toggle {
  background: var(--gold); border-color: var(--gold);
  color: #000;
}
.faq-item.open .faq-toggle svg {
  transform: rotate(180deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 40rem; }
.faq-answer-inner {
  padding-bottom: 1.4rem; padding-right: 2rem;
}
.faq-answer-inner p {
  font-size: 0.87rem; color: var(--text-60); line-height: 1.75;
}
.faq-answer-inner strong { color: var(--text-80); }

/* ============================================
   FINAL CTA
   ============================================ */
#final-cta {
  padding: 8rem 0; background: #000;
  position: relative; overflow: hidden; text-align: center;
}
.final-bg-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem;
}
.final-eyebrow::before, .final-eyebrow::after {
  content: ''; display: block;
  width: 2.5rem; height: 1px; background: rgba(212,175,55,0.4);
}
.final-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 44rem; margin: 0 auto 1.5rem;
}
.final-sub {
  font-size: 1rem; color: var(--text-60);
  max-width: 34rem; margin: 0 auto 2.5rem; line-height: 1.7;
}
.final-bullets {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  margin-bottom: 3rem;
}
.final-bullet {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; color: var(--text-60);
}
.final-bullet::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
.final-price-reminder {
  font-size: 0.7rem; color: var(--text-40);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 1.25rem; display: block;
}
.final-closing {
  display: none;
  margin-top: 4rem; max-width: 28rem;
  margin-left: auto; margin-right: auto;
  padding-top: 2.5rem; border-top: 1px solid rgba(212,175,55,0.1);
}
.final-closing p {
  font-size: 0.8rem; font-style: italic;
  color: var(--text-25); line-height: 1.7;
  font-family: var(--font-display);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.footer-logo { height: 26px; width: auto; opacity: 0.5; }
.footer-brand {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-40);
}
.footer-copy { font-size: 0.68rem; color: var(--text-25); }
.footer-links {
  display: flex; gap: 2rem;
}
.footer-links a {
  font-size: 0.68rem; color: var(--text-25);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-60); }

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
#sticky-cta-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.875rem 1rem;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212,175,55,0.2);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
#sticky-cta-mobile.visible {
  transform: translateY(0);
}
#sticky-cta-mobile .btn {
  width: 100%; justify-content: center;
  padding: 1rem 1.5rem;
  animation: cta-pulse 2.5s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(212,175,55,0.28); }
  50%       { box-shadow: 0 4px 32px rgba(212,175,55,0.55), 0 0 0 4px rgba(212,175,55,0.12); }
}
@media (max-width: 768px) {
  #sticky-cta-mobile { display: block; }
}

/* ============================================
   NAV TOGGLE — hamburger mobile
   ============================================ */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  padding: 8px; border-radius: var(--radius);
  background: transparent; border: none; cursor: pointer;
  transition: background 0.2s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,0.05); }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-80);
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}
/* Estado aberto — X */
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  /* Menu mobile: overlay full-screen */
  body.nav-open .header-nav {
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
    position: fixed; inset: 0; z-index: 99;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    justify-content: center;
    padding: 2rem;
  }
  body.nav-open .header-nav a {
    font-size: 1.4rem; font-weight: 700; letter-spacing: 0.12em;
    color: var(--text-80);
  }
  body.nav-open .header-nav a:hover { color: var(--gold); }
  /* Garantir que o header fique acima do overlay */
  #site-header { z-index: 100; }
}

/* ============================================
   PREFERS-REDUCED-MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  [data-target] { opacity: 1; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
#whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 85; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
@media (max-width: 768px) {
  #whatsapp-float { bottom: 5.5rem; }
}

/* ============================================
   DIVIDERS
   ============================================ */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.25) 30%, rgba(212,175,55,0.25) 70%, transparent);
  box-shadow: 0 2px 10px rgba(212,175,55,0.1);
}
.divider-subtle {
  height: 1px;
  background: var(--border);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .final-closing { display: block; }
  .hero-bg { background-image: url('ADG/imagens/2026/seja-bem-vindo-1.webp'); background-position: center top; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photo { display: none; }
  .hero-sub { max-width: 100%; }
  .diagnostico-inner { grid-template-columns: 1fr; gap: 3rem; }
  .diagnostico-sticky { position: relative; top: auto; }
  .metodo-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .screenshots-grid { grid-template-columns: 1fr 1fr; }
  .screenshot-card.large { grid-column: 1 / 3; }
}
@media (max-width: 768px) {
  .atletas-grid { grid-template-columns: 1fr 1fr; }
  .atleta-card img { height: 260px; }
  .origem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .origem-photos { grid-template-columns: 1fr 1fr; }
  .foto-main { grid-column: 1 / 3; grid-row: 1; }
  .foto-main img { height: 280px; }
  .foto-side img { height: 160px; }
  .dieta-grid { grid-template-columns: 1fr; gap: 2rem; }
  .dieta-stat-side { order: -1; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .acidente-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .compare-row { grid-template-columns: 1fr; }
  .offer-deliverables { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .scroll-caret { display: none; }
  .trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.5rem;
  }
  .trust-item { justify-content: center; }
  .trust-sep { align-items: center; text-align: center; }
  .trust-item-full { grid-column: 1 / -1; }
  .stats-row-4 { grid-template-columns: 1fr 1fr; }
  .revelacao-items { gap: 2rem; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .screenshot-card.large { grid-column: auto; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .atletas-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero-h1 { font-size: 3.8rem; line-height: 0.88; }
  .offer-card-inner { padding: 1.75rem 1.25rem; }
  .price-parcelado { font-size: 0.82rem; }
  .btn-xl { padding: 1.1rem 2rem; font-size: 0.85rem; }
  .final-h2 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .revelacao-quote { font-size: clamp(1.6rem, 7vw, 2.5rem); }
}
@media (min-width: 1024px) {
  .atleta-slide:not(.atleta-slide-desk) { display: none !important; }
  .atleta-slide-desk {
    display: block !important;
    opacity: 1 !important;
    animation: none !important;
    background-position: top center;
  }
  .final-closing { display: none !important; }
  .atleta-card-full .atleta-info { display: none !important; }
}
