/* ============================================================
   Atleta do Vôlei — Landing
   Tema: dark futurista · glassmorphism · glow laranja/dourado
   Cores e fontes extraídas do app (DM Sans + Inter)
   ============================================================ */

:root {
  /* Marca (do app) */
  --orange: #cc5f31;
  --orange-bright: #f0641e;
  --gold: #dfa61c;
  --gold-light: #f8bd43;
  --blue: #3c5198;
  --navy: #071d40;

  /* Superfícies dark */
  --bg: #060e24;
  --bg-2: #0a1838;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);

  /* Texto */
  --text: #eef2ff;
  --text-dim: #aab4d4;
  --text-soft: #7e89ad;

  --grad: linear-gradient(100deg, var(--gold-light) 0%, var(--orange-bright) 55%, var(--orange) 100%);
  --grad-gold: linear-gradient(100deg, #ffd86b 0%, var(--gold) 60%, var(--orange) 110%);

  --radius: 18px;
  --radius-lg: 28px;
  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Fundos decorativos ---------- */
.bg-aurora {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(60% 50% at 12% 8%, rgba(204, 95, 49, 0.22), transparent 60%),
    radial-gradient(55% 45% at 92% 12%, rgba(223, 166, 28, 0.16), transparent 60%),
    radial-gradient(70% 60% at 50% 110%, rgba(60, 81, 152, 0.28), transparent 60%),
    var(--bg);
}
#net-canvas { position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.5; }

/* ---------- Tipografia utilitária ---------- */
.text-grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-gold {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); padding: 7px 14px; border: 1px solid var(--border);
  border-radius: 999px; background: var(--surface); backdrop-filter: blur(8px);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-bright); box-shadow: 0 0 12px var(--orange-bright); }
.eyebrow-gold .dot { background: var(--gold-light); box-shadow: 0 0 12px var(--gold-light); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: 0.95rem; line-height: 1;
  padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s; white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 0.86rem; }
.btn-lg { padding: 17px 30px; font-size: 1rem; }
.btn-primary { background: var(--grad); color: #1a0e06; box-shadow: 0 10px 30px -8px rgba(240, 100, 30, 0.6); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(240, 100, 30, 0.75); }
.btn-gold { background: var(--grad-gold); color: #2a1c00; box-shadow: 0 10px 30px -8px rgba(223, 166, 28, 0.55); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(223, 166, 28, 0.7); }
.btn-ghost { background: var(--surface); border-color: var(--border-strong); color: var(--text); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-3px); background: var(--surface-2); border-color: var(--orange-bright); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 14, 36, 0.78); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 96px; gap: 20px; }
.brand-logo { height: 56px; width: auto; transition: transform 0.25s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.04); }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { font-size: 0.92rem; color: var(--text-dim); font-weight: 500; transition: color 0.2s; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--grad); transition: width 0.25s var(--ease); border-radius: 2px; }
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }
.header-cta { margin-left: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 0 24px;
  background: rgba(6, 14, 36, 0.97); backdrop-filter: blur(14px);
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { max-height: 420px; padding: 12px 24px 24px; }
.mobile-menu a { padding: 12px 0; color: var(--text-dim); border-bottom: 1px solid var(--border); }
.mobile-menu a.btn { border: 0; color: #1a0e06; margin-top: 12px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 140px 0 90px; overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; transform: scale(1.08); animation: slowzoom 24s ease-in-out infinite alternate; }
@keyframes slowzoom { to { transform: scale(1.18); } }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,14,36,0.55) 0%, rgba(6,14,36,0.82) 55%, var(--bg) 100%); }

