/* ============================================================
   A MÁQUINA DE CONTEÚDO · Landing de Captura
   Steampunk-tech atmospheric (80%) + Matrix undertone (20%)
   Tokens em DESIGN.md
   ============================================================ */

:root {
  /* Base */
  --bg:           #2a1f15;
  --bg-elevated:  #1f1610;
  --bg-card:      #241a0e;
  --bg-deep:      #15100a;

  /* Text · contraste aumentado pra leitura */
  --text:         #F4EBD4;
  --text-muted:   rgba(244, 235, 212, 0.82);
  --text-dim:     rgba(244, 235, 212, 0.55);

  /* Accents */
  --accent:       #39FF6A;
  --accent-glow:  rgba(57, 255, 106, 0.28);
  --accent-soft:  rgba(57, 255, 106, 0.08);

  /* Copper · MATERIAL DOMINANTE */
  --copper:        #B87333;
  --copper-bright: #D89050;
  --copper-deep:   #8a5524;

  /* Borders (tinted copper) */
  --border:        rgba(184, 115, 51, 0.28);
  --border-strong: rgba(184, 115, 51, 0.55);

  /* Matrix */
  --matrix-dim:    #1a3d2e;

  /* Fonts */
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body:    'JetBrains Mono', 'Courier New', monospace;
  --font-quote:   'Playfair Display', Georgia, serif;

  /* Layout */
  --max-w:  860px;
  --pad-x:  clamp(20px, 5vw, 40px);
  --sec-y:  clamp(80px, 11vw, 120px);
  --r:      10px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
strong { color: var(--accent); font-weight: 600; }
button { font: inherit; }
details summary::-webkit-details-marker { display: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}

/* ============================================================
   BACKGROUND LAYERS · SECTION BG IMAGE + GRID + WARM GLOW
   ============================================================ */
.sec {
  position: relative;
  isolation: isolate;
}
.sec-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.sec-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  will-change: transform;
}
.sec-tint {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(42, 31, 21, 0.35) 0%, rgba(42, 31, 21, 0.78) 70%, rgba(20, 12, 8, 0.92) 100%),
    linear-gradient(180deg, rgba(42, 31, 21, 0.45) 0%, rgba(42, 31, 21, 0.65) 100%);
  pointer-events: none;
}

/* Subtle blueprint grid as overlay */
.bp-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(184, 115, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 115, 51, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(57, 255, 106, 0.45);
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 28px;
  background: rgba(57, 255, 106, 0.04);
  box-shadow: 0 0 18px rgba(57, 255, 106, 0.10);
}
.badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* ============================================================
   BUTTONS — turbinados pra puxar olhar
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0805;
  background: linear-gradient(180deg, #5aff85 0%, var(--accent) 50%, #2ed85a 100%);
  border: none;
  padding: 18px 40px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s;
  box-shadow:
    0 0 0 1px rgba(57, 255, 106, 0.55),
    0 0 24px rgba(57, 255, 106, 0.32),
    0 6px 18px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: btn-breathe 2.6s ease-in-out infinite;
  will-change: transform, filter, box-shadow;
}

/* Shine effect que passa de tempos em tempos */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%);
  transform: skewX(-22deg);
  animation: btn-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-breathe {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(57, 255, 106, 0.55),
      0 0 24px rgba(57, 255, 106, 0.32),
      0 6px 18px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(57, 255, 106, 0.8),
      0 0 44px rgba(57, 255, 106, 0.55),
      0 8px 22px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

@keyframes btn-shine {
  0%   { left: -120%; }
  35%  { left: 130%; }
  100% { left: 130%; }
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
  color: #0a0805;
}
.btn:active {
  transform: translateY(-1px) scale(0.99);
  filter: brightness(0.95);
}

.btn--lg   { font-size: 15px; padding: 20px 48px; gap: 14px; }
.btn--full { width: 100%; padding: 22px; font-size: 15px; }

/* Caret animado dentro do botão */
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.sec-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 400;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 44px;
  line-height: 1.05;
}
.sec-h2 .accent { color: var(--accent); }

