/* GolSignal · site público. Mesmas cores do app, layout e movimento próprios. */
:root {
  --bg: #05080e;
  --bg-2: #080d16;
  --surface: #0c1320;
  --surface-2: #101a2a;
  --surface-3: #16223a;
  --border: rgba(160, 190, 255, 0.10);
  --border-strong: rgba(160, 190, 255, 0.20);
  --text: #f2f5fa;
  --text-2: #aab4c5;
  --muted: #7c879b;
  --accent: #2be38a;
  --accent-2: #19c2ff;
  --accent-ink: #04140b;
  --accent-soft: rgba(43, 227, 138, 0.12);
  --accent-glow: 0 0 28px rgba(43, 227, 138, 0.45);
  --home: #3987e5;
  --away: #d95926;
  --flash: #ffd23f;
  --critical: #d03b3b;
  --critical-rgb: 208, 59, 59;
  --critical-text: #ff8c8c;
  --radius: 18px;
  --wrap: 1180px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
@supports (overflow: clip) { html { overflow-x: clip; } }
body {
  margin: 0; background: var(--bg); color: var(--text); font-family: var(--font);
  font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -0.025em; }
p { margin: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--accent-ink); padding: 0.5rem 1rem; z-index: 200; }
.skip:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 8px; }
.grad { background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent)); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradmove 6s linear infinite; }
@keyframes gradmove { to { background-position: 200% center; } }

/* ---------- Fundo ---------- */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; will-change: transform; }
.b1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(43, 227, 138, 0.28), transparent 65%); top: -180px; right: -120px; animation: drift1 22s ease-in-out infinite alternate; }
.b2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(25, 194, 255, 0.18), transparent 65%); bottom: -160px; left: -140px; animation: drift2 26s ease-in-out infinite alternate; }
.b3 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(57, 135, 229, 0.16), transparent 65%); top: 40%; left: 45%; animation: drift3 30s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(-160px, 140px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(180px, -120px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-220px, -160px) scale(0.9); } }
.pitch { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.05; }
.pitch * { fill: none; stroke: #9fd8ff; stroke-width: 2; }
.pitch .dot { fill: #9fd8ff; }
.grain { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 3px 3px; mix-blend-mode: overlay; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Botões ---------- */
.btn {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, #3cf19a, var(--accent) 55%, #1fcf7a); color: var(--accent-ink); font-weight: 750; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 0.75rem 1.25rem; font-size: 0.95rem; cursor: pointer;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease); white-space: nowrap;
  box-shadow: 0 8px 24px -10px rgba(43, 227, 138, 0.6);
}
.btn:hover { box-shadow: var(--accent-glow), 0 10px 30px -10px rgba(43, 227, 138, 0.7); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { padding: 0.5rem 0.95rem; font-size: 0.88rem; border-radius: 10px; }
.btn-lg { padding: 0.95rem 1.5rem; font-size: 1.02rem; }
.btn-xl { padding: 1.1rem 1.7rem; font-size: 1.08rem; border-radius: 14px; }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--text); border-color: var(--border-strong); box-shadow: none; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.shine::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent); transform: skewX(-20deg);
  animation: shine 3.6s ease-in-out infinite;
}
@keyframes shine { 0%, 60% { left: -80%; } 100% { left: 140%; } }
.play { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); position: relative; flex: none; }
.play::after { content: ""; position: absolute; left: 10px; top: 7px; border-left: 9px solid var(--accent); border-top: 6px solid transparent; border-bottom: 6px solid transparent; }

.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent); font-size: 0.76rem; font-weight: 750; letter-spacing: 0.14em; text-transform: uppercase; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; flex: none; animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(43, 227, 138, 0.6); } 70% { box-shadow: 0 0 0 10px rgba(43, 227, 138, 0); } 100% { box-shadow: 0 0 0 0 rgba(43, 227, 138, 0); } }

/* ---------- Navegação ---------- */
.nav { position: sticky; top: 0; z-index: 60; transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(5, 8, 14, 0.78); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); border-color: var(--border); }
.nav-inner { display: flex; align-items: center; gap: 1.5rem; height: 70px; }
.brand img { height: 32px; width: auto; }
.nav-links { display: flex; gap: 1.5rem; margin-left: auto; font-size: 0.92rem; }
.nav-links a { color: var(--text-2); text-decoration: none; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--accent); transition: right 0.3s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-strong); background: rgba(255,255,255,0.03); padding: 0 11px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.menu-btn span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5.5rem); overflow-x: hidden; overflow-x: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.9rem 0.45rem 0.75rem; border-radius: 999px;
  background: rgba(43, 227, 138, 0.08); border: 1px solid rgba(43, 227, 138, 0.28); color: var(--text-2); font-size: 0.85rem; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.pill b { color: var(--accent); font-variant-numeric: tabular-nums; }