.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 50px; align-items: center; }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.02; font-weight: 800; letter-spacing: -0.02em; margin: 22px 0 20px; }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--text-dim); max-width: 540px; margin-bottom: 32px; }
.hero-sub strong { color: var(--text); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: flex-start; }
.stat-num, .stat-word, .stat-plus { font-size: 2.2rem; font-weight: 800; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat { position: relative; }
.stat small { font-size: 0.82rem; color: var(--text-soft); margin-top: 8px; max-width: 130px; }
.stat:has(.stat-plus) { flex-direction: row; align-items: baseline; flex-wrap: wrap; }
.stat:has(.stat-plus) small { width: 100%; }

/* Hero visual / phone */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: min(330px, 78%); border-radius: 38px; overflow: hidden;
  border: 1px solid var(--border-strong); box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.4s var(--ease);
}
.phone img { width: 100%; display: block; }
.phone-glow { position: absolute; inset: -2px; z-index: 2; pointer-events: none; border-radius: 38px; box-shadow: inset 0 0 60px rgba(240,100,30,0.18); }
.tilt { transform: perspective(1000px) rotateY(-9deg) rotateX(4deg); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 50% { transform: perspective(1000px) rotateY(-9deg) rotateX(4deg) translateY(-14px); } }

.float-badge {
  position: absolute; padding: 11px 16px; border-radius: 14px; font-size: 0.85rem; font-weight: 600;
  background: rgba(10,24,56,0.7); border: 1px solid var(--border-strong); backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.6); white-space: nowrap;
}
.badge-1 { top: 16%; left: -4%; animation: floaty 5s ease-in-out infinite; }
.badge-2 { bottom: 18%; right: -6%; animation: floaty 7s ease-in-out infinite reverse; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint span { width: 22px; height: 36px; border: 2px solid var(--border-strong); border-radius: 12px; position: relative; }
.scroll-hint span::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; background: var(--orange-bright); border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; background: rgba(255,255,255,0.015); }
.marquee-track { display: flex; align-items: center; gap: 26px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-size: 1.05rem; font-weight: 700; color: var(--text-dim); }
.marquee-track i { color: var(--orange-bright); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS genéricas
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(60,81,152,0.06) 50%, transparent); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.section-title { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
.section-lead { color: var(--text-dim); font-size: 1.08rem; max-width: 560px; }

/* ---------- O que é (definição) ---------- */
.about-inner { max-width: 880px; margin: 0 auto; }
.about-def {
  font-size: clamp(1.1rem, 1.9vw, 1.35rem); line-height: 1.7; text-align: center;
  color: var(--text-dim); max-width: 760px; margin: 0 auto 40px;
}
.about-def strong { color: var(--text); font-weight: 600; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.about-fact {
  padding: 20px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border); transition: border-color 0.3s, background 0.3s;
}
.about-fact:hover { border-color: var(--border-strong); background: var(--surface-2); }
.about-fact dt { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-bright); margin-bottom: 8px; }
.about-fact dd { color: var(--text); font-size: 0.96rem; }

/* ---------- Recursos ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  position: relative; padding: 30px; border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--border); overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.feature-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 0% 0%, rgba(240,100,30,0.12), transparent 60%); opacity: 0; transition: opacity 0.35s; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--grad); margin-bottom: 20px; box-shadow: 0 10px 24px -8px rgba(240,100,30,0.6); }
.feature-icon svg { width: 28px; height: 28px; fill: #1a0e06; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; position: relative; }
.feature-card p { color: var(--text-dim); font-size: 0.96rem; position: relative; }

/* ---------- Como funciona ---------- */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 18px; max-width: 980px; margin: 0 auto; }
.step { text-align: center; padding: 14px; }
.step-num { display: inline-block; font-size: 2.6rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 0.96rem; }
.step-line { width: 100%; min-width: 40px; height: 2px; margin-top: 38px; background: linear-gradient(90deg, var(--orange), transparent); border-radius: 2px; align-self: start; }

/* ---------- Showcase / O app por dentro ---------- */
.showcase { overflow-x: auto; padding: 8px 0 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--orange) transparent; }
.showcase::-webkit-scrollbar { height: 8px; }
.showcase::-webkit-scrollbar-thumb { background: rgba(240,100,30,0.5); border-radius: 8px; }
.showcase-track { display: flex; gap: 22px; padding: 0 max(24px, calc((100vw - var(--container)) / 2 + 24px)); width: max-content; }
.showcase-card {
  flex: 0 0 auto; width: 256px; border-radius: 22px; overflow: hidden; scroll-snap-align: center;
  border: 1px solid var(--border); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.7);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.showcase-card:hover { transform: translateY(-8px) scale(1.02); border-color: var(--orange-bright); }