.accent { color: var(--accent); }
.copper { color: var(--copper); }

/* ============================================================
   SCROLL ANIMATIONS — dramatic reveal
   ============================================================ */
.anim {
  opacity: 0;
  transform: translateY(56px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s  cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}
.anim.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Variantes por tipo de elemento */
.hero-h1.anim     { transform: translateY(80px) scale(0.94); filter: blur(8px); }
.hero-h1.anim.in  { transform: translateY(0)   scale(1);    filter: blur(0); }

.btn.anim         { transform: translateY(32px) scale(0.92); filter: blur(4px); }
.btn.anim.in      { transform: translateY(0)   scale(1);    filter: blur(0); }

.sec-h2.anim      { transform: translateY(48px) scale(0.95); filter: blur(6px); }
.sec-h2.anim.in   { transform: translateY(0)   scale(1);    filter: blur(0); }

.event-card.anim, .bonus-card.anim {
  transform: translateY(80px) scale(0.94);
  filter: blur(8px);
}
.event-card.anim.in, .bonus-card.anim.in {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ============================================================
   DECORATIVE BRASS GEARS — rotação contínua sutil
   ============================================================ */
.gear-deco {
  position: absolute;
  pointer-events: none;
  color: var(--copper);
  opacity: 0.18;
  z-index: 0;
  animation: gear-spin 60s linear infinite;
  will-change: transform;
  filter: drop-shadow(0 0 8px rgba(184, 115, 51, 0.3));
}
.gear-deco--reverse { animation-direction: reverse; animation-duration: 80s; }
.gear-deco--slow    { animation-duration: 120s; }
@keyframes gear-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   SECTION DIVIDER — brass + LED Zaun
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  margin: 0 auto;
  max-width: 240px;
  position: relative;
  z-index: 1;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}
.divider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 4px var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.1); }
}

/* ============================================================
   ██  HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 96px 0 72px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-bg picture, .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.82;
  will-change: transform;
}
.hero-tint {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(184,115,51,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(57,255,106,0.10) 0%, transparent 55%),
    linear-gradient(180deg, rgba(42,31,21,0.35) 0%, rgba(42,31,21,0.55) 50%, rgba(42,31,21,0.78) 100%);
  pointer-events: none;
}
#matrix {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  opacity: 0.07;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }
.hero-body { max-width: 760px; }

/* SIGILS (Anthropic + OpenAI) */
.hero-sigils {
  position: absolute;
  top: 12%;
  right: clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 0;
  opacity: 0.85;
}
.sigil {
  width: 64px;
  height: 64px;
  color: var(--copper-bright);
  filter: drop-shadow(0 0 12px rgba(57, 255, 106, 0.4));
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
  text-wrap: balance;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.35),
    0 6px 24px rgba(0, 0, 0, 0.55);
}
.hero-h1 .accent {
  text-shadow:
    0 0 18px rgba(57, 255, 106, 0.55),
    0 0 56px rgba(57, 255, 106, 0.32),
    0 2px 0 rgba(0, 0, 0, 0.35);
}

.sec-h2 {
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.4);
}
.virada-h2 {
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Reading progress bar fixa no topo */
.read-progress {
  position: fixed;
  top: 48px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--accent));
  z-index: 49;
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 60ms linear;
}
.hero-h1 .accent {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(57, 255, 106, 0.5);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 620px;
}
.hero-sub strong { color: var(--text); }

.hero-micro {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 36px;
  opacity: 0.85;
}
.tagline::before { content: '[ '; color: var(--copper); }
.tagline::after  { content: ' ]'; color: var(--copper); }

/* ============================================================
   ██  BENEFITS
   ============================================================ */
.sec-benefits {
  position: relative;
  background: var(--bg-elevated);
  padding: var(--sec-y) 0;
  overflow: hidden;
}

.benefits {
  list-style: none;
  position: relative;
  z-index: 1;
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.benefit:last-child { border-bottom: none; }

.b-num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--copper);
  min-width: 56px;
  letter-spacing: -0.02em;
}
.b-num--acc { color: var(--accent); text-shadow: 0 0 18px rgba(57, 255, 106, 0.4); }

