/* ==========================================================================
   HOG — Head of Growth · Landing Page
   Tema: dark + neon rosa/roxo
   ========================================================================== */

:root {
  --bg: #07030f;
  --bg-2: #0c0618;
  --bg-3: #120a22;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-hot: rgba(255, 45, 149, 0.45);
  --text: #f4f1fa;
  --text-dim: #b9b0cf;
  --text-faint: #7d739a;
  --pink: #ff2d95;
  --pink-soft: #ff5fb8;
  --purple: #8b5cf6;
  --violet: #c084fc;
  --cyan: #22d3ee;
  --grad: linear-gradient(92deg, #ff2d95 0%, #c084fc 55%, #8b5cf6 100%);
  --grad-soft: linear-gradient(92deg, rgba(255,45,149,.14), rgba(139,92,246,.14));
  --radius: 20px;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(255, 45, 149, 0.35); color: #fff; }

img, svg, canvas { max-width: 100%; display: block; }

.container { width: min(1160px, 92%); margin: 0 auto; position: relative; z-index: 2; }
.container-narrow { width: min(820px, 92%); }

/* ---------- Texto gradiente / eyebrow ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 18px;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 3, 15, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.nav-inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nav-logo span { color: var(--pink); }
.nav-logo em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  padding: 18px 34px;
  font-size: 16px;
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.35), 0 0 60px rgba(139, 92, 246, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 34px rgba(255, 45, 149, 0.55), 0 0 90px rgba(139, 92, 246, 0.4);
  filter: brightness(1.08);
}
.btn-lg { padding: 20px 40px; font-size: 17px; }
.btn-full { width: 100%; }
.btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn-nav {
  background: transparent;
  border: 1px solid var(--border-hot);
  color: var(--text);
  padding: 10px 22px;
  font-size: 14px;
}
.btn-nav:hover {
  background: rgba(255, 45, 149, 0.12);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.3);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.hero-glow-1 { width: 640px; height: 640px; background: rgba(139, 92, 246, 0.28); top: -180px; left: -160px; }
.hero-glow-2 { width: 560px; height: 560px; background: rgba(255, 45, 149, 0.2); bottom: -140px; right: -120px; }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 92%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 34px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.55; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--text-dim);
  max-width: 720px;
  margin-bottom: 40px;
}
.hero-cta { margin-bottom: 70px; }

/* VSL */
.vsl-frame {
  width: min(820px, 100%);
  padding: 3px;
  border-radius: 24px;
  background: var(--grad);
  box-shadow: 0 0 60px rgba(255, 45, 149, 0.25), 0 0 120px rgba(139, 92, 246, 0.2);
}
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 21px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.25), transparent 55%),
    radial-gradient(ellipse at 75% 85%, rgba(255, 45, 149, 0.2), transparent 55%),
    #0d0719;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  cursor: pointer;
}
.play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 45, 149, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.play-btn svg { width: 34px; height: 34px; color: #fff; margin-left: 4px; }
.video-placeholder:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 0 50px rgba(255, 45, 149, 0.75);
}
.vp-label { font-weight: 600; color: var(--text-dim); font-size: 15px; letter-spacing: 0.04em; }
.vp-small { border-radius: 15px; }
.vp-small .play-btn { width: 58px; height: 58px; }
.vp-small .play-btn svg { width: 24px; height: 24px; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: var(--text-faint);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mouse {
  width: 24px; height: 38px;
  border: 1.5px solid var(--text-faint);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.wheel {
  width: 3px; height: 8px;
  border-radius: 3px;
  background: var(--pink);
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================================
   SEÇÕES — base
   ========================================================================== */
.section { position: relative; padding: 130px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.section-sub {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 26px;
}

/* ==========================================================================
   PROBLEMA
   ========================================================================== */
.section-problema {
  background:
    radial-gradient(ellipse 900px 500px at 85% 0%, rgba(139, 92, 246, 0.08), transparent),
    var(--bg);
}
.promessa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 54px 0 80px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(10px);
}
.card p { font-size: 19px; line-height: 1.6; }
.card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.tag-green { background: rgba(34, 211, 238, 0.12); color: var(--cyan); border: 1px solid rgba(34, 211, 238, 0.3); }
.tag-pink { background: rgba(255, 45, 149, 0.12); color: var(--pink-soft); border: 1px solid rgba(255, 45, 149, 0.35); }
.card-verdade { border-color: var(--border-hot); box-shadow: 0 0 40px rgba(255, 45, 149, 0.08) inset; }

.stat-hero { text-align: center; margin: 0 auto 60px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(90px, 14vw, 190px);
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(255, 45, 149, 0.35));
}
.stat-pct { font-size: 0.5em; }
.stat-desc { font-size: 20px; margin-top: 10px; }
.stat-source { font-size: 14px; color: var(--text-faint); }

.lead-text {
  font-size: 21px;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
  color: var(--text-dim);
}
.lead-text strong { color: var(--text); }

.problema-verdade { max-width: 860px; margin: 0 auto; display: grid; gap: 22px; }
.pv-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  align-items: start;
  padding: 30px 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.pv-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 6px;
}
.pv-resposta { border-color: var(--border-hot); background: var(--grad-soft); }
.pv-resposta .pv-label { color: var(--pink-soft); }
.pv-destaque {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.3;
}

/* ==========================================================================
   PILARES
   ========================================================================== */
.section-pilares {
  background:
    radial-gradient(ellipse 1000px 600px at 10% 20%, rgba(255, 45, 149, 0.06), transparent),
    var(--bg-2);
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 60px 0 70px;
}
.pilar-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 28px 34px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.pilar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.pilar-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hot);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 45, 149, 0.12);
}
.pilar-card:hover::before { opacity: 1; }
.pilar-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-faint);
}
.pilar-icon {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 22px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pilar-icon svg { width: 34px; height: 34px; display: block; }

/* --- Animações dos ícones dos pilares --- */

/* Visão: olho piscando */
.icon-eye svg { animation: eye-blink 4.6s ease-in-out infinite; transform-origin: center; }
@keyframes eye-blink {
  0%, 90%, 100% { transform: scaleY(1); }
  93%, 95% { transform: scaleY(0.06); }
}

/* Foco: radar varrendo + alvos aparecendo */
.radar-sweep {
  animation: radar-spin 3.4s linear infinite;
  transform-origin: 12px 12px;
  transform-box: view-box;
}
@keyframes radar-spin { to { transform: rotate(360deg); } }
.radar-blip { animation: radar-blip 3.4s ease-in-out infinite; }
.radar-blip-2 { animation-delay: -1.7s; }
@keyframes radar-blip {
  0%, 8%, 60%, 100% { opacity: 0; }
  14%, 40% { opacity: 1; }
}

/* Rotina: ciclo girando (gira, pausa, gira) */
.icon-loop {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loop-spin 4.2s ease-in-out infinite;
}
@keyframes loop-spin {
  0% { transform: rotate(0deg); }
  45% { transform: rotate(360deg); }
  100% { transform: rotate(360deg); }
}

/* Base tecnológica: dados fluindo entre computadores */
.net-link {
  stroke-dasharray: 2.6 2.6;
  animation: net-flow 1.4s linear infinite;
}
.net-link-2 { animation-delay: -0.5s; }
.net-link-3 { animation-delay: -0.9s; }
@keyframes net-flow { to { stroke-dashoffset: -10.4; } }
.pilar-card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pilar-card p { color: var(--text-dim); font-size: 15.5px; line-height: 1.65; }

.pilares-conclusao { max-width: 860px; margin: 0 auto; text-align: center; display: grid; gap: 28px; }
.pilares-conclusao p { color: var(--text-dim); font-size: 18px; }
.pc-destaque {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text) !important;
}