.showcase-card img { width: 100%; display: block; }

/* ---------- Lançamento / progresso ---------- */
.launch-grid { display: grid; grid-template-columns: 320px 1fr; gap: 50px; align-items: center; margin-bottom: 48px; }

.launch-ring-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.launch-ring { position: relative; width: 260px; height: 260px; }
.launch-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 14; }
.ring-fill {
  fill: none; stroke: url(#ringGrad); stroke-width: 14; stroke-linecap: round;
  stroke-dasharray: 540.35; stroke-dashoffset: 540.35;
  transition: stroke-dashoffset 1.6s var(--ease);
  filter: drop-shadow(0 0 10px rgba(240,100,30,0.5));
}
.launch-ring-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring-num { font-size: 4rem; font-weight: 800; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ring-pct { font-size: 1.6rem; font-weight: 800; color: var(--orange-bright); margin-top: 6px; }
.launch-ring-label small { color: var(--text-soft); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }
.launch-eta { color: var(--text-dim); font-size: 0.95rem; }
.launch-eta strong { color: var(--gold-light); }

.launch-list { display: flex; flex-direction: column; gap: 16px; }
.task-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.task-name { font-weight: 600; font-size: 1rem; }
.task-status { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.task-status.done { color: #8ef0a8; background: rgba(59,134,70,0.18); border: 1px solid rgba(59,134,70,0.4); }
.task-status.doing { color: var(--gold-light); background: rgba(248,189,67,0.14); border: 1px solid rgba(248,189,67,0.35); }
.task-status.todo { color: var(--text-soft); background: var(--surface); border: 1px solid var(--border); }
.task-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.07); overflow: hidden; }
.task-bar i { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--grad); transition: width 1.2s var(--ease); }
.task.done .task-bar i { background: linear-gradient(90deg, #3b8646, #6fce7d); }

/* CTA de seguir as redes */
.follow-cta {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  padding: 36px 40px; border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(204,95,49,0.14), rgba(10,24,56,0.5));
  border: 1px solid var(--border-strong);
}
.follow-text h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; line-height: 1.15; margin-bottom: 8px; }
.follow-text p { color: var(--text-dim); max-width: 460px; }
.follow-buttons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.follow-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border-strong); color: var(--text);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s; min-width: 168px;
}
.follow-btn span { display: flex; flex-direction: column; line-height: 1.1; font-weight: 700; font-size: 0.98rem; }
.follow-btn span small { font-size: 0.68rem; font-weight: 500; opacity: 0.7; }
.follow-btn:hover { transform: translateY(-3px); }
.follow-btn.ig:hover { border-color: #e1306c; background: rgba(225,48,108,0.12); }
.follow-btn.tk:hover { border-color: #25f4ee; background: rgba(37,244,238,0.1); }
.follow-btn.yt:hover { border-color: #ff0000; background: rgba(255,0,0,0.12); }
.follow-btn.fb:hover { border-color: #1877f2; background: rgba(24,119,242,0.12); }

/* ---------- Adicione sua quadra ---------- */
.court-band {
  position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center;
  padding: 48px; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, rgba(204,95,49,0.12), rgba(10,24,56,0.55));
  border: 1px solid var(--border-strong); box-shadow: 0 40px 90px -40px rgba(0,0,0,0.7);
}
.court-band-glow { position: absolute; top: -30%; right: -10%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(240,100,30,0.25), transparent 70%); pointer-events: none; }
.court-copy { position: relative; }
.court-copy .section-title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: 16px 0 14px; }
.court-copy .section-lead { margin-bottom: 22px; }
.court-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.court-chips span { font-size: 0.86rem; font-weight: 600; color: var(--text-dim); padding: 8px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); }
.court-visual { position: relative; display: flex; justify-content: center; }
.court-visual .phone { width: min(240px, 80%); }
.tilt-soft { transform: perspective(1000px) rotateY(8deg) rotateX(3deg); animation: floaty 7s ease-in-out infinite; }