.b-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  padding-top: 6px;
}
.b-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.005em;
  text-transform: none;
  margin-bottom: 6px;
}

/* ============================================================
   ██  EVENT CARD
   ============================================================ */
.sec-event {
  padding: var(--sec-y) 0;
  position: relative;
}

.event-card {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  background: var(--bg-card);
  padding: clamp(32px, 5vw, 56px);
  overflow: hidden;
  box-shadow:
    0 12px 48px rgba(20, 12, 8, 0.5),
    inset 0 1px 0 rgba(216, 144, 80, 0.08);
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper) 40%, var(--copper-bright) 50%, var(--copper) 60%, transparent);
}

.event-rows { margin-bottom: 32px; }
.event-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  align-items: center;
}
.event-row:last-child { border-bottom: none; }
.event-lbl {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--copper);
  text-transform: uppercase;
}
.event-val { color: var(--text); }
.event-val.accent { font-weight: 600; }

.event-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.event-desc strong { color: var(--text); }

/* ============================================================
   ██  BONUS
   ============================================================ */
.sec-bonus {
  position: relative;
  background: var(--bg-elevated);
  padding: var(--sec-y) 0;
  overflow: hidden;
}

.bonus-card {
  position: relative;
  border: 1px solid rgba(57, 255, 106, 0.35);
  border-radius: var(--r);
  background: var(--bg-card);
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 56px);
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(57, 255, 106, 0.06),
    inset 0 0 80px rgba(57, 255, 106, 0.02),
    inset 0 1px 0 rgba(57, 255, 106, 0.15);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}

.bonus-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--copper);
  border: 1px solid var(--copper);
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.bonus-h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.bonus-gratis {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 0 56px rgba(57, 255, 106, 0.5);
  letter-spacing: -0.02em;
}
.bonus-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.bonus-meta .sep { margin: 0 10px; color: var(--copper); }

.agents {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 36px;
  text-align: left;
}
.agents li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  padding: 14px 20px;
  background: rgba(57, 255, 106, 0.04);
  border: 1px solid rgba(57, 255, 106, 0.14);
  border-radius: 7px;
  transition: background 0.2s, border-color 0.2s;
}
.agents li:hover {
  background: rgba(57, 255, 106, 0.08);
  border-color: rgba(57, 255, 106, 0.3);
}
.ag-num {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--accent);
  min-width: 24px;
}

.bonus-pitch {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ============================================================
   ██  FAQ
   ============================================================ */
.sec-faq {
  position: relative;
  padding: var(--sec-y) 0;
  overflow: hidden;
}

.faq-list { position: relative; z-index: 1; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  user-select: none;
  transition: color 0.2s;
  list-style: none;
}
.faq-q:hover { color: var(--accent); }
.faq-q span { flex: 1; }

.faq-arrow {
  width: 18px; height: 18px;
  min-width: 18px;
  color: var(--copper);
  transition: transform 0.28s ease;
}
details[open] .faq-arrow { transform: rotate(180deg); color: var(--accent); }
details[open] .faq-q { color: var(--accent); }

.faq-a {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  padding-bottom: 24px;
  padding-right: 36px;
  animation: faq-slide 0.28s ease;
}
@keyframes faq-slide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ██  FINAL CTA
   ============================================================ */
.sec-cta {
  position: relative;
  padding: clamp(100px, 14vw, 150px) 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-bg { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.82;
  will-change: transform;
}
.cta-tint {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 50% 100%, rgba(57,255,106,0.12) 0%, transparent 60%),
    radial-gradient(circle at 50% 20%, rgba(184,115,51,0.10) 0%, transparent 55%),
    linear-gradient(180deg, rgba(42,31,21,0.7) 0%, rgba(42,31,21,0.92) 100%);
  pointer-events: none;
}
#matrix-cta {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  opacity: 0.06;
  pointer-events: none;
}

