/* ══════════════════════════════════════════════════════
   TIPSTER DANILO MARTINS — styles.css
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2e90ff;
  --blue-light: #5cb2ff;
  --cyan: #19c8f0;
  --bg: #05070d;
  --bg-2: #080c16;
  --glass: rgba(255,255,255,0.035);
  --glass-border: rgba(255,255,255,0.09);
  --text: #eef2f7;
  --text-muted: #8a96a8;
  --radius: 18px;
  --max: 1180px;
  --nav-h: 66px;
  --ease: cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: 76px;
  -webkit-font-smoothing: antialiased;
}
body.loading { overflow: hidden; }

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

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 22px;
  background: radial-gradient(ellipse at 50% 40%, #0a1426 0%, #05070d 70%);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-ball-wrap { position: relative; width: 86px; height: 86px; }
.pl-ring { position: absolute; inset: -12px; border-radius: 50%; border: 2px solid rgba(46,144,255,0.14); border-top-color: var(--blue); animation: pl-spin 0.9s linear infinite; }
.pl-ball { width: 100%; height: 100%; animation: pl-roll 1.6s ease-in-out infinite; }
@keyframes pl-spin { to { transform: rotate(360deg); } }
@keyframes pl-roll { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(0.92); } 100% { transform: rotate(360deg) scale(1); } }
.pl-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.pl-text span { color: var(--blue-light); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  background: rgba(5,7,13,0.72);
  backdrop-filter: blur(22px) saturate(1.4); -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled { background: rgba(5,7,13,0.93); border-bottom-color: rgba(46,144,255,0.18); }
.nav-inner { max-width: var(--max); height: 100%; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-icon { width: 36px; height: 36px; flex-shrink: 0; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5)); }
.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 1.2px; text-transform: uppercase; color: #fff; line-height: 1; }
.nav-logo-text span { color: var(--blue-light); }
.nav-links { display: none; align-items: center; gap: 30px; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.62); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 15.5px;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 15px 30px; border-radius: 12px; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.2s;
  white-space: nowrap;
}
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 14px; border-radius: 10px; }

.btn-primary { background: linear-gradient(180deg, #3a9bff, #1675ec); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 6px 18px rgba(22,117,236,0.30); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.28) inset, 0 12px 28px rgba(22,117,236,0.42); }
.btn-cyan { background: linear-gradient(180deg, #2ad2f5, #0aa8e0); color: #03141c; box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 6px 18px rgba(20,180,230,0.32); }
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 12px 30px rgba(20,200,240,0.44); }
.btn-ghost { background: rgba(255,255,255,0.04); color: #fff; border-color: rgba(255,255,255,0.16); }
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(92,178,255,0.45); transform: translateY(-2px); }

/* linha de luz em movimento (sutil) nos botões principais */
.btn-primary, .btn-cyan { position: relative; overflow: hidden; }
.btn-primary::before, .btn-cyan::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -35%; width: 24%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg); pointer-events: none;
  animation: btn-sweep 3.6s var(--ease) infinite;
}
@keyframes btn-sweep { 0% { left: -35%; } 50% { left: 130%; } 100% { left: 130%; } }

/* ── GLASS CARD ── */
.glass-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  position: relative; overflow: hidden;
}
.glass-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); pointer-events: none; }

/* ── SECTION HELPERS ── */
.page-section { position: relative; z-index: 5; padding: 60px 16px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue-light); text-align: center; margin-bottom: 12px; }
.section-headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(30px, 6vw, 54px); line-height: 0.96; letter-spacing: -0.5px; text-transform: uppercase; text-align: center; color: #fff; margin-bottom: 12px; }
.section-headline .accent { color: var(--blue-light); }
.section-sub { text-align: center; font-size: 15px; color: var(--text-muted); margin: 0 auto 38px; max-width: 560px; line-height: 1.55; }

/* ── HERO (composição central — estádio premium + dashboard) ── */
#hero { position: relative; overflow: hidden; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--nav-h) + 22px) 16px 44px; }

.hero-bg {
  position: absolute; top: -8%; left: 0; right: 0; height: 120%; z-index: 0;
  background: url('Fotos/arena.webp') center 32% / cover no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 58% 48% at 50% 40%, rgba(12,46,104,0.22) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(5,8,16,0.78) 0%, rgba(5,9,20,0.40) 38%, rgba(5,8,16,0.48) 72%, rgba(5,7,13,0.90) 93%, var(--bg) 100%);
}
.hero-tactical { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.45; }
.hero-tactical svg { width: 100%; height: 100%; }
#particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; opacity: 0.4; }