/* ==========================================================================
   PROVA SOCIAL
   ========================================================================== */
.section-prova { background: var(--bg); }
.prova-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.depo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px 22px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.depo-card:hover { transform: translateY(-6px); border-color: var(--border-hot); }
.depo-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  margin-top: 18px;
  padding-left: 6px;
}

/* ==========================================================================
   PROGRAMA — TIMELINE
   ========================================================================== */
.section-programa {
  background:
    radial-gradient(ellipse 900px 700px at 90% 40%, rgba(139, 92, 246, 0.07), transparent),
    var(--bg-2);
}
.timeline { position: relative; margin: 80px 0 70px; padding-left: 0; }
.timeline-line {
  position: absolute;
  left: 31px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}
.timeline-progress {
  width: 100%;
  height: 0%;
  background: var(--grad);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(255, 45, 149, 0.6);
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 34px;
  margin-bottom: 44px;
}
.step:last-child { margin-bottom: 0; }
.step-marker {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-faint);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.step.active .step-marker {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 45, 149, 0.5);
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 38px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.step.active .step-card {
  border-color: var(--border-hot);
  box-shadow: 0 0 50px rgba(255, 45, 149, 0.07);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}
.step-destaque { color: var(--text); font-weight: 600; margin-bottom: 10px; }
.step-card p:not(.step-destaque) { color: var(--text-dim); font-size: 15.5px; }