.sec-cta .container { position: relative; z-index: 1; }
.cta-body {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.cta-h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  text-shadow: 0 0 40px rgba(57, 255, 106, 0.4);
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.cta-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.5;
  color: var(--text);
  margin: 36px auto 0;
  max-width: 540px;
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.cta-quote::before {
  content: '"';
  display: block;
  font-family: var(--font-quote);
  font-size: 56px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 14px;
  font-style: normal;
}
.cta-foot {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 24px;
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}
.footer-txt {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ============================================================
   ██  TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(20, 14, 8, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.topbar-mark {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text);
}
.topbar-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}
.dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.dot--green { background: var(--accent); }

body { padding-top: 48px; }

/* ============================================================
   ██  MARQUEE TICKER
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: rgba(20, 14, 8, 0.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee--reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 50s;
}
.marquee-item {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.01em;
  color: var(--text);
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--copper);
  text-stroke: 1px var(--copper);
  opacity: 0.92;
}
.marquee-dot {
  font-family: var(--font-body);
  font-size: clamp(20px, 3vw, 36px);
  color: var(--accent);
  opacity: 0.85;
  text-shadow: 0 0 12px var(--accent);
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================
   ██  KICKER (label acima de seções)
   ============================================================ */
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-left: 22px;
  position: relative;
}
.kicker::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--copper);
}

/* ============================================================
   ██  SCARCITY BAR (hero)
   ============================================================ */
.scarcity {
  margin-top: 36px;
  max-width: 460px;
}
.scarcity-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.scarcity-label > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.scarcity-pct {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.scarcity-track {
  height: 4px;
  background: rgba(184, 115, 51, 0.18);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.scarcity-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--copper), var(--accent));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(57, 255, 106, 0.5);
  transition: width 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.scarcity-fill.fill { /* set by JS */ }

/* ============================================================
   ██  SEÇÃO VIRADA (problem agitation)
   ============================================================ */
.sec-virada {
  padding: var(--sec-y) 0;
  text-align: center;
  position: relative;
}
.sec-virada .kicker {
  display: block;
  text-align: center;
  padding-left: 0;
}
.sec-virada .kicker::before { display: none; }

.virada-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 56px;
  text-wrap: balance;
}

.virada-body {
  max-width: 640px;
  margin: 0 auto;
}
.virada-p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.virada-p strong { color: var(--text); }
.virada-p em {
  color: var(--copper);
  font-style: italic;
  font-weight: 600;
}

.manifesto {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.6vw, 38px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 56px auto;
  padding: 36px 24px;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  max-width: 720px;
  text-wrap: balance;
}

.virada-q {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 40px;
  text-wrap: balance;
}

/* ============================================================
   ██  SEÇÃO COMPARE (hoje vs depois)
   ============================================================ */
.sec-compare {
  padding: var(--sec-y) 0;
  background: var(--bg-elevated);
  position: relative;
}
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: stretch;
  margin-top: 48px;
}
.compare-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-strong) 25%, var(--border-strong) 75%, transparent);
}
.compare-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
}
.compare-col--after {
  border-color: rgba(57, 255, 106, 0.3);
  box-shadow:
    0 0 40px rgba(57, 255, 106, 0.06),
    inset 0 1px 0 rgba(57, 255, 106, 0.1);
}
.compare-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
.compare-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--copper);
  text-transform: uppercase;
}
.compare-label--green { color: var(--accent); }
.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-col li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.compare-col li strong { color: var(--text); }
.compare-col--before li::before {
  content: '✕';
  position: absolute;
  left: 0; top: 0;
  color: var(--copper-deep);
  font-size: 14px;
  font-weight: 600;
}
.compare-col--after li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 0 6px var(--accent-glow);
}
.compare-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   ██  4 BLOCOS NUMERADOS
   ============================================================ */
.sec-h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 44px;
  line-height: 1.1;
}