/* ---------- Premium ---------- */
.premium-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 26px 0 32px; }
.check-list li { position: relative; padding-left: 36px; color: var(--text); font-size: 1.02rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad-gold); color: #2a1c00; font-weight: 800; font-size: 0.8rem; display: grid; place-items: center;
}
.premium-card {
  position: relative; padding: 40px 34px; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, rgba(223,166,28,0.12), rgba(10,24,56,0.6));
  border: 1px solid var(--border-strong); text-align: center;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7);
}
.premium-card-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 280px; height: 280px; background: radial-gradient(circle, rgba(248,189,67,0.35), transparent 70%); filter: blur(20px); pointer-events: none; }
.premium-tag { display: inline-block; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.2em; color: var(--gold-light); border: 1px solid rgba(248,189,67,0.4); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; position: relative; }
.premium-card h3 { font-size: 1.5rem; margin-bottom: 14px; position: relative; }
.premium-price { font-size: 3.2rem; font-weight: 800; line-height: 1; margin-bottom: 8px; position: relative; }
.premium-price span { font-size: 1.4rem; vertical-align: super; color: var(--text-dim); }
.premium-price small { font-size: 1rem; font-weight: 500; color: var(--text-soft); }
.premium-note { color: var(--text-soft); font-size: 0.86rem; margin-bottom: 24px; position: relative; }

/* ---------- Depoimentos ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { padding: 30px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); transition: transform 0.35s var(--ease), border-color 0.35s; }
.testimonial:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.testimonial p { font-size: 1.05rem; margin-bottom: 18px; color: var(--text); }
.testimonial p::before { content: "“"; font-size: 2.4rem; color: var(--orange-bright); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial footer { color: var(--text-soft); font-size: 0.88rem; }
.testimonial footer strong { color: var(--gold-light); }
.testimonial-disclaimer { text-align: center; color: var(--text-soft); font-size: 0.78rem; margin-top: 28px; }

/* ---------- CTA Final / Download ---------- */
.cta-final { padding: 110px 0; position: relative; }
.cta-inner {
  text-align: center; max-width: 720px; margin: 0 auto; padding: 64px 40px;
  border-radius: 40px; background: linear-gradient(160deg, rgba(204,95,49,0.16), rgba(10,24,56,0.5));
  border: 1px solid var(--border-strong); position: relative; overflow: hidden;
  box-shadow: 0 50px 100px -40px rgba(240,100,30,0.4);
}
.cta-inner::before { content: ""; position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(240,100,30,0.22), transparent 70%); pointer-events: none; }
.cta-icon { width: 76px; height: 76px; border-radius: 22px; margin: 0 auto 22px; position: relative; box-shadow: 0 16px 40px -12px rgba(240,100,30,0.6); }
.cta-inner h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; line-height: 1.1; margin-bottom: 12px; position: relative; }
.cta-inner > .container, .cta-inner p { position: relative; }
.cta-inner > p { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 30px; }