.programa-loop {
  background: var(--grad-soft);
  border: 1px solid var(--border-hot);
  border-radius: var(--radius);
  padding: 48px 44px;
  text-align: center;
}
.pl-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 700;
  line-height: 1.4;
  max-width: 760px;
  margin: 0 auto 36px;
}
.loop-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.loop-item {
  background: rgba(7, 3, 15, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.loop-item span { color: var(--text-dim); font-size: 14.5px; }
.loop-item strong {
  font-family: var(--font-display);
  font-size: 18px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   PARE DE COPIAR
   ========================================================================== */
.section-copiar { background: var(--bg); text-align: center; }
.copiar-lista { max-width: 640px; margin: 44px auto; display: grid; gap: 12px; }
.copiar-lista p { font-size: 19px; color: var(--text-dim); }
.copiar-lista em { font-style: normal; color: var(--pink-soft); }
.copiar-punch {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 80px;
}

.stats-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  max-width: 860px;
  margin: 0 auto 14px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.stat-big-dim { background: none; color: var(--text-faint); }
.stat-card p { color: var(--text-dim); font-size: 15.5px; }
.stat-vs {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-faint);
}
.stat-source-line { font-size: 13.5px; color: var(--text-faint); margin-bottom: 80px; }

.stat-ebitda { margin-bottom: 70px; }
.stat-ebitda > p:first-child { font-size: 19px; color: var(--text-dim); }
.ebitda-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  margin: 8px 0 10px;
}

.comunidade-banner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--grad-soft);
  border: 1px solid var(--border-hot);
  border-radius: var(--radius);
  padding: 34px 40px;
  font-size: 19px;
}

/* ==========================================================================
   ENTREGA
   ========================================================================== */
.section-entrega { background: var(--bg-2); }
.entrega-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; align-items: stretch; }
.entrega-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 46px 44px;
}
.check-list { list-style: none; display: grid; gap: 18px; margin-top: 8px; }
.check-list li {
  position: relative;
  padding-left: 40px;
  font-size: 17.5px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(255, 45, 149, 0.4);
}
.entrega-conquista {
  background: var(--grad-soft);
  border-color: var(--border-hot);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.conquista-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}

/* ==========================================================================
   GARANTIA
   ========================================================================== */
.section-garantia { background: var(--bg); }
.garantia-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-hot);
  border-radius: 28px;
  padding: 70px 60px;
  box-shadow: 0 0 80px rgba(139, 92, 246, 0.1);
}
.garantia-selo {
  width: 92px; height: 92px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid var(--border-hot);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-soft);
}
.garantia-selo svg { width: 46px; height: 46px; }
.garantia-card h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.garantia-destaque { font-size: 20px; font-weight: 600; margin-bottom: 18px; }
.garantia-card > p:last-child { color: var(--text-dim); }

/* ==========================================================================
   OFERTA
   ========================================================================== */