.blocos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.bloco {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.bloco::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0.55;
}
.bloco:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.bloco-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--copper);
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  text-shadow: 0 0 24px rgba(184, 115, 51, 0.3);
}
.bloco-h4 {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.bloco-p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================================
   ██  PERSONAS (pra quem é)
   ============================================================ */
.sec-personas {
  padding: var(--sec-y) 0;
  position: relative;
}
.personas {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.persona {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.persona:last-child { border-bottom: none; }
.persona-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  border: 1px solid rgba(57, 255, 106, 0.35);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.persona p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}
.persona strong { color: var(--text); font-weight: 600; }

.not-for {
  margin-top: 64px;
  padding: 32px 28px;
  background: rgba(20, 14, 8, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.not-for-h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.not-for ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.not-for li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.not-for li::before {
  content: '✕';
  position: absolute;
  left: 0; top: 0;
  color: var(--copper);
  font-weight: 600;
}

/* ============================================================
   ██  BIO BRUNO (com foto)
   ============================================================ */
.sec-bio {
  padding: var(--sec-y) 0;
  position: relative;
}
.bio-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 44px;
}

/* ============================================================
   ██  BIO CAROUSEL · fotos alternando
   ============================================================ */
.bio-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow:
    0 14px 52px rgba(20, 12, 8, 0.7),
    inset 0 1px 0 rgba(216, 144, 80, 0.14);
}
.bio-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.bio-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.bio-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.bio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease-out;
}
.bio-slide.is-active img {
  transform: scale(1.06);
}
.bio-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 12, 8, 0.85) 100%);
  pointer-events: none;
}
.bio-slide-cap {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text);
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bio-slide-cap .dot {
  width: 6px; height: 6px;
}

/* Dots indicators */
.bio-carousel-dots {
  position: absolute;
  bottom: 16px;
  right: 18px;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.bio-dot {
  width: 18px;
  height: 3px;
  border: none;
  background: rgba(232, 220, 192, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
  border-radius: 2px;
}
.bio-dot.is-active {
  background: var(--accent);
  width: 28px;
  box-shadow: 0 0 8px var(--accent-glow);
}
.bio-dot:hover { background: var(--copper-bright); }

/* Fallback caso JS não carregue ainda */
.bio-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bio-photo-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.bio-photo {
  aspect-ratio: 3/4;
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 12px 48px rgba(20, 12, 8, 0.6),
    inset 0 1px 0 rgba(216, 144, 80, 0.12);
}
.bio-photo--main { aspect-ratio: 3/4; }
.bio-photo--small { aspect-ratio: 1/1; }
.bio-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.bio-photo:hover img { transform: scale(1.04); }
.bio-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 12, 8, 0.6) 100%);
  pointer-events: none;
}
.photo-cap {
  position: absolute;
  bottom: 8px;
  left: 10px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Placeholder visual quando foto ainda não foi gerada */
.photo-placeholder {
  background:
    repeating-linear-gradient(45deg,
      rgba(184, 115, 51, 0.06) 0 8px,
      rgba(184, 115, 51, 0.10) 8px 16px),
    var(--bg-card);
}
.photo-placeholder img { opacity: 0.0; }
.photo-placeholder::before {
  content: '+ FOTO';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--copper);
  z-index: 1;
}

/* ============================================================
   ██  INFOGRÁFICO DO SISTEMA · blueprint steampunk
   ============================================================ */
.sec-info {
  padding: var(--sec-y) 0;
  position: relative;
}
.info-intro {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 660px;
  margin: -20px 0 48px;
}
.info-intro strong { color: var(--text); }

.info-blueprint {
  margin: 0;
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  padding: 0;
  background: var(--bg-deep);
  box-shadow:
    0 18px 64px rgba(20, 12, 8, 0.75),
    inset 0 1px 0 rgba(216, 144, 80, 0.18),
    0 0 80px rgba(57, 255, 106, 0.05);
}
.info-blueprint::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), var(--copper-bright), var(--copper), transparent);
  z-index: 3;
}
.info-blueprint::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
  z-index: 3;
}

/* 4 rivets brass nas corners */
.info-blueprint img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.info-blueprint:hover img {
  transform: scale(1.015);
}