.cta-social { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; margin-bottom: 8px; }
.cta-ig { background: linear-gradient(100deg, #f8bd43, #e1306c 55%, #c13584); color: #fff; box-shadow: 0 12px 34px -8px rgba(193,53,132,0.6); }
.cta-ig:hover { box-shadow: 0 18px 44px -8px rgba(193,53,132,0.75); }
.cta-social-more { display: flex; align-items: center; gap: 12px; }
.cta-social-more > span { color: var(--text-soft); font-size: 0.88rem; }

.store-label { position: relative; margin: 34px 0 14px; color: var(--text-soft); font-size: 0.85rem; letter-spacing: 0.04em; }
.store-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px; border-radius: 14px;
  background: #fff; color: #0a1838; transition: transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.6);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(0,0,0,0.7); }
.store-btn span { display: flex; flex-direction: column; line-height: 1.1; font-weight: 700; font-size: 1.05rem; text-align: left; }
.store-btn span small { font-size: 0.66rem; font-weight: 500; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  border: 1px solid var(--border); border-radius: 16px; background: var(--surface); overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq details[open] { border-color: var(--border-strong); background: var(--surface-2); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 600; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-ico { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: var(--orange-bright); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq-ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ico::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq details[open] .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq details p { padding: 0 24px 22px; color: var(--text-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 28px; background: rgba(6,14,36,0.6); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 2fr; gap: 50px; margin-bottom: 44px; }
.footer-logo { height: 54px; margin-bottom: 18px; }
.footer-brand p { color: var(--text-dim); max-width: 280px; margin-bottom: 20px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); color: var(--text-dim); transition: all 0.25s var(--ease); }
.socials a:hover { color: #1a0e06; background: var(--grad); transform: translateY(-3px); border-color: transparent; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-links h4 { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 16px; }
.footer-links a { display: block; color: var(--text-dim); font-size: 0.95rem; padding: 6px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-soft); font-size: 0.85rem; flex-wrap: wrap; }

/* ============================================================
   Páginas legais (Termos / Privacidade)
   ============================================================ */
.legal-header { border-bottom: 1px solid var(--border); background: rgba(6,14,36,0.6); }
.legal-header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 16px; }
.legal { max-width: 800px; margin: 0 auto; padding: 60px 24px 80px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.legal-updated { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 44px; }
.legal h2 { font-size: 1.35rem; font-weight: 700; margin: 38px 0 12px; color: var(--text); }
.legal h2:first-of-type { margin-top: 0; }
.legal p { color: var(--text-dim); line-height: 1.75; margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal li { color: var(--text-dim); line-height: 1.7; }
.legal a { color: var(--orange-bright); text-decoration: underline; }
.legal strong { color: var(--text); font-weight: 600; }
.legal-footer { border-top: 1px solid var(--border); padding: 28px 0; }
.legal-footer .container { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; justify-content: space-between; color: var(--text-soft); font-size: 0.88rem; }
.legal-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.legal-footer a { color: var(--text-dim); }
.legal-footer a:hover { color: var(--orange-bright); }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.notfound-logo { height: 56px; margin-bottom: 30px; transition: transform 0.25s var(--ease); }
.notfound-logo:hover { transform: scale(1.04); }
.notfound-code { font-size: clamp(5rem, 18vw, 10rem); font-weight: 800; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.notfound h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin: 4px 0 12px; }
.notfound-text { color: var(--text-dim); max-width: 420px; margin: 0 auto 30px; }
.notfound-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   ANIMAÇÃO DE ENTRADA (scroll reveal)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-facts { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step-line { display: none; }
  .premium-grid { grid-template-columns: 1fr; gap: 36px; }
  .court-band { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; text-align: center; }
  .court-copy { display: flex; flex-direction: column; align-items: center; }
  .court-chips { justify-content: center; }
  .court-visual { order: -1; }
  .launch-grid { grid-template-columns: 1fr; gap: 36px; justify-items: center; }
  .launch-list { width: 100%; max-width: 560px; }
  .follow-cta { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .follow-text p { margin: 0 auto; }
  .follow-buttons { justify-content: center; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; min-height: auto; }
  .hero-stats { gap: 24px; }
  .stat-num, .stat-word, .stat-plus { font-size: 1.8rem; }
  .float-badge { display: none; }
  .cta-inner { padding: 44px 22px; }
  .cta-social-more { flex-direction: column; gap: 10px; }
  .store-btn { flex: 1; justify-content: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .follow-buttons { grid-template-columns: 1fr; }
  .follow-btn { min-width: 0; width: 100%; justify-content: center; }
  .tilt { transform: none; animation: floaty-flat 6s ease-in-out infinite; }
  @keyframes floaty-flat { 50% { transform: translateY(-12px); } }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.2s !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