.hero-inner { position: relative; z-index: 5; width: 100%; max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }

.hero-stage { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero-glow {
  position: absolute; top: 46%; left: 50%; transform: translate(-50%,-50%);
  width: 360px; height: 360px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(30,130,255,0.45) 0%, rgba(20,150,255,0.14) 45%, transparent 70%);
  filter: blur(26px); animation: heroGlow 6s ease-in-out infinite;
}
@keyframes heroGlow { 0%,100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); } }
.hero-photo { position: relative; z-index: 2; width: auto; max-width: 300px; max-height: 46vh; object-fit: contain; filter: drop-shadow(0 18px 38px rgba(0,0,0,0.45)); }

/* métricas — grid abaixo da foto (mobile) / flutuando (desktop) */
.hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; max-width: 440px; margin: 18px auto 2px; }
.metric-card { display: flex; align-items: center; gap: 11px; padding: 13px 14px; border-radius: 14px; background: rgba(8,16,34,0.62); border: 1px solid rgba(46,144,255,0.20); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 8px 26px rgba(0,0,0,0.4); text-align: left; }
.metric-ico { width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px; background: rgba(46,144,255,0.12); border: 1px solid rgba(46,144,255,0.28); display: flex; align-items: center; justify-content: center; }
.metric-ico svg { width: 17px; height: 17px; stroke: var(--blue-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.metric-val { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 17px; line-height: 1.05; color: #fff; }
.metric-lbl { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }

.hero-headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(30px, 8vw, 58px); line-height: 0.98; letter-spacing: -0.5px; text-transform: uppercase; color: #fff; margin: 22px 0 16px; }
.hero-headline .accent { color: var(--blue-light); text-shadow: 0 0 40px rgba(46,144,255,0.5); }
.hero-sub { font-size: clamp(14px, 2vw, 16px); line-height: 1.6; color: rgba(238,242,247,0.66); max-width: 540px; margin: 0 auto 28px; }
.hero-cta-wrap { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 340px; }

@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* desktop ≥1024: cards flutuam ao redor do Danilo */
@media (min-width: 1024px) {
  .hero-photo { max-width: 350px; max-height: 54vh; transform: translateY(28px); }
  .hero-glow { width: 420px; height: 420px; }
  .hero-headline { font-size: clamp(46px, 5.2vw, 70px); margin-top: 14px; }
  .hero-sub { font-size: 17px; }
  .hero-cta-wrap { flex-direction: row; justify-content: center; max-width: none; }
  .hero-cta-wrap .btn { min-width: 230px; }
  .hero-stage { justify-content: center; }
  /* foto e cards descem juntos (mantém alinhamento); cards acima da foto no z */
  .hero-metrics { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%) translateY(28px); width: min(720px, 100%); max-width: none; margin: 0; display: block; pointer-events: none; }
  .metric-card { position: absolute; width: 212px; z-index: 3; pointer-events: auto; animation: floatCard 6s ease-in-out infinite; }
  .metric-card.m1 { top: 20%; left: 0; }
  .metric-card.m2 { top: 9%; right: 0; animation-delay: 1.2s; }
  .metric-card.m3 { bottom: 22%; left: 0; animation-delay: 0.6s; }
  .metric-card.m4 { bottom: 10%; right: 0; animation-delay: 1.8s; }
}

/* ── MARQUEE INFINITO (rola sozinho, sem início/fim) ── */
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 18px; width: max-content;
  animation: marquee var(--dur, 40s) linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Experiência */
#vivencia { padding: 64px 0; }
#vivencia .head-wrap { padding: 0 16px; }
.exp-item { flex: 0 0 clamp(260px, 70vw, 520px); aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid rgba(46,144,255,0.18); box-shadow: 0 14px 40px rgba(0,0,0,0.5); transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.exp-item:hover { border-color: rgba(46,144,255,0.45); box-shadow: 0 18px 46px rgba(0,0,0,0.6), 0 0 36px rgba(30,120,255,0.18); }
.exp-item img { width: 100%; height: 100%; object-fit: cover; }
.exp-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,7,13,0.4), transparent 42%); pointer-events: none; }