.section-oferta {
  background: var(--bg-2);
  text-align: center;
  overflow: hidden;
}
.oferta-glow {
  position: absolute;
  width: 900px; height: 600px;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255, 45, 149, 0.1), rgba(139, 92, 246, 0.07) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.pricing-card {
  position: relative;
  max-width: 560px;
  margin: 60px auto 40px;
  background: rgba(12, 6, 24, 0.85);
  border: 1px solid var(--border-hot);
  border-radius: 28px;
  padding: 60px 52px 52px;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 60px rgba(255, 45, 149, 0.15), 0 0 140px rgba(139, 92, 246, 0.12);
}
.pricing-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 26px;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.45);
  white-space: nowrap;
}
.price-line { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.price-currency { font-size: 26px; font-weight: 700; color: var(--text-dim); }
.price-value {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 104px);
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(255, 45, 149, 0.3));
}
.price-cents { font-size: 28px; font-weight: 700; color: var(--text-dim); }
.price-period { font-size: 20px; color: var(--text-faint); margin-left: 4px; }
.price-alt { color: var(--text-faint); font-size: 15px; margin: 14px 0 34px; }
.pricing-features {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 13px;
  margin-bottom: 38px;
}
.pricing-features li { position: relative; padding-left: 32px; font-size: 16px; }
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--pink-soft);
  font-weight: 800;
}
.oferta-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.oferta-tags span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 20px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.section-faq { background: var(--bg); }
.faq-list { display: grid; gap: 14px; margin-top: 40px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: var(--border-hot); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--pink-soft);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-icon::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.faq-icon::after { width: 2px; height: 14px; top: 4px; left: 10px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-body { padding: 0 28px 26px; color: var(--text-dim); }

/* ==========================================================================
   FINAL
   ========================================================================== */
.section-final { background: var(--bg-2); }
.final-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border-radius: 28px;
  padding: 76px 60px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 45, 149, 0.14), transparent 60%),
    radial-gradient(ellipse at 85% 100%, rgba(139, 92, 246, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-hot);
  box-shadow: 0 0 90px rgba(255, 45, 149, 0.1);
}
.final-atencao {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-soft);
  border: 1px solid var(--border-hot);
  border-radius: 999px;
  padding: 9px 22px;
  margin-bottom: 28px;
}
.final-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 22px;
}
.final-card > p:not(.final-atencao) {
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
}
.footer p { color: var(--text-faint); font-size: 14px; }

/* ==========================================================================
   ESTADOS DE ANIMAÇÃO (JS aplica)
   ========================================================================== */
.js [data-reveal] { opacity: 0; }
.js .reveal-hero { opacity: 0; }
.js .step { opacity: 0; }

/* Reduz movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal], .js .reveal-hero, .js .step { opacity: 1 !important; transform: none !important; }
  .pulse-dot, .wheel { animation: none; }
  .icon-eye svg, .radar-sweep, .radar-blip, .icon-loop, .net-link { animation: none !important; }
  .radar-blip { opacity: 1 !important; }
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1024px) {
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 90px 0; }
  .promessa-grid { grid-template-columns: 1fr; }
  .prova-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .entrega-grid { grid-template-columns: 1fr; }
  .stats-duo { grid-template-columns: 1fr; }
  .stat-vs { padding: 4px 0; }
  .loop-items { grid-template-columns: 1fr; }
  .pv-row { grid-template-columns: 1fr; gap: 10px; padding: 26px; }
  .step { grid-template-columns: 48px 1fr; gap: 20px; }
  .step-marker { width: 48px; height: 48px; font-size: 19px; }
  .timeline-line { left: 23px; }
  .step-card { padding: 26px; }
  .garantia-card, .final-card { padding: 50px 28px; }
  .pricing-card { padding: 50px 28px 40px; }
  .nav-logo em { display: none; }
  .scroll-hint { display: none; }
  .hero { padding-top: 120px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .pilares-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 16px 24px; font-size: 15px; }

  /* CTA do hero compacto no mobile */
  .hero-cta { width: 100%; margin-bottom: 48px; }
  .hero-cta .btn-lg {
    width: 100%;
    padding: 14px 18px;
    font-size: 14.5px;
    line-height: 1.35;
    gap: 0;
    text-wrap: balance;
  }
  .hero-cta .btn-arrow { display: none; }
}

/* ==========================================================================
   CTA LARGO (btn-full) — MOBILE
   ========================================================================== */
@media (max-width: 520px) {
  .btn-full {
    padding: 15px 16px;
    font-size: 14.5px;
    line-height: 1.35;
    gap: 0;
    min-height: 54px;
    text-wrap: balance;
    hyphens: none;
  }
  .btn-full .btn-arrow { display: none; }
}

@media (max-width: 360px) {
  .btn-full {
    padding: 14px 12px;
    font-size: 13.5px;
    min-height: 50px;
  }
}

/* Sem hover em telas de toque: evita o botão "grudar" no estado ampliado */
@media (hover: none) {
  .btn-primary:hover {
    transform: none;
    filter: none;
    box-shadow: 0 0 24px rgba(255, 45, 149, 0.35), 0 0 60px rgba(139, 92, 246, 0.25);
  }
  .btn:active { transform: scale(0.985); }
}