.pill:hover { border-color: var(--accent); background: rgba(43, 227, 138, 0.14); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); margin: 1.2rem 0 1.3rem; font-weight: 800; }
.rotator { display: inline-grid; vertical-align: bottom; }
.rot-word {
  grid-area: 1 / 1; white-space: nowrap; opacity: 0; transform: translateY(0.45em) rotateX(-60deg); filter: blur(6px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease);
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rot-word.is-on { opacity: 1; transform: none; filter: none; }
.rot-word.is-out { opacity: 0; transform: translateY(-0.45em) rotateX(60deg); filter: blur(6px); }
.lead { font-size: clamp(1.03rem, 1.7vw, 1.22rem); color: var(--text-2); max-width: 36rem; }
.lead b { color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 2.1rem 0 1.5rem; }
.trust { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; padding: 0; margin: 0; font-size: 0.9rem; color: var(--text-2); }
.trust li { display: inline-flex; align-items: center; gap: 0.45rem; }
.trust i { width: 18px; height: 18px; border-radius: 50%; background: var(--accent-soft); position: relative; flex: none; }
.trust i::after { content: ""; position: absolute; left: 6px; top: 3px; width: 4px; height: 8px; border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* Palco do celular */
.hero-stage { position: relative; display: grid; justify-items: center; padding: 1.5rem 0; perspective: 1400px; }
.orbit { position: absolute; border-radius: 50%; border: 1px dashed rgba(43, 227, 138, 0.18); top: 50%; left: 50%; pointer-events: none; }
.o1 { width: 470px; height: 470px; margin: -235px 0 0 -235px; animation: spin 40s linear infinite; }
.o2 { width: 600px; height: 600px; margin: -300px 0 0 -300px; border-color: rgba(25, 194, 255, 0.10); animation: spin 60s linear infinite reverse; }
.o1::before, .o2::before { content: ""; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 16px var(--accent); }
.o2::before { background: var(--accent-2); box-shadow: 0 0 16px var(--accent-2); }
@keyframes spin { to { transform: rotate(360deg); } }
.stage-note { position: relative; margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.phone {
  position: relative; width: 300px; height: 610px; border-radius: 46px; padding: 12px;
  background: linear-gradient(145deg, #1d2a40, #0a0f18 45%, #1a2436); border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 50px 100px -30px rgba(0,0,0,0.9), 0 0 0 2px #04070c, inset 0 0 0 2px rgba(255,255,255,0.04), 0 0 80px -20px rgba(43, 227, 138, 0.35);
  transform: rotateY(-10deg) rotateX(4deg); transform-style: preserve-3d; transition: transform 0.6s var(--ease);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
.hero-stage:hover .phone { transform: rotateY(-4deg) rotateX(2deg); }
.phone.buzz { animation: buzz 0.5s linear, floaty 7s ease-in-out infinite; }
@keyframes buzz { 0%, 100% { rotate: 0deg; } 20% { rotate: -2deg; } 40% { rotate: 2deg; } 60% { rotate: -1.5deg; } 80% { rotate: 1.5deg; } }
.phone-notch { position: absolute; top: 20px; left: 50%; width: 96px; height: 28px; margin-left: -48px; background: #000; border-radius: 20px; z-index: 5; }
.screen {
  position: relative; height: 100%; border-radius: 36px; overflow: hidden; padding: 58px 16px 16px;
  background: radial-gradient(120% 60% at 50% 0%, #10213a 0%, #070c14 60%); display: flex; flex-direction: column; gap: 10px;
}
.s-top { display: flex; justify-content: space-between; align-items: center; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.04em; }
.s-live { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 700; font-size: 0.8rem; }
.s-live b { font-variant-numeric: tabular-nums; }
.s-score { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 6px; padding: 10px 0 4px; }
.s-team { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; }
.s-team.away { flex-direction: column; }
.crest { width: 34px; height: 34px; border-radius: 50%; flex: none; box-shadow: 0 0 0 2px rgba(255,255,255,0.08); }
.crest.home { background: linear-gradient(135deg, #d02a2a 50%, #111 50%); }
.crest.away { background: linear-gradient(135deg, #0b7a3b 50%, #f5f5f5 50%); }
.s-goals { font-size: 2.2rem; font-weight: 850; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; transition: transform 0.3s var(--ease), color 0.3s; }
.s-goals.bump { animation: bump 0.9s var(--ease); color: var(--flash); }
@keyframes bump { 0% { transform: scale(1); } 30% { transform: scale(1.35); } 100% { transform: scale(1); } }
.s-pressure { display: grid; grid-template-columns: 28px 1fr 28px; gap: 8px; align-items: center; font-size: 0.8rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.s-pressure b:last-child { text-align: right; }
.s-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.s-bar .half { position: relative; height: 9px; background: rgba(255,255,255,0.06); border-radius: 6px; overflow: hidden; display: flex; }
.s-bar .half.home { justify-content: flex-end; }
.s-bar .half i { display: block; height: 100%; width: 20%; transition: width 0.7s var(--ease); }
.s-bar .half.home i { background: linear-gradient(90deg, #5aa6ff, var(--home)); border-radius: 6px 0 0 6px; }
.s-bar .half.away i { background: linear-gradient(90deg, var(--away), #ff8a55); border-radius: 0 6px 6px 0; }
.s-bar .half u { position: absolute; top: -2px; bottom: -2px; width: 2px; background: rgba(255,255,255,0.55); }
.s-bar .half.home u { right: 70%; }
.s-bar .half.away u { left: 70%; }
.s-caption { font-size: 0.62rem; color: var(--muted); text-align: center; margin-top: -4px; }
.s-chart { height: 118px; border-radius: 14px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); padding: 6px 4px; }
.s-chart svg { width: 100%; height: 100%; overflow: visible; }
.s-chart .thr { stroke: var(--flash); stroke-width: 1; stroke-dasharray: 4 4; opacity: 0.7; }
.s-chart .thr-t { fill: var(--flash); font-size: 9px; opacity: 0.75; }
.s-chart .lh { fill: none; stroke: var(--home); stroke-width: 2.4; stroke-linejoin: round; stroke-linecap: round; filter: drop-shadow(0 0 4px rgba(57,135,229,0.7)); }
.s-chart .la { fill: none; stroke: var(--away); stroke-width: 1.6; stroke-linejoin: round; opacity: 0.8; }
.s-chart .head { fill: #fff; stroke: var(--home); stroke-width: 3; }
.s-alert {
  display: flex; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 14px; font-size: 0.72rem;
  background: linear-gradient(135deg, rgba(255, 210, 63, 0.2), rgba(255, 210, 63, 0.05)); border: 1px solid rgba(255, 210, 63, 0.55);
  opacity: 0; transform: scale(0.9); transition: opacity 0.4s, transform 0.4s var(--ease);
}
.s-alert.on { opacity: 1; transform: none; animation: glowy 1.6s ease-in-out infinite; }
@keyframes glowy { 50% { box-shadow: 0 0 22px rgba(255, 210, 63, 0.35); } }
.s-alert b { display: block; color: var(--flash); }
.s-alert em { font-style: normal; color: var(--text-2); }
.s-alert-ball { font-size: 1.2rem; animation: roll 2s linear infinite; }
@keyframes roll { to { transform: rotate(360deg); } }
.s-stats { display: grid; gap: 5px; font-size: 0.72rem; margin-top: auto; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
.s-stats div { display: grid; grid-template-columns: 26px 1fr 26px; text-align: center; }
.s-stats span { color: var(--muted); }
.s-stats b { font-variant-numeric: tabular-nums; transition: color 0.3s; }
.s-stats b:first-child { color: #7db4f5; }
.s-stats b:last-child { color: #f0906a; }
.s-stats b.tick { animation: tick 0.6s var(--ease); }
@keyframes tick { 40% { transform: scale(1.5); color: #fff; } }

.notif {
  position: absolute; left: 16px; right: 16px; top: 16px; z-index: 6; padding: 10px 12px 11px; border-radius: 18px;
  background: rgba(30, 38, 54, 0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.8); display: grid; gap: 2px; font-size: 0.72rem; color: var(--text-2);
  transform: translateY(-140%); opacity: 0; transition: transform 0.6s var(--ease), opacity 0.4s;
}
.notif.on { transform: translateY(26px); opacity: 1; }
.notif b { color: var(--text); font-size: 0.78rem; }
.notif .n-app { display: flex; align-items: center; gap: 6px; font-size: 0.6rem; letter-spacing: 0.06em; color: var(--muted); }
.notif .n-app img { width: 16px; height: 16px; border-radius: 4px; }
.notif .n-app em { margin-left: auto; font-style: normal; letter-spacing: 0; }
.notif.ok { border-color: rgba(43, 227, 138, 0.45); }

.goal-flash { position: absolute; inset: 12px; border-radius: 36px; display: grid; place-items: center; pointer-events: none; z-index: 4; opacity: 0; background: radial-gradient(circle, rgba(255, 210, 63, 0.35), transparent 60%); }
.goal-flash span { font-size: 4.2rem; font-weight: 900; letter-spacing: -0.02em; color: var(--flash); text-shadow: 0 0 30px rgba(255, 210, 63, 0.9), 0 4px 0 #8a6a00; transform: scale(0.3) rotate(-8deg); }
.goal-flash.on { animation: flash 1.8s var(--ease) forwards; }
.goal-flash.on span { animation: goalword 1.8s var(--ease) forwards; }
@keyframes flash { 0% { opacity: 0; } 12% { opacity: 1; } 75% { opacity: 1; } 100% { opacity: 0; } }
@keyframes goalword { 0% { transform: scale(0.3) rotate(-8deg); } 25% { transform: scale(1.15) rotate(-4deg); } 40% { transform: scale(1) rotate(-4deg); } 100% { transform: scale(1.05) rotate(-4deg); } }
.confetti { position: absolute; inset: 0; pointer-events: none; z-index: 7; overflow: visible; }
.confetti i { position: absolute; left: 50%; top: 45%; width: 8px; height: 12px; border-radius: 2px; opacity: 0; animation: confetti 1.6s var(--ease) forwards; }
@keyframes confetti { 0% { opacity: 1; transform: translate(0, 0) rotate(0); } 100% { opacity: 0; transform: translate(var(--x), var(--y)) rotate(var(--r)); } }

.float-chip {
  position: absolute; z-index: 3; display: grid; gap: 1px; padding: 0.6rem 0.85rem; border-radius: 14px; min-width: 120px;
  background: rgba(12, 19, 32, 0.78); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-strong);
  box-shadow: 0 16px 36px -14px rgba(0,0,0,0.8); animation: bob 6s ease-in-out infinite;
}
.float-chip b { font-size: 1.25rem; font-variant-numeric: tabular-nums; color: var(--text); transition: color 0.3s; }
.float-chip b.hot { color: var(--flash); }
.fc-k { font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.fc1 { top: 12%; left: -2%; }
.fc2 { top: 46%; right: -6%; animation-delay: -2s; }
.fc3 { bottom: 14%; left: 0; animation-delay: -4s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Faixa rolante ---------- */
.marquee-sec { position: relative; display: flex; align-items: center; border-block: 1px solid var(--border); background: rgba(8, 13, 22, 0.75); backdrop-filter: blur(6px); }
.marquee-label { flex: none; display: flex; align-items: center; gap: 0.5rem; padding: 1rem 1.2rem 1rem var(--gutter); font-size: 0.74rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); border-right: 1px solid var(--border); white-space: nowrap; }
.marquee { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.m-item { display: inline-flex; align-items: center; gap: 0.55rem; padding: 1rem 1.6rem; white-space: nowrap; font-size: 0.95rem; }
.m-logo { width: 22px; height: 22px; object-fit: contain; flex: none; filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.35)); }
.m-ball { font-size: 0.75rem; opacity: 0.7; }
.m-item em { display: inline-flex; align-items: center; gap: 0.35rem; font-style: normal; font-size: 0.78rem; color: var(--muted); }
.m-flag { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; flex: none; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12); }

/* ---------- Números ---------- */
.numbers { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.num { text-align: center; padding: 1.4rem 1rem; border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent); border: 1px solid var(--border); display: grid; gap: 0.2rem; }
.num b { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 850; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; background: linear-gradient(180deg, #fff, #9fb3cc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.num span { font-size: 0.86rem; color: var(--muted); }

/* ---------- Seções ---------- */
.section { position: relative; padding: clamp(4.5rem, 10vw, 7rem) 0; }
.section-alt { background: linear-gradient(180deg, rgba(8, 13, 22, 0.85), rgba(8, 13, 22, 0.6)); border-block: 1px solid var(--border); }
.section-head { max-width: 46rem; margin: 0 auto 3.2rem; text-align: center; display: grid; gap: 0.9rem; justify-items: center; }
.section-head.left { text-align: left; justify-items: start; margin: 0; align-content: start; }
.section h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 800; }
.section-lead { color: var(--text-2); font-size: 1.05rem; }
.section-lead a, .fineprint a { color: var(--accent); }
.fineprint { margin-top: 1.2rem; font-size: 0.8rem; color: var(--muted); text-align: center; }
.center-cta { display: flex; justify-content: center; margin-top: 2.6rem; }

/* Sem x Com */
.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.2rem; align-items: stretch; }
.vs-card { position: relative; border-radius: 22px; padding: 2rem; border: 1px solid var(--border); display: grid; gap: 1.2rem; align-content: start; }
.vs-no { background: rgba(255,255,255,0.02); }
.vs-yes { background: linear-gradient(160deg, rgba(43, 227, 138, 0.12), rgba(12, 19, 32, 0.9) 55%); border-color: rgba(43, 227, 138, 0.4); box-shadow: 0 30px 60px -30px rgba(43, 227, 138, 0.35); }
.vs-tag { justify-self: start; font-size: 0.74rem; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 999px; background: rgba(255,255,255,0.06); color: var(--muted); }
.vs-yes .vs-tag { background: var(--accent); color: var(--accent-ink); }
.vs-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.95rem; }
.vs-card li { display: grid; grid-template-columns: 26px 1fr; gap: 0.7rem; color: var(--text-2); }
.vs-card li::before { content: "✕"; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; font-weight: 800; background: rgba(208, 59, 59, 0.14); color: #ff8c8c; }
.vs-yes li { color: var(--text); }
.vs-yes li::before { content: "✓"; background: var(--accent-soft); color: var(--accent); }
.vs-yes .btn { justify-self: start; margin-top: 0.4rem; }
.vs-mid { display: grid; place-items: center; }
.vs-mid span { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 0.9rem; background: var(--surface-2); border: 1px solid var(--border-strong); box-shadow: 0 0 0 8px rgba(5, 8, 14, 0.8); animation: vspulse 3s ease-in-out infinite; }
@keyframes vspulse { 50% { box-shadow: 0 0 0 8px rgba(5, 8, 14, 0.8), 0 0 30px rgba(43, 227, 138, 0.35); } }

/* Passos */
.steps { position: relative; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.steps::before { content: ""; position: absolute; top: 44px; left: 16%; right: 16%; height: 2px; background: var(--border-strong); }
.steps::after { content: ""; position: absolute; top: 44px; left: 16%; height: 2px; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 12px var(--accent); transition: width 1.8s var(--ease) 0.3s; }
.steps.in::after { width: 68%; }
.step { position: relative; text-align: center; display: grid; justify-items: center; gap: 0.8rem; padding: 0 0.6rem; }
.step-ico { position: relative; z-index: 1; width: 88px; height: 88px; border-radius: 26px; display: grid; place-items: center; background: linear-gradient(145deg, var(--surface-3), var(--surface)); border: 1px solid var(--border-strong); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.9); transition: transform 0.4s var(--ease), border-color 0.4s; }
.step:hover .step-ico { transform: translateY(-6px) rotate(-4deg); border-color: var(--accent); }
.step-ico svg { width: 36px; height: 36px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.step-ico i { position: absolute; top: -10px; right: -10px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-style: normal; font-weight: 850; font-size: 0.85rem; box-shadow: 0 0 0 4px var(--bg); }
.step h3 { font-size: 1.2rem; margin-top: 0.4rem; }
.step p { color: var(--text-2); font-size: 0.95rem; max-width: 22rem; }

/* Demo */
.demo { box-sizing: border-box; width: 100%; border-radius: 26px; padding: clamp(1.2rem, 3vw, 2rem); background: linear-gradient(180deg, rgba(16, 26, 42, 0.9), rgba(10, 16, 27, 0.9)); border: 1px solid var(--border-strong); box-shadow: 0 40px 80px -40px rgba(0,0,0,0.9); display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem 2rem; }
.demo-chart { flex: 1.6 1 520px; min-width: 0; max-width: 100%; }
.demo-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.demo-legend { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; font-size: 0.8rem; color: var(--text-2); margin-bottom: 0.6rem; }
.demo-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.k { width: 14px; height: 3px; border-radius: 2px; display: inline-block; }
.k.home { background: var(--home); } .k.away { background: var(--away); }
.k.thr { background: repeating-linear-gradient(90deg, var(--flash) 0 4px, transparent 4px 7px); }
.demo svg { display: block; width: 100%; min-width: 520px; height: auto; aspect-ratio: 640 / 280; overflow: visible; }
.demo .grid line { stroke: rgba(255,255,255,0.06); }
.demo .axis text { fill: var(--muted); font-size: 12px; }
.demo .d-thr { stroke: var(--flash); stroke-dasharray: 6 6; opacity: 0.75; }
.demo .d-thr-t { fill: var(--flash); font-size: 11px; opacity: 0.8; }
.demo .d-window { opacity: 0; transition: opacity 0.6s; }
.demo .d-window-t { fill: var(--flash); font-size: 11px; opacity: 0; transition: opacity 0.6s; }
.demo .d-line { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.demo .d-line.home { stroke: var(--home); filter: drop-shadow(0 0 6px rgba(57,135,229,0.6)); }
.demo .d-line.away { stroke: var(--away); stroke-width: 2; opacity: 0.85; }
.demo .d-area { opacity: 0; transition: opacity 1s 1.2s; }
.demo .d-mark { opacity: 0; transform-box: fill-box; }
.demo .d-mark line { stroke-dasharray: 4 4; }
.demo .alert-mark line { stroke: var(--flash); }
.demo .alert-mark circle { fill: var(--flash); stroke: #3a2f00; stroke-width: 2; }
.demo .goal-mark line { stroke: var(--accent); }
.demo .goal-mark circle { fill: #fff; stroke: var(--accent); stroke-width: 3; }
.demo .goal-mark .ball { font-size: 14px; }
.demo .tip rect { fill: #0b1220; stroke: var(--border-strong); }
.demo .alert-mark .tip rect { stroke: var(--flash); }
.demo .goal-mark .tip rect { stroke: var(--accent); }
.demo .tip text { fill: var(--text); font-size: 12px; font-weight: 700; }
.demo.is-playing .d-line.home { animation: draw 3.6s var(--ease) forwards; }
.demo.is-playing .d-line.away { animation: draw 3.6s var(--ease) 0.1s forwards; }
.demo.is-playing .d-area { opacity: 1; }
.demo.is-playing .d-window, .demo.is-playing .d-window-t { opacity: 1; transition-delay: 2.3s; }
.demo.is-playing .alert-mark { animation: pop 0.6s var(--ease) 2.2s forwards; }
.demo.is-playing .goal-mark { animation: pop 0.6s var(--ease) 3.2s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { 0% { opacity: 0; transform: translateY(10px) scale(0.8); } 100% { opacity: 1; transform: none; } }
.demo-steps { flex: 1 1 300px; min-width: 0; list-style: none; padding: 0; margin: 0; display: grid; gap: 0.8rem; align-content: center; }
.demo-steps li { display: grid; grid-template-columns: 56px 1fr; gap: 0.9rem; align-items: start; padding: 1rem; border-radius: 16px; border: 1px solid var(--border); background: rgba(255,255,255,0.02); color: var(--text-2); font-size: 0.93rem; opacity: 0.35; transform: translateX(12px); transition: opacity 0.5s, transform 0.5s var(--ease), border-color 0.5s, background 0.5s; }
.demo-steps li b { display: grid; place-items: center; height: 40px; border-radius: 12px; background: var(--surface-3); font-variant-numeric: tabular-nums; color: var(--text); }
.demo-steps li strong { color: var(--text); display: block; }
.demo-steps li.on { opacity: 1; transform: none; border-color: var(--border-strong); background: rgba(255,255,255,0.04); }
.demo-steps li[data-step="2"].on { border-color: rgba(255, 210, 63, 0.5); }
.demo-steps li[data-step="2"].on b { background: rgba(255, 210, 63, 0.18); color: var(--flash); }
.demo-steps li[data-step="3"].on { border-color: rgba(43, 227, 138, 0.5); }
.demo-steps li[data-step="3"].on b { background: var(--accent-soft); color: var(--accent); }
.demo-foot { flex: 1 1 100%; display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 1.2rem; }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.1rem; }
.t-quarter { grid-column: span 3; }
.t-side { grid-column: span 4; }
.tile { position: relative; overflow: hidden; border-radius: 22px; padding: 1.6rem; background: var(--surface); border: 1px solid var(--border); display: grid; gap: 0.6rem; align-content: start; transition: transform 0.35s var(--ease), border-color 0.35s; isolation: isolate; }
.tile:hover { transform: translateY(-4px); border-color: rgba(43, 227, 138, 0.35); }
.spot::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity 0.3s; background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(43, 227, 138, 0.14), transparent 60%); }
.spot:hover::before { opacity: 1; }
.t-wide { grid-column: span 8; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 1.5rem; }
.tile-text { display: grid; gap: 0.6rem; }
.t-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); display: grid; place-items: center; }
.t-ico svg { width: 23px; height: 23px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tile h3 { font-size: 1.15rem; }
.tile p { color: var(--text-2); font-size: 0.93rem; }
.notif-stack { position: relative; height: 190px; }
.ns { position: absolute; left: 0; right: 0; padding: 0.75rem 0.9rem; border-radius: 16px; background: rgba(30, 38, 54, 0.9); border: 1px solid rgba(255,255,255,0.12); display: grid; gap: 2px; font-size: 0.8rem; color: var(--muted); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.8); animation: stack 9s var(--ease) infinite; }
.ns b { color: var(--text); font-size: 0.84rem; }
.ns.n1 { animation-delay: 0s; } .ns.n2 { animation-delay: -3s; border-color: rgba(43, 227, 138, 0.4); } .ns.n3 { animation-delay: -6s; }
@keyframes stack {
  0% { top: -20px; opacity: 0; transform: scale(0.96); }
  8% { top: 0; opacity: 1; transform: scale(1); }
  33% { top: 0; opacity: 1; transform: scale(1); }
  41% { top: 64px; opacity: 0.85; transform: scale(0.97); }
  66% { top: 64px; opacity: 0.85; transform: scale(0.97); }
  74% { top: 128px; opacity: 0.5; transform: scale(0.94); }
  95% { top: 128px; opacity: 0.4; transform: scale(0.94); }
  100% { top: 150px; opacity: 0; transform: scale(0.92); }
}
.mini-bars { display: flex; align-items: flex-end; gap: 6px; height: 64px; margin-top: 0.6rem; }
.mini-bars i { flex: 1; height: var(--h); border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--accent), rgba(43, 227, 138, 0.2)); transform-origin: bottom; animation: grow 2.4s var(--ease) infinite alternate; }
.mini-bars i:nth-child(2) { animation-delay: 0.15s; } .mini-bars i:nth-child(3) { animation-delay: 0.3s; } .mini-bars i:nth-child(4) { animation-delay: 0.45s; } .mini-bars i:nth-child(5) { animation-delay: 0.6s; } .mini-bars i:nth-child(6) { animation-delay: 0.75s; }
@keyframes grow { from { transform: scaleY(0.45); } to { transform: scaleY(1); } }
.gauge { position: relative; width: 150px; margin: 0.4rem auto 0; }
.gauge svg { width: 100%; overflow: visible; }
.gauge path { fill: none; stroke-width: 11; stroke-linecap: round; }
.g-bg { stroke: var(--surface-3); }
.g-fg { stroke: var(--flash); stroke-dasharray: 157; stroke-dashoffset: 157; transition: stroke-dashoffset 1.6s var(--ease); filter: drop-shadow(0 0 6px rgba(255, 210, 63, 0.6)); }
.tile.in .g-fg { stroke-dashoffset: 61; }
.gauge b { position: absolute; left: 0; right: 0; bottom: -2px; text-align: center; font-size: 1.5rem; color: var(--flash); }
.form-row { display: flex; gap: 6px; margin-top: 0.6rem; }
.form-row i { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-style: normal; font-weight: 800; font-size: 0.8rem; opacity: 0; transform: translateY(8px) scale(0.8); transition: opacity 0.4s, transform 0.4s var(--ease); }
.tile.in .form-row i { opacity: 1; transform: none; }
.form-row i:nth-child(2) { transition-delay: 0.1s; } .form-row i:nth-child(3) { transition-delay: 0.2s; } .form-row i:nth-child(4) { transition-delay: 0.3s; } .form-row i:nth-child(5) { transition-delay: 0.4s; }
.form-row .w { background: rgba(43, 227, 138, 0.18); color: var(--accent); }
.form-row .d { background: rgba(170, 180, 197, 0.14); color: var(--text-2); }
.form-row .l { background: rgba(208, 59, 59, 0.18); color: #ff8c8c; }
.stars { display: flex; gap: 8px; margin-top: 0.4rem; font-size: 1.7rem; }
.stars i { font-style: normal; color: var(--flash); animation: twinkle 2.4s ease-in-out infinite; text-shadow: 0 0 14px rgba(255, 210, 63, 0.6); }
.stars i:nth-child(2) { animation-delay: 0.3s; } .stars i:nth-child(3) { animation-delay: 0.6s; }
@keyframes twinkle { 50% { transform: scale(1.25) rotate(12deg); opacity: 0.75; } }
.slider { display: grid; grid-template-columns: auto 1fr auto; gap: 0.6rem; align-items: center; font-size: 0.7rem; color: var(--muted); margin-top: 0.6rem; }
.slider .track { position: relative; height: 6px; border-radius: 4px; background: linear-gradient(90deg, #3987e5, var(--accent), var(--flash)); }
.slider .track i { position: absolute; top: 50%; width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(43, 227, 138, 0.35); animation: slide 5s ease-in-out infinite; }
@keyframes slide { 0%, 100% { left: 20%; } 50% { left: 80%; } }

/* Transparência */
.transparency { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 3rem; align-items: center; }
.transparency h2 { margin: 0.9rem 0 1rem; }
.checks { list-style: none; padding: 1.7rem; margin: 0; display: grid; gap: 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; }
.checks li { display: flex; gap: 0.8rem; color: var(--text-2); align-items: center; }
.checks li::before { content: "✓"; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-weight: 800; }
.proof { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 1.2rem; }
.proof-main, .proof-compare { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 1.9rem; }
.proof-main { display: grid; gap: 0.4rem; align-content: center; }
.proof-value { font-size: clamp(3.2rem, 7vw, 4.8rem); font-weight: 850; color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums; }
.proof-value small { font-size: 0.5em; }
.proof-label { font-size: 1.05rem; }
.proof-foot, .proof-note { font-size: 0.85rem; color: var(--muted); }
.proof-compare { display: grid; gap: 1.1rem; align-content: center; }
.cmp { display: grid; grid-template-columns: 11rem 1fr 3rem; gap: 0.8rem; align-items: center; font-size: 0.9rem; }
.cmp b { text-align: right; font-variant-numeric: tabular-nums; }
.cmp-bar { height: 12px; background: var(--surface-3); border-radius: 6px; overflow: hidden; }
.cmp-bar i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 6px; transition: width 1.4s var(--ease) 0.3s; }
.proof.in .cmp-bar i { width: var(--w); }
.cmp.muted .cmp-bar i { background: var(--muted); }

/* Planos */
.plans { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; align-items: stretch; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 1.8rem 1.35rem 1.35rem; display: flex; flex-direction: column; gap: 0.45rem; transition: transform 0.35s var(--ease), border-color 0.35s; }
.plan:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.plan.featured { border-color: transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, conic-gradient(from var(--angle, 0deg), var(--accent), var(--accent-2), transparent 40%, var(--accent)) border-box; border: 2px solid transparent; animation: rotate-border 5s linear infinite; box-shadow: 0 30px 70px -30px rgba(43, 227, 138, 0.55); }
.plan.featured:hover { transform: translateY(-8px) scale(1.01); }
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes rotate-border { to { --angle: 360deg; } }
.plan-badge { position: absolute; top: -13px; left: 1.35rem; background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: var(--accent-ink); font-size: 0.72rem; font-weight: 850; padding: 0.25rem 0.7rem; border-radius: 999px; }
.plan-badge.soft { background: var(--surface-3); color: var(--accent); border: 1px solid rgba(43, 227, 138, 0.35); }
.plan h3 { font-size: 1.15rem; }
.plan-tagline { color: var(--muted); font-size: 0.86rem; min-height: 2.6em; }
.plan-price { display: flex; align-items: baseline; gap: 0.3rem; margin-top: 0.3rem; }
.plan-price small { color: var(--text-2); font-weight: 650; }
.plan-price b { font-size: 2.4rem; font-weight: 850; font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }
.plan-sub { color: var(--text-2); font-size: 0.84rem; min-height: 2.6em; }
.per-day { color: var(--accent); font-weight: 750; }
.plan-list { list-style: none; padding: 1rem 0 0; margin: 0.3rem 0 1.2rem; border-top: 1px solid var(--border); display: grid; gap: 0.5rem; font-size: 0.87rem; color: var(--text-2); flex: 1; align-content: start; }
.plan-list li::before { content: "✓"; color: var(--accent); font-weight: 800; margin-right: 0.5rem; }
.plan .btn { width: 100%; }
.guarantee { margin: 2.2rem auto 0; max-width: 760px; display: grid; grid-template-columns: auto 1fr auto; gap: 1.1rem; align-items: center; padding: 1.1rem 1.4rem; border-radius: 18px; background: linear-gradient(90deg, rgba(43, 227, 138, 0.1), rgba(25, 194, 255, 0.06)); border: 1px solid rgba(43, 227, 138, 0.3); }
.guarantee div { display: grid; gap: 0.1rem; }
.guarantee span:not(.shield):not(.pix) { color: var(--text-2); font-size: 0.9rem; }
.shield { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-soft); }
.shield svg { width: 28px; height: 28px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pix { background: #32bcad; color: #03211e; font-weight: 850; font-size: 0.72rem; padding: 0.25rem 0.55rem; border-radius: 6px; letter-spacing: 0.04em; }

/* Dúvidas */
.faq-wrap { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 3rem; align-items: start; }
.faq-wrap .section-head .btn { margin-top: 0.8rem; }
.faq { display: grid; gap: 0.7rem; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; transition: border-color 0.3s, background 0.3s; }
.faq details[open] { border-color: rgba(43, 227, 138, 0.35); background: var(--surface-2); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 1.25rem; font-weight: 650; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 26px; height: 26px; border-radius: 50%; background-color: var(--accent-soft); background-image: linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--accent), var(--accent)); background-size: 12px 2px, 2px 12px; background-position: center; background-repeat: no-repeat; transition: transform 0.35s var(--ease); }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq-a { overflow: hidden; }
.faq-a p { padding: 0 1.25rem 1.2rem; color: var(--text-2); font-size: 0.95rem; }

/* CTA final */
.final { position: relative; padding: clamp(5rem, 11vw, 8rem) 0; overflow: hidden; border-top: 1px solid var(--border); background: radial-gradient(ellipse 60% 70% at 50% 40%, rgba(43, 227, 138, 0.16), transparent 70%); }
.final-inner { text-align: center; display: grid; justify-items: center; gap: 1.1rem; }
.final h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 42rem; font-weight: 850; }
.final p { color: var(--text-2); max-width: 34rem; font-size: 1.08rem; margin-bottom: 0.6rem; }
.final-note { font-size: 0.9rem; color: var(--muted); }
.final-note a { color: var(--accent); }
.final-ball { position: relative; width: 110px; height: 110px; display: grid; place-items: center; margin-bottom: 0.6rem; }
.ball-core { position: relative; z-index: 1; width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; font-size: 2.6rem; background: radial-gradient(circle at 35% 30%, #1f3150, #0b1320); border: 1px solid var(--border-strong); box-shadow: 0 0 40px rgba(43, 227, 138, 0.35); animation: bounce 2.2s cubic-bezier(.3,.0,.3,1) infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0) rotate(0); } 45% { transform: translateY(-14px) rotate(160deg); } 60% { transform: translateY(0) rotate(200deg); } }
.ring { position: absolute; inset: 17px; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; animation: ring 3s ease-out infinite; }
.ring.r2 { animation-delay: 1s; } .ring.r3 { animation-delay: 2s; }
@keyframes ring { 0% { transform: scale(0.8); opacity: 0.7; } 100% { transform: scale(2.4); opacity: 0; } }

/* Rodapé */
.footer { border-top: 1px solid var(--border); padding: 3rem 0 2rem; background: var(--bg); position: relative; }
.footer-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem 3rem; }
.footer-brand { display: grid; gap: 0.6rem; }
.footer-brand img { height: 28px; width: auto; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; align-content: start; font-size: 0.9rem; }
.footer-links a { color: var(--text-2); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-legal { grid-column: 1 / -1; border-top: 1px solid var(--border); padding-top: 1.4rem; display: grid; gap: 0.7rem; font-size: 0.78rem; color: var(--muted); }
.age { display: flex; gap: 0.7rem; align-items: flex-start; }
.age-badge { flex: none; border: 1.5px solid var(--muted); color: var(--text-2); border-radius: 50%; width: 32px; height: 32px; display: grid; place-items: center; font-weight: 800; font-size: 0.72rem; }

/* Barra fixa (celular) */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 70; display: none; align-items: center; justify-content: space-between; gap: 0.8rem; padding: 0.7rem 0.7rem 0.7rem 1rem; border-radius: 18px; background: rgba(12, 19, 32, 0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(43, 227, 138, 0.35); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.8); transform: translateY(160%); transition: transform 0.5s var(--ease); }
.sticky-cta.on { transform: none; }
.sticky-cta div { display: grid; line-height: 1.25; }
.sticky-cta b { font-size: 0.95rem; }
.sticky-cta span { font-size: 0.74rem; color: var(--muted); }

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .fc1 { left: -4%; } .fc2 { right: -2%; } .fc3 { left: -2%; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; display: grid; justify-items: center; }
  .lead { margin: 0 auto; }
  .hero-actions, .trust { justify-content: center; }
  .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .versus { grid-template-columns: 1fr; }
  .vs-mid { margin: -1.6rem 0; position: relative; z-index: 1; }
  .t-wide, .t-side { grid-column: 1 / -1; }
  .t-quarter { grid-column: span 6; }
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem 1.1rem; }
  .transparency, .proof, .faq-wrap { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
  .menu-btn { display: inline-flex; }
  .nav { background: rgba(5, 8, 14, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; margin: 0;
    background: rgba(5, 8, 14, 0.97); border-bottom: 1px solid var(--border); padding: 0.4rem var(--gutter) 1rem;
    clip-path: inset(0 0 100% 0); transition: clip-path 0.4s var(--ease); pointer-events: none;
  }
  .nav-links.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid var(--border); font-size: 1.02rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-left: auto; }
  .steps { grid-template-columns: 1fr; gap: 2.4rem; }
  .steps::before, .steps::after { display: none; }
  .t-wide { grid-template-columns: 1fr; }
  .cmp { grid-template-columns: 1fr 3rem; }
  .cmp-bar { grid-column: 1 / -1; grid-row: 2; }
  .footer-inner { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  .footer { padding-bottom: 6.5rem; }
  .marquee-label { display: none; }
  .o2 { display: none; }
  .phone { transform: none; }
  .float-chip { padding: 0.45rem 0.65rem; min-width: 0; }
  .float-chip b { font-size: 1rem; }
  .fc1 { left: 0; top: 8%; } .fc2 { right: 0; top: 50%; } .fc3 { left: 0; bottom: 12%; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 2.35rem; }
  .plans, .numbers-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-actions .btn { width: 100%; }
  .plan-tagline, .plan-sub { min-height: 0; }
  .phone { width: 272px; height: 560px; }
  .o1 { width: 360px; height: 360px; margin: -180px 0 0 -180px; }
  .guarantee { grid-template-columns: auto 1fr; }
  .guarantee .pix { display: none; }
  .demo-foot .btn { width: 100%; }
  .float-chip { display: none; }
}

@media (max-width: 440px) {
  .t-quarter { grid-column: 1 / -1; }
}

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

/* Cards de 1/4 do mosaico: mais compactos para caber 4 por linha */
.t-quarter { padding: 1.35rem; }
.t-quarter h3 { font-size: 1.05rem; }
.t-quarter p { font-size: 0.88rem; }
.t-quarter .gauge { width: 130px; }
.t-quarter .form-row i { width: 28px; height: 28px; }
.t-quarter .slider { font-size: 0.66rem; }

/* Histórico aberto de alertas */
.history { margin-top: 3rem; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: clamp(1.2rem, 3vw, 1.9rem); }
.history-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.history-head h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 800; margin: 0.4rem 0 0; }
.history-sum { color: var(--text-2); font-size: 0.92rem; margin: 0; }
.history-sum b { color: var(--text); font-variant-numeric: tabular-nums; }
.history-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.h-item { display: grid; grid-template-columns: 2rem minmax(0, 1fr) 7.5rem 9.5rem; gap: 0.9rem; align-items: center;
  padding: 0.7rem 0.9rem; border-radius: 14px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); }
.h-item small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: 0.1rem; }
.h-badge { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 0.85rem; }
.h-item.hit .h-badge { background: var(--accent); color: #04140b; }
.h-item.late_hit .h-badge { box-shadow: inset 0 0 0 2px var(--accent); color: var(--accent); }
.h-item.miss .h-badge { background: rgba(var(--critical-rgb), 0.18); color: var(--critical-text); }
.h-match b { font-weight: 650; overflow-wrap: anywhere; }
.h-match u { text-decoration-color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.h-alert b, .h-result { font-variant-numeric: tabular-nums; }
.h-result { text-align: right; font-size: 0.9rem; }
.h-item.hit .h-result { color: var(--accent); font-weight: 700; }
.h-item.miss .h-result { color: var(--critical-text); font-weight: 700; }
.history-more { margin-top: 1rem; }
@media (max-width: 720px) {
  .h-item { grid-template-columns: 2rem minmax(0, 1fr) auto; }
  .h-alert { grid-column: 2; }
  .h-result { grid-column: 3; grid-row: 1 / span 2; }
}

/* ---------- Faixa de consentimento (Google Analytics; só aparece com medição configurada) ----------
   A faixa é montada por templates/_medicao.html, sem classes de botão: estes estilos valem para
   as duas pontas (o mesmo bloco existe em www/static/site.css e app/static/style.css). */
.consentimento {
  position: fixed; z-index: 90; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
  max-width: 560px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.8rem 1.2rem; padding: 0.9rem 1.1rem; border-radius: 18px; font-size: 0.85rem; color: var(--text-2);
  background: rgba(12, 19, 32, 0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong); box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.6);
  animation: consentimento-sobe 0.5s var(--ease) both;
}
.consentimento[hidden] { display: none; }
.consentimento p { margin: 0; flex: 1 1 260px; line-height: 1.5; }
.consentimento a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.consentimento-acoes { display: flex; gap: 0.5rem; flex: 0 0 auto; }
.consentimento button {
  border-radius: 11px; padding: 0.5rem 0.95rem; font: 700 0.82rem var(--font); cursor: pointer;
  border: 1px solid var(--border-strong); background: transparent; color: var(--text-2);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.25s var(--ease);
}
.consentimento button:hover { color: var(--accent); border-color: var(--accent); }
.consentimento [data-consentimento-aceitar] {
  background: var(--accent); color: var(--accent-ink); border-color: transparent;
}
.consentimento [data-consentimento-aceitar]:hover { color: var(--accent-ink); box-shadow: var(--accent-glow); }
@keyframes consentimento-sobe { from { opacity: 0; transform: translateY(20px); } }
@media (prefers-reduced-motion: reduce) { .consentimento { animation: none; } }
/* Enquanto a escolha não é feita, a barra de CTA do celular fica fora do caminho (vem depois da
   regra .sticky-cta.on de propósito: mesma especificidade, esta vence). */
.consentimento-aberto .sticky-cta { transform: translateY(200%); }