.info-caption {
  position: absolute;
  bottom: 14px;
  left: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text);
  text-transform: uppercase;
  background: rgba(20, 12, 8, 0.78);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.info-cap-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.info-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  margin-top: 36px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
}
.info-legend strong { color: var(--accent); font-weight: 600; }
.info-sep { color: var(--copper); opacity: 0.55; padding: 0 4px; }

/* ============================================================
   ██  ANTES vs DEPOIS · prova social visual
   ============================================================ */
.sec-transform {
  padding: var(--sec-y) 0;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.transform-intro {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 660px;
  margin: -20px 0 56px;
}
.transform-intro strong { color: var(--accent); font-weight: 600; }

.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.3fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 40px;
}

.transform-col {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
}
.transform-col--depois {
  border-color: rgba(57, 255, 106, 0.35);
  box-shadow:
    0 0 50px rgba(57, 255, 106, 0.08),
    inset 0 1px 0 rgba(57, 255, 106, 0.12);
}

.transform-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
.transform-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--copper);
  text-transform: uppercase;
}
.transform-label--green { color: var(--accent); }
.transform-stat {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text);
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.transform-stat--big {
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--accent);
  text-shadow: 0 0 18px rgba(57, 255, 106, 0.35);
}

.transform-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.transform-thumbs--4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.transform-thumb {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-deep);
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.transform-thumb:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(20, 12, 8, 0.6);
  border-color: var(--border-strong);
}
.transform-thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.transform-col--depois .transform-thumb {
  border-color: rgba(57, 255, 106, 0.3);
}
.transform-col--depois .transform-thumb:hover {
  border-color: rgba(57, 255, 106, 0.55);
  box-shadow: 0 8px 28px rgba(57, 255, 106, 0.18);
}

/* VS divider central */
.transform-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  padding: 0 8px;
}
.transform-vs-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, transparent, var(--copper-bright), transparent);
}
.transform-vs-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--copper-bright);
  letter-spacing: 0.1em;
  background: var(--bg-elevated);
  padding: 8px 12px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 12px rgba(184, 115, 51, 0.4);
}

.transform-foot {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.4;
  color: var(--text);
  text-align: center;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.transform-foot strong { font-weight: 400; }
.transform-foot .accent {
  text-shadow: 0 0 24px rgba(57, 255, 106, 0.4);
}

/* ============================================================
   ██  RESULTADOS REAIS · prova social com números
   ============================================================ */
.sec-results {
  padding: var(--sec-y) 0;
  position: relative;
}
.results-intro {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
  margin: -20px 0 56px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow:
    0 12px 48px rgba(20, 12, 8, 0.5),
    inset 0 1px 0 rgba(216, 144, 80, 0.08);
}
.result-card {
  background: var(--bg-card);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: background 0.25s;
  position: relative;
}
.result-card:hover {
  background: var(--bg-elevated);
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.result-card:hover::before { width: 60%; }

.result-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow:
    0 0 28px rgba(57, 255, 106, 0.42),
    0 0 64px rgba(57, 255, 106, 0.18);
}
.result-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.results-foot {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--text);
  text-align: center;
  margin: 12px auto 36px;
  max-width: 600px;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.results-foot strong { font-weight: 400; }
.results-foot .accent {
  text-shadow: 0 0 24px rgba(57, 255, 106, 0.4);
}
.results-cta {
  text-align: center;
}

/* ============================================================
   ██  CREDIBILITY WALL (prova social visual)
   ============================================================ */
.credibility {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  position: relative;
}
.credibility::before {
  content: 'PROVA';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--copper);
  text-transform: uppercase;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-card);
}
.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
  gap: 6px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
  position: relative;
}
.cred-item:last-child { border-right: none; }
.cred-item:hover { background: var(--bg-elevated); }

.cred-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--copper);
  text-transform: uppercase;
}
.cred-name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(244, 235, 212, 0.15);
}
.cred-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.bio-text { display: flex; flex-direction: column; gap: 18px; }
.bio-text p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.bio-text strong { color: var(--accent); }