/* ── CARDS MODULARES ── */
.mod { display: grid; grid-template-columns: 1fr; }
.mod-media { position: relative; aspect-ratio: 16 / 11; max-height: 320px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mod-body { padding: 34px 26px 38px; }
.mod-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 8px; }
.mod-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(30px, 6vw, 46px); line-height: 0.94; letter-spacing: -0.5px; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.mod-title .accent { color: var(--blue-light); }
.mod-title .accent-cyan { color: var(--cyan); }
.mod-desc { font-size: 14.5px; line-height: 1.65; color: rgba(238,242,247,0.64); margin-bottom: 22px; }
.benefits { display: grid; grid-template-columns: 1fr; gap: 11px; margin-bottom: 28px; }
.benefits li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: rgba(238,242,247,0.82); min-width: 0; }
.benefits svg { width: 17px; height: 17px; stroke: var(--blue-light); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.benefits.cy svg { stroke: var(--cyan); }
.mod-body .btn { width: 100%; max-width: 380px; }

.art-placeholder { background: radial-gradient(ellipse at 50% 38%, rgba(46,144,255,0.18), transparent 65%), linear-gradient(160deg, #0a1830, #0a1426); }
.art-telegram .tg-badge { width: 96px; height: 96px; border-radius: 26px; background: linear-gradient(160deg, #2aabee, #2293d4); display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 40px rgba(34,147,212,0.4), inset 0 1px 0 rgba(255,255,255,0.3); }
.art-telegram .tg-badge svg { width: 50px; height: 50px; }
.art-telegram .art-label { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

.mod-media.photo { align-items: flex-end; }
.mod-media.photo img { width: 100%; height: 100%; object-fit: contain; object-position: bottom center; }

.vip-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(25,200,240,0.09); border: 1px solid rgba(25,200,240,0.24); color: var(--cyan); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 5px 13px; border-radius: 7px; margin-bottom: 14px; }
.mod--vip { border-color: rgba(25,200,240,0.26); background: linear-gradient(160deg, rgba(20,130,255,0.10), rgba(8,40,110,0.05) 55%, rgba(5,8,18,0.6)); box-shadow: 0 0 50px rgba(20,140,255,0.08); }
.promo-badge { position: absolute; top: 14px; right: 14px; z-index: 6; background: linear-gradient(180deg, #2ad2f5, #0aa8e0); color: #03141c; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; box-shadow: 0 6px 18px rgba(20,180,230,0.4); }
.vip-discount { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; margin-top: 12px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: #03141c; background: linear-gradient(180deg, #2ad2f5, #0aa8e0); padding: 6px 16px; border-radius: 100px; box-shadow: 0 4px 16px rgba(20,180,230,0.4); }
.vip-discount::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #03141c; }

/* ── BANNER PLACEHOLDER (imagem acima de Especiais + Social) ── */
.extras-banner {
  max-width: var(--max); margin: 0 auto 26px; overflow: hidden;
  height: 200px;
  border: 1.5px solid rgba(46,144,255,0.40);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #0a1426, #070b14);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 34px rgba(46,144,255,0.10);
}
.extras-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (min-width: 768px) { .extras-banner { height: auto; aspect-ratio: 3340 / 1240; } }
.eb-ph { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; padding: 16px; }
.eb-ph { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; padding: 16px; }
.eb-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-light); }
.eb-hint { font-size: 11.5px; color: var(--text-muted); }

/* ── ESPECIAIS + SOCIAL + STATS ── */
.duo-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.duo-card { padding: 36px 28px; text-align: center; }
.duo-icon { width: 58px; height: 58px; margin: 0 auto 20px; background: rgba(46,144,255,0.08); border: 1px solid rgba(46,144,255,0.22); border-radius: 15px; display: flex; align-items: center; justify-content: center; }
.duo-icon svg { width: 27px; height: 27px; stroke: var(--blue-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.duo-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(26px, 4.5vw, 34px); line-height: 0.96; letter-spacing: -0.5px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.duo-title .accent { color: var(--blue-light); }
.duo-desc { font-size: 14px; color: rgba(238,242,247,0.58); margin-bottom: 22px; }
.duo-card .benefits { text-align: left; max-width: 320px; margin: 0 auto 26px; }
.duo-card .btn { max-width: 320px; width: 100%; }

.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0 auto 40px; max-width: var(--max); }
.stat-card { background: linear-gradient(160deg, rgba(46,144,255,0.07), rgba(255,255,255,0.018)); border: 1px solid rgba(46,144,255,0.14); border-radius: 16px; padding: 26px 16px; text-align: center; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(30px, 4vw, 44px); color: #fff; line-height: 1; }
.stat-num .u { color: var(--blue-light); }
.stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 6px; line-height: 1.3; }

/* ══════════════════════════════════════════════════════
   PLANILHAS (monitor CSS + cards premium)
══════════════════════════════════════════════════════ */
.sheets-stage { display: flex; flex-direction: column; gap: 16px; align-items: center; }

/* ── card premium ── */
.sheet-card {
  display: flex; align-items: center; gap: 16px;
  width: 100%; max-width: 460px;
  padding: 18px 20px; border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(20,40,90,0.32), rgba(8,14,30,0.55));
  border: 1px solid rgba(46,144,255,0.22);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45), 0 0 0 0 rgba(46,144,255,0);
  transition: transform 0.3s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
  cursor: pointer; position: relative; overflow: hidden;
}
.sheet-card::before {
  content: ''; position: absolute; top: 0; left: 18%; right: 18%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(46,144,255,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.sheet-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(46,144,255,0.55);
  box-shadow: 0 22px 50px rgba(0,0,0,0.55), 0 0 40px rgba(30,130,255,0.22);
}
.sheet-card:hover::before { opacity: 1; }

.sheet-ico {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, rgba(46,144,255,0.18), rgba(20,90,200,0.10));
  border: 1px solid rgba(46,144,255,0.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 18px rgba(46,144,255,0.10);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.sheet-ico svg { width: 24px; height: 24px; stroke: var(--blue-light); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.sheet-card:hover .sheet-ico { transform: scale(1.1) rotate(-4deg); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 26px rgba(46,144,255,0.35); }

.sheet-text { flex: 1; min-width: 0; }
.sheet-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: 0.2px; color: #fff; line-height: 1.05; margin-bottom: 4px; }
.sheet-desc { font-size: 12.5px; color: rgba(238,242,247,0.6); line-height: 1.4; }

.sheet-arrow { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(46,144,255,0.25); display: flex; align-items: center; justify-content: center; color: var(--blue-light); transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s; }
.sheet-arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.sheet-card:hover .sheet-arrow { transform: translateX(4px); background: rgba(46,144,255,0.15); border-color: var(--blue-light); }

/* ── monitor + planilha (CSS puro) ── */
.sheet-monitor { display: flex; flex-direction: column; align-items: center; width: 100%; position: relative; }
.sheet-monitor::before {
  content: ''; position: absolute; top: 6%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 80%; z-index: 0;
  background: radial-gradient(ellipse, rgba(30,130,255,0.30) 0%, rgba(20,150,255,0.10) 45%, transparent 70%);
  filter: blur(40px);
}
.monitor-screen {
  position: relative; z-index: 1;
  width: 100%; max-width: 540px; aspect-ratio: 16 / 10.4;
  border-radius: 16px; padding: 12px;
  background: linear-gradient(160deg, #0b1730, #060a16);
  border: 1px solid rgba(46,144,255,0.30);
  box-shadow: 0 34px 70px rgba(0,0,0,0.6), 0 0 60px rgba(20,140,255,0.14), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.monitor-stand { z-index: 1; width: 84px; height: 16px; background: linear-gradient(180deg, #0c1830, #070b14); border: 1px solid rgba(46,144,255,0.18); border-top: none; border-radius: 0 0 7px 7px; }
.monitor-base { z-index: 1; width: 150px; height: 7px; border-radius: 6px; background: rgba(46,144,255,0.20); margin-top: 4px; box-shadow: 0 6px 16px rgba(0,0,0,0.5); }

/* planilha dentro da tela */
.ss { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 7px; }
.ss-bar { display: flex; align-items: center; gap: 7px; }
.ss-dots { display: flex; gap: 4px; }
.ss-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.ss-dots i:first-child { background: rgba(46,144,255,0.7); }
.ss-tab { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(238,242,247,0.5); padding: 2px 8px; border-radius: 5px; background: rgba(255,255,255,0.04); }
.ss-tab.on { color: var(--blue-light); background: rgba(46,144,255,0.14); }
.ss-spacer { flex: 1; }

.ss-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.kpi { background: rgba(46,144,255,0.08); border: 1px solid rgba(46,144,255,0.18); border-radius: 7px; padding: 6px 8px; }
.kpi b { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; color: var(--cyan); line-height: 1; }
.kpi span { font-size: 8px; letter-spacing: 0.4px; text-transform: uppercase; color: rgba(238,242,247,0.45); }

.ss-main { flex: 1; display: grid; grid-template-columns: 1.45fr 1fr; gap: 7px; min-height: 0; }

/* tabela */
.ss-table { display: flex; flex-direction: column; gap: 3px; min-height: 0; }
.ss-row { display: grid; grid-template-columns: 1.1fr 1.4fr 0.7fr 0.8fr; gap: 4px; align-items: center; }
.ss-row.head span { font-size: 7.5px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: rgba(92,178,255,0.7); }
.ss-row span { font-size: 8.5px; color: rgba(238,242,247,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ss-cell { background: rgba(255,255,255,0.03); border-radius: 3px; padding: 3px 5px; }
.ss-row.head .ss-cell { background: rgba(46,144,255,0.10); }
.ss-pos { color: var(--cyan) !important; background: rgba(25,200,240,0.12); }
.ss-neg { color: #ff6b7a !important; background: rgba(255,80,100,0.10); }

/* painel lateral: gráfico + donut */
.ss-side { display: flex; flex-direction: column; gap: 7px; min-height: 0; }
.ss-chart { flex: 1; background: rgba(46,144,255,0.05); border: 1px solid rgba(46,144,255,0.14); border-radius: 7px; padding: 6px; display: flex; flex-direction: column; }
.ss-chart .ss-mini { font-size: 7.5px; letter-spacing: 0.4px; text-transform: uppercase; color: rgba(238,242,247,0.5); margin-bottom: 3px; }
.ss-chart svg { width: 100%; flex: 1; }
.ss-donut { display: flex; align-items: center; gap: 8px; background: rgba(46,144,255,0.05); border: 1px solid rgba(46,144,255,0.14); border-radius: 7px; padding: 7px 9px; }
.ss-donut svg { width: 38px; height: 38px; flex-shrink: 0; }
.ss-donut b { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 16px; color: #fff; line-height: 1; }
.ss-donut span { font-size: 8px; letter-spacing: 0.4px; text-transform: uppercase; color: rgba(238,242,247,0.5); }

/* ── responsivo da seção ── */
@media (min-width: 640px) and (max-width: 999px) {
  .sheets-stage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
  .sheet-monitor { grid-column: 1 / -1; }
  .sheet-card { max-width: none; }
}
@media (min-width: 1000px) {
  .sheets-stage {
    display: grid;
    grid-template-columns: 1fr 1.55fr 1fr;
    grid-template-rows: auto auto;
    gap: 22px 26px; align-items: center; justify-items: center;
  }
  .sheet-monitor { grid-column: 2; grid-row: 2; }
  .sheet-card { max-width: 360px; }
  .pos-top    { grid-column: 2; grid-row: 1; }
  .pos-left   { grid-column: 1; grid-row: 2; }
  .pos-right  { grid-column: 3; grid-row: 2; }
  .pos-bottom { grid-column: 2; grid-row: 3; }
}

/* ── SUPORTE ── */
.suporte-card { border-color: rgba(46,144,255,0.12); background: linear-gradient(160deg, rgba(30,110,235,0.05), rgba(5,8,16,0.5)); }
.suporte-inner { display: flex; flex-direction: column; }
.suporte-content { padding: 38px 28px; flex: 1; text-align: center; }
.suporte-header { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 18px; }
.sup-badge { width: 50px; height: 50px; background: linear-gradient(150deg, #3a9bff, #0a5fd0); border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(20,110,230,0.32); flex-shrink: 0; }
.sup-badge svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.suporte-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(26px, 5vw, 40px); line-height: 0.96; letter-spacing: -0.5px; text-transform: uppercase; color: #fff; text-align: left; }
.suporte-title .accent { color: var(--blue-light); }
.checks { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 22px auto 20px; max-width: 480px; justify-items: center; }
.check-row { display: flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(238,242,247,0.78); }
.check-row svg { width: 17px; height: 17px; stroke: var(--blue-light); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.suporte-disclaimer { font-size: 13px; color: rgba(238,242,247,0.4); line-height: 1.55; margin: 0 auto 24px; max-width: 520px; }
.suporte-content .btn { max-width: 360px; width: 100%; }
.suporte-image { position: relative; display: none; align-items: flex-end; justify-content: center; overflow: hidden; }
.suporte-image img { max-height: 360px; object-fit: contain; object-position: bottom center; }

/* ── DEPOIMENTOS ── */
#prova-social { padding: 60px 0; }
#prova-social .head-wrap, #prova-social .stats-row { padding-left: 16px; padding-right: 16px; }
.testi-card { flex: 0 0 min(360px, 82vw); background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.016)); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 26px 24px; white-space: normal; transition: border-color 0.4s, box-shadow 0.4s; }
.testi-card:hover { border-color: rgba(46,144,255,0.3); box-shadow: 0 18px 50px rgba(0,0,0,0.55); }
.testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid rgba(46,144,255,0.32); background: linear-gradient(150deg, #0c1f3e, #143264); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 19px; color: var(--blue-light); }
.testi-name { font-weight: 700; font-size: 14.5px; color: #fff; margin-bottom: 2px; }
.testi-meta { font-size: 11px; color: var(--text-muted); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.testi-stars svg { width: 14px; height: 14px; fill: #f0b429; }
.testi-text { font-size: 14px; line-height: 1.6; color: rgba(238,242,247,0.72); }
.verified { display: inline-flex; align-items: center; gap: 5px; background: rgba(46,144,255,0.07); border: 1px solid rgba(46,144,255,0.2); color: var(--blue-light); font-size: 10px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-top: 14px; }
.verified svg { width: 11px; height: 11px; stroke: var(--blue-light); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* ── CTA FINAL ── */
#final-cta { position: relative; overflow: hidden; padding: 0 0 80px; }
.final-bg { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.01) 0 70px, transparent 70px 140px), radial-gradient(ellipse 90% 50% at 50% 0%, rgba(30,120,255,0.10) 0%, transparent 60%), linear-gradient(180deg, var(--bg) 0%, #060f22 42%, var(--bg) 100%); }
.final-photo { width: 100%; max-width: 400px; height: 480px; position: relative; overflow: hidden; margin: 0 auto -110px; }
.final-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center top; }
.final-content { position: relative; z-index: 5; text-align: center; padding: 20px 16px 0; max-width: var(--max); margin: 0 auto; }
.final-headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(36px, 8vw, 70px); line-height: 0.94; letter-spacing: -1px; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.final-headline .accent { color: var(--blue-light); text-shadow: 0 0 40px rgba(46,144,255,0.4); }
.final-sub { font-size: clamp(14px, 2vw, 16px); color: rgba(238,242,247,0.5); margin-bottom: 40px; }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cta-card { background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.016)); border: 1px solid rgba(255,255,255,0.09); border-radius: 16px; padding: 32px 22px; text-align: center; transition: all 0.28s var(--ease); }
.cta-card:hover { border-color: rgba(46,144,255,0.3); transform: translateY(-4px); }
.cta-card.featured { border-color: rgba(25,200,240,0.32); background: linear-gradient(160deg, rgba(20,130,255,0.10), rgba(8,50,130,0.05)); box-shadow: 0 0 34px rgba(20,150,255,0.1); }
.cta-ico { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; border: 1px solid rgba(46,144,255,0.24); background: rgba(46,144,255,0.07); display: flex; align-items: center; justify-content: center; }
.cta-ico svg { width: 24px; height: 24px; stroke: var(--blue-light); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.cta-card.featured .cta-ico { border-color: rgba(25,200,240,0.4); background: rgba(25,200,240,0.1); }
.cta-card.featured .cta-ico svg { stroke: var(--cyan); }
.cta-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(18px, 2.5vw, 22px); letter-spacing: -0.3px; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.cta-card.featured .cta-title { color: var(--cyan); }
.cta-desc { font-size: 13px; color: rgba(238,242,247,0.55); line-height: 1.5; margin-bottom: 20px; }

/* ── PREÇO VIP ── */
.vip-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.vip-price-from { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.vip-price-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(34px, 6vw, 46px); line-height: 1; color: var(--cyan); text-shadow: 0 0 30px rgba(25,200,240,0.35); }
.vip-price-per { font-size: 13px; font-weight: 600; color: var(--text-muted); }

/* ── FAQ ── */
#faq { padding: 60px 16px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014)); border: 1px solid var(--glass-border); border-radius: 14px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: 0.3px; color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(46,144,255,0.3); display: flex; align-items: center; justify-content: center; position: relative; transition: transform 0.3s var(--ease), border-color 0.3s; }
.faq-item summary .q-ico::before, .faq-item summary .q-ico::after { content: ''; position: absolute; background: var(--blue-light); border-radius: 2px; }
.faq-item summary .q-ico::before { width: 11px; height: 2px; }
.faq-item summary .q-ico::after { width: 2px; height: 11px; transition: opacity 0.3s; }
.faq-item[open] summary .q-ico { transform: rotate(90deg); border-color: var(--blue-light); }
.faq-item[open] summary .q-ico::after { opacity: 0; }
.faq-answer { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.65; color: rgba(238,242,247,0.66); }
.faq-item[open] summary { color: var(--blue-light); }

/* ── FOOTER + STICKY ── */
footer { position: relative; z-index: 5; padding: 30px 24px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-logo span { color: rgba(92,178,255,0.6); }
.footer-disc { font-size: 11.5px; color: rgba(255,255,255,0.22); line-height: 1.65; max-width: 620px; margin: 0 auto; }
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: rgba(5,7,13,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(46,144,255,0.16); transition: transform 0.3s var(--ease); }
.sticky-bar-inner { max-width: 560px; margin: 0 auto; padding: 12px 18px; display: flex; gap: 14px; align-items: center; }
.sticky-text { flex: 1; font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.35; }
.sticky-text strong { color: var(--blue-light); font-size: 13.5px; display: block; font-weight: 700; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Acessibilidade: desliga só as partículas de fundo; mantém reveals,
   carrosséis e a linha de luz dos botões (solicitados explicitamente). */
@media (prefers-reduced-motion: reduce) {
  #particles-canvas { display: none; }
}

/* ══════════════════════════════════════════════════════
   BREAKPOINTS — 320 / 375 / 430 / 768 / 1024 / 1366 / 1920
══════════════════════════════════════════════════════ */
@media (max-width: 999px) {
  .mod--rev .mod-media { order: -1; }
  /* benefícios dos cards VIP/Gratuito em 1 coluna no mobile (evita corte do texto) */
  .mod-body .benefits { grid-template-columns: 1fr; }
}

/* Mobile: hero ancorado no topo com folga (empurra pra baixo, sem corte de centralização) */
@media (max-width: 1023px) {
  #hero { justify-content: flex-start; min-height: auto; padding-top: calc(var(--nav-h) + 13vh); padding-bottom: 8vh; }
  .hero-photo { max-height: 42vh; }
  /* fundo travado e centralizado no mobile (sem parallax que desalinha) */
  .hero-bg { top: 0; height: 100%; background-position: center center; transform: none !important; }
}

@media (min-width: 480px) {
  .benefits { grid-template-columns: 1fr 1fr; gap: 11px 22px; }
  .checks { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .page-section { padding: 70px 24px; }
  .duo-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .cta-grid { grid-template-columns: 1fr 1fr 1fr; max-width: 840px; margin: 0 auto; gap: 18px; }
  .mod-media { aspect-ratio: auto; max-height: none; }
}

@media (min-width: 1000px) {
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }
  nav .nav-inner { padding: 0 40px; }

  .mod { grid-template-columns: 0.92fr 1.08fr; align-items: stretch; }
  .mod-media { aspect-ratio: auto; max-height: none; min-height: 380px; }
  .mod-body { padding: 48px 48px; display: flex; flex-direction: column; justify-content: center; }
  .mod--rev { grid-template-columns: 1.08fr 0.92fr; }
  .mod--rev .mod-media { order: 2; }

  .suporte-inner { flex-direction: row; min-height: 340px; }
  .suporte-content { padding: 44px 44px; text-align: left; }
  .suporte-header { justify-content: flex-start; }
  .checks { margin: 22px 0 20px; max-width: none; justify-items: start; }
  .suporte-disclaimer { margin-left: 0; margin-right: 0; }
  .suporte-content .btn { max-width: 320px; }
  .suporte-image { display: flex; width: 320px; flex-shrink: 0; border-left: 1px solid rgba(46,144,255,0.1); }

  .final-photo { max-width: 460px; height: 560px; margin: 0 auto -140px; }
}

@media (min-width: 1366px) {
  .page-section { padding: 84px 60px; }
  nav .nav-inner { padding: 0 60px; }
}