.bio-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--text) !important;
  position: relative;
  padding: 20px 0 0;
  margin-top: 12px !important;
  border-top: 1px solid var(--border);
}
.bio-quote::before {
  content: '"';
  display: block;
  font-family: var(--font-quote);
  font-size: 56px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 12px;
  font-style: normal;
}

.bio-handles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.bio-press {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.press-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--copper);
  text-transform: uppercase;
}
.press-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.press-dot { color: var(--copper); opacity: 0.6; }
.handle {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}
.hdot { color: var(--copper); }

/* ============================================================
   ██  FOOTER (atualizado)
   ============================================================ */
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-mark {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text);
}
.footer-txt {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 700px) {
  /* CTAs mobile - garantir que não saem da viewport */
  .btn {
    font-size: 12.5px;
    letter-spacing: 0.1em;
    padding: 16px 22px;
    gap: 8px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  .btn--lg {
    font-size: 13px;
    padding: 17px 26px;
  }
  .btn--full { padding: 18px 14px; font-size: 13px; }
  /* CTAs cheios em containers apertados */
  .hero-body .btn,
  .bonus-card .btn,
  .compare-cta .btn,
  .cta-body .btn {
    display: flex;
    width: 100%;
    max-width: 360px;
  }

  .event-row { grid-template-columns: 80px 1fr; gap: 14px; }
  .faq-a { padding-right: 0; }
  .hero { min-height: auto; padding: 100px 0 64px; }
  .hero-sigils {
    flex-direction: row;
    top: 80px;
    bottom: auto;
    right: 20px;
    left: auto;
    transform: none;
    opacity: 0.65;
    gap: 14px;
  }
  .sigil { width: 36px; height: 36px; }
  .b-num { font-size: 26px; min-width: 44px; }
  .agents { max-width: 100%; }

  /* Topbar mobile */
  .topbar-meta { font-size: 9.5px; letter-spacing: 0.1em; }
  .topbar-mark { font-size: 10px; letter-spacing: 0.12em; }

  /* Compare mobile - stack vertical */
  .compare {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .compare-divider { display: none; }

  /* Blocos mobile - single column */
  .blocos {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bloco-num { font-size: 40px; }

  /* Bio mobile - stack */
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bio-carousel {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 3/4;
  }
  .bio-gallery {
    max-width: 320px;
    margin: 0 auto;
  }
  .bio-photo--main { aspect-ratio: 3/4; }
  .bio-photo--small { aspect-ratio: 1/1; }

  /* Results grid mobile - 2 cols */
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-foot { font-size: 16px; }

  /* Infográfico mobile */
  .info-caption {
    bottom: 8px;
    left: 8px;
    font-size: 9px;
    padding: 6px 10px;
    letter-spacing: 0.12em;
  }
  .info-legend {
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
  }
  .info-sep { display: none; }

  /* Transform (antes/depois) mobile - stack vertical */
  .transform-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .transform-vs {
    flex-direction: row;
    padding: 18px 0;
    width: 100%;
  }
  .transform-vs-line {
    height: 1px;
    width: auto;
    background: linear-gradient(90deg, transparent, var(--copper-bright), transparent);
  }
  .transform-thumbs--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .transform-stat { font-size: 18px; }
  .transform-stat--big { font-size: 20px; }

  /* Credibility wall mobile - 2 cols + last full */
  .cred-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cred-item {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .cred-item:nth-child(2n) { border-right: none; }
  .cred-item:last-child {
    grid-column: 1 / -1;
    border-bottom: none;
  }
  .cred-item:nth-child(4) { border-bottom: 1px solid var(--border); }

  /* Manifesto mobile */
  .manifesto { padding: 28px 16px; margin: 40px auto; }

  /* Footer mobile */
  .footer-row { flex-direction: column; text-align: center; gap: 8px; }

  /* Marquee mobile */
  .marquee { padding: 16px 0; }
  .marquee-item { font-size: 22px; }
  .marquee-dot { font-size: 18px; }
}

@media (max-width: 420px) {
  .badge { font-size: 10px; padding: 6px 12px; }
  .scarcity { max-width: 100%; }
}
