/* ============================================================
   PODION — site de marketing
   Identidade real: azul elétrico + pódio cromado + acento ouro
   sobre navy quase-preto. Stack puro (sem build).
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Base / navy */
  --bg: #06080F;
  --bg-2: #090D18;
  --surface: #0E1320;
  --surface-2: #131A2B;
  --surface-3: #18223A;
  --line: #1E2740;
  --line-2: #2A3654;

  /* Text */
  --text: #F4F7FC;
  --text-2: #AAB7CF;
  --text-3: #71809B;
  --text-4: #4C5772;

  /* Brand blue (extraído do logo/ícone/app) */
  --blue: #2E74FF;
  --blue-2: #5B91FF;
  --blue-3: #93B6FF;
  --cyan: #19B5FF;
  --blue-deep: #0B44E0;
  --blue-glow: rgba(46, 116, 255, 0.40);
  --blue-soft: rgba(46, 116, 255, 0.10);
  --blue-line: rgba(46, 116, 255, 0.28);

  /* Pódio: cromo + ouro */
  --chrome-1: #EEF2F8;
  --chrome-2: #C2CAD8;
  --chrome-3: #8A93A6;
  --gold: #FFC83D;
  --gold-2: #FFB200;
  --silver: #CBD3DF;
  --bronze: #D08A4E;

  --green: #25C26A;
  --red: #FF5D5D;

  /* Type */
  --display: "Sora", system-ui, -apple-system, sans-serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Spacing / radius */
  --container: 1200px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 999px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@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;
  }
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* Foco acessível */
:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-2);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: linear-gradient(90deg, var(--blue), transparent); }

.h-display {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.grad-blue {
  background: linear-gradient(110deg, var(--cyan) 0%, var(--blue) 45%, var(--blue-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-chrome {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--chrome-2) 55%, var(--chrome-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--r-full);
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .25s ease, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--blue-2) 0%, var(--blue) 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 30px -10px var(--blue-glow), 0 0 0 1px rgba(46,116,255,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 16px 40px -12px var(--blue-glow), 0 0 0 1px rgba(91,145,255,0.7); }
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--blue-line); background: var(--blue-soft); color: var(--blue-3); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* App Store badge (oficial-style) */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; color: #fff;
  border: 1px solid #3a3a3c;
  border-radius: 13px;
  padding: 9px 16px 9px 14px;
  transition: transform .18s ease, border-color .2s, background .2s;
  min-height: 56px;
}
.store-badge:hover { transform: translateY(-2px); border-color: #5a5a5e; }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store-badge .sb-small { font-size: 11px; font-weight: 500; opacity: 0.85; letter-spacing: 0.01em; }
.store-badge .sb-big { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; font-family: var(--sans); }
.store-badge.soon { opacity: 0.5; cursor: not-allowed; pointer-events: none; position: relative; }
.store-badge.soon::after {
  content: "Em breve"; position: absolute; top: -9px; right: -8px;
  font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.06em;
  background: var(--blue); color: #fff; padding: 3px 7px; border-radius: var(--r-full);
}

/* ============================================================
   NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 8, 15, 0.7);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--line); background: rgba(6,8,15,0.85); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.navbar-brand { display: flex; align-items: center; gap: 11px; }
.navbar-brand .brand-icon { width: 34px; height: auto; filter: drop-shadow(0 4px 12px rgba(46,116,255,0.35)); }
.navbar-brand .brand-word { height: 19px; width: auto; }
.navbar-menu { display: flex; align-items: center; gap: 34px; }
.navbar-menu a {
  color: var(--text-2); font-size: 14.5px; font-weight: 600;
  transition: color .2s; position: relative;
}
.navbar-menu a:not(.btn):hover { color: var(--text); }
.navbar-menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--blue); transition: width .25s ease; border-radius: 2px;
}
.navbar-menu a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line-2); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .navbar-menu {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(9,13,24,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-120%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .navbar-menu.open { transform: translateY(0); }
  .navbar-menu a:not(.btn) { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .navbar-menu a:not(.btn)::after { display: none; }
  .navbar-menu .btn { margin-top: 16px; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero-bg .mesh {
  position: absolute; top: -20%; left: -10%; width: 90%; height: 130%;
  background:
    radial-gradient(50% 50% at 25% 30%, rgba(46,116,255,0.22) 0%, transparent 70%),
    radial-gradient(40% 45% at 70% 20%, rgba(25,181,255,0.12) 0%, transparent 70%);
  filter: blur(10px);
}
.hero-bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px; background-position: center;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 25%, transparent 78%);
}

.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 40px; align-items: center;
}
.hero-copy { max-width: 600px; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 9px; border-radius: var(--r-full);
  background: var(--blue-soft); border: 1px solid var(--blue-line);
  color: var(--blue-2); font-size: 12.5px; font-weight: 600;
  margin-bottom: 26px;
}
.badge-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 3px rgba(25,181,255,0.25); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(25,181,255,0.45);} 50% { box-shadow: 0 0 0 6px rgba(25,181,255,0);} }

.hero h1 { font-size: clamp(44px, 6.2vw, 84px); margin-bottom: 0; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }
.hero-sub {
  margin-top: 26px; font-size: clamp(16px, 1.35vw, 18.5px);
  color: var(--text-2); max-width: 510px; line-height: 1.62; text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 36px; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 38px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-2); }
.trust-item svg { width: 17px; height: 17px; color: var(--blue-2); flex-shrink: 0; }
.trust-sep { width: 1px; height: 18px; background: var(--line-2); }

/* anim de entrada do headline — CSS-only @keyframes, sem dependência de JS.
   fill: both garante que antes da anim o span está oculto e depois fica visível. */
@keyframes revealUp {
  from { transform: translateY(105%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.reveal-up > span {
  display: inline-block;
  animation: revealUp 0.9s cubic-bezier(.16,1,.3,1) both;
}
.reveal-up.d1 > span { animation-delay: 0.1s; }
.reveal-up.d2 > span { animation-delay: 0.2s; }
.reveal-up.d3 > span { animation-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up > span { animation: none; opacity: 1; transform: none; }
}

/* ----- Phone mockup (recriação limpa da tela de gravação, em azul) ----- */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 600px; }
.phone {
  position: relative; width: 312px; height: 638px; flex-shrink: 0;
  border-radius: 46px; padding: 13px;
  background: linear-gradient(160deg, #20283C 0%, #0C1120 60%);
  box-shadow:
    0 0 0 2px #2C3650,
    0 0 0 8px #11172A,
    0 40px 90px -25px rgba(0,0,0,0.8),
    0 0 90px -20px var(--blue-glow);
  z-index: 2;
  will-change: transform;
}
.phone::before {
  content: ""; position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 104px; height: 30px; background: #05070D; border-radius: 0 0 18px 18px; z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: #070B14; position: relative;
  display: flex; flex-direction: column;
}
.ps-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 22px 6px; font-size: 12px; font-weight: 700; color: var(--text);
  font-family: var(--mono); flex-shrink: 0;
}
.ps-status .gps { display: inline-flex; align-items: center; gap: 5px; color: var(--blue-2); }
.ps-status .gps svg { width: 13px; height: 13px; }
.ps-status .sysicons { display: flex; gap: 5px; opacity: 0.85; }

/* mapa */
.ps-map { position: relative; flex: 1; min-height: 0; background: linear-gradient(180deg, #0B1424 0%, #0A1120 100%); overflow: hidden; }
.ps-map .mgrid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(120,150,200,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,150,200,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.ps-map .roads path { fill: none; stroke: rgba(150,175,220,0.10); stroke-width: 7; stroke-linecap: round; }
.ps-map .route { fill: none; stroke: url(#heroRoute); stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 5px var(--blue-glow)); stroke-dasharray: 760; stroke-dashoffset: 760; }
.ps-map.run .route { animation: draw 3.6s ease-out .4s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.ps-pin { position: absolute; border-radius: 50%; }
.ps-pin.start { width: 13px; height: 13px; background: var(--green); border: 3px solid #fff; bottom: 64px; left: 40px; box-shadow: 0 0 10px rgba(37,194,106,0.6); }
.ps-pin.now { width: 16px; height: 16px; background: var(--blue); border: 3px solid #fff; top: 70px; right: 56px; box-shadow: 0 0 0 4px rgba(46,116,255,0.3); animation: nowpulse 2s infinite; }
@keyframes nowpulse { 0%,100% { box-shadow: 0 0 0 4px rgba(46,116,255,0.3);} 50% { box-shadow: 0 0 0 11px rgba(46,116,255,0);} }
.ps-chip {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(8,12,22,0.8); backdrop-filter: blur(6px);
  border: 1px solid rgba(120,150,200,0.18); border-radius: var(--r-full);
  padding: 6px 13px; font-size: 11.5px; font-weight: 600; color: var(--text); z-index: 3;
}
.ps-chip svg { width: 12px; height: 12px; color: var(--blue-2); }

/* seletor de modalidade */
.ps-modes { display: flex; gap: 6px; padding: 12px 14px 4px; flex-shrink: 0; }
.ps-mode { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 8px 4px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; color: var(--text-3); background: var(--surface-2); border: 1px solid var(--line); }
.ps-mode svg { width: 13px; height: 13px; }
.ps-mode.active { color: #fff; background: linear-gradient(180deg, var(--blue-2), var(--blue)); border-color: transparent; box-shadow: 0 6px 16px -6px var(--blue-glow); }

/* stats */
.ps-stats { padding: 6px 18px 14px; flex-shrink: 0; }
.ps-main { text-align: center; padding: 8px 0 12px; }
.ps-main .v { font-family: var(--display); font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; }
.ps-main .v .u { font-size: 22px; color: var(--text-2); font-weight: 600; }
.ps-main .l { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-3); font-weight: 700; margin-top: 5px; }
.ps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; padding-top: 12px; border-top: 1px solid var(--line); }
.ps-cell { text-align: center; }
.ps-cell .v { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--text); }
.ps-cell .l { font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 600; margin-top: 3px; }

/* tabbar */
.ps-tabbar { display: flex; justify-content: space-around; align-items: center; padding: 10px 12px 16px; border-top: 1px solid var(--line); background: #090E1A; flex-shrink: 0; position: relative; }
.ps-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8px; color: var(--text-3); font-weight: 600; }
.ps-tab svg { width: 17px; height: 17px; }
.ps-tab.center { width: 46px; height: 46px; border-radius: 50%; justify-content: center; margin-top: -26px; background: linear-gradient(180deg, var(--blue-2), var(--blue)); color: #fff; box-shadow: 0 8px 22px -6px var(--blue-glow); }
.ps-tab.center svg { width: 20px; height: 20px; }

/* floats em volta do phone */
.float {
  position: absolute; z-index: 3;
  background: rgba(14,19,32,0.82); backdrop-filter: blur(16px);
  border: 1px solid var(--line-2); border-radius: var(--r-md);
  padding: 12px 14px; box-shadow: 0 24px 50px -16px rgba(0,0,0,0.7);
  animation: floaty 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-rank { top: 78px; right: -16px; display: flex; align-items: center; gap: 11px; animation-delay: .3s; }
.float-rank .medal { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 15px; color: #3A2A00; background: linear-gradient(145deg, #FFE27A, var(--gold-2)); box-shadow: 0 4px 12px rgba(255,178,0,0.35); }
.float-rank .t1 { font-size: 12.5px; font-weight: 700; color: var(--text); }
.float-rank .t2 { font-size: 10.5px; color: var(--text-3); font-family: var(--mono); margin-top: 1px; }
.float-evo { bottom: 96px; left: -28px; display: flex; align-items: center; gap: 11px; animation-delay: 1.4s; }
.float-evo .ic { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; color: var(--green); background: rgba(37,194,106,0.14); }
.float-evo .ic svg { width: 18px; height: 18px; }
.float-evo .t1 { font-family: var(--display); font-size: 17px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.float-evo .t2 { font-size: 10.5px; color: var(--text-3); }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 620px; }
  .float-rank { right: 4px; }
  .float-evo { left: 4px; }
}
@media (max-width: 420px) {
  .phone { width: 280px; height: 574px; }
  .float-evo { left: -6px; }
  .float-rank { right: -6px; }
}

/* ============================================================
   MARQUEE / modalidades
   ============================================================ */
.marquee { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; gap: 56px; width: max-content; align-items: center; animation: scroll 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.m-item { display: inline-flex; align-items: center; gap: 12px; color: var(--text-3); font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; white-space: nowrap; }
.m-item svg { width: 20px; height: 20px; color: var(--blue-2); }
.m-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--line-2); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION shell
   ============================================================ */
section { padding: 100px 0; }
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .eyebrow::before { display: none; }
.h-section { font-family: var(--display); font-weight: 800; font-size: clamp(32px, 4.2vw, 52px); line-height: 1.04; letter-spacing: -0.04em; text-wrap: balance; }
.sec-sub { margin-top: 18px; color: var(--text-2); font-size: 17.5px; line-height: 1.6; text-wrap: pretty; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }
.reveal.d5 { transition-delay: .35s; }

/* ============================================================
   BENTO features
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; transition: border-color .3s, transform .3s;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 50% -10%, rgba(46,116,255,0.10), transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.card:hover { border-color: var(--blue-line); transform: translateY(-3px); }
.card:hover::after { opacity: 1; }
.card .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue-2); border: 1px solid var(--blue-line); margin-bottom: 16px; }
.card .ic svg { width: 19px; height: 19px; }
.card h3 { font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }

.b-gps { grid-column: span 4; grid-row: span 2; display: flex; flex-direction: column; padding-bottom: 0; }
.b-rank { grid-column: span 2; grid-row: span 2; }
.b-feed { grid-column: span 2; }
.b-asses { grid-column: span 2; }
.b-evo { grid-column: span 2; }
.b-priv { grid-column: span 3; }
.b-integr { grid-column: span 3; }

/* GPS card live map */
.gps-map { position: relative; flex: 1; min-height: 210px; margin: 22px -26px 0; border-top: 1px solid var(--line); background: linear-gradient(180deg, #0A1322 0%, #070B14 100%); overflow: hidden; }
.gps-map .badge {
  position: absolute; top: 16px; left: 20px; display: flex; gap: 18px;
  background: rgba(8,12,22,0.6); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 12px; padding: 9px 14px;
}
.gps-map .badge .v { font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--text); font-variant-numeric: tabular-nums; }
.gps-map .badge .v small { font-size: 11px; color: var(--text-3); font-weight: 500; }
.gps-map .badge .l { font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 600; margin-top: 3px; }

/* Rank card list */
.rank-list { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.rr { display: flex; align-items: center; gap: 11px; padding: 9px 11px; border-radius: 11px; background: rgba(255,255,255,0.02); border: 1px solid var(--line); }
.rr .p { width: 18px; text-align: center; font-family: var(--mono); font-weight: 700; font-size: 12px; color: var(--text-3); }
.rr.g1 .p { color: var(--gold); } .rr.g2 .p { color: var(--silver); } .rr.g3 .p { color: var(--bronze); }
.rr .av { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; }
.rr .nm { flex: 1; font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rr .km { font-family: var(--mono); font-size: 11.5px; font-weight: 600; color: var(--blue-2); }
.rr.me { background: var(--blue-soft); border-color: var(--blue-line); }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-gps, .b-rank, .b-feed, .b-asses, .b-evo, .b-priv, .b-integr { grid-column: span 2; grid-row: auto; }
  .b-gps .gps-map { min-height: 200px; }
}
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .b-gps, .b-rank, .b-feed, .b-asses, .b-evo, .b-priv, .b-integr { grid-column: span 1; } }

/* ============================================================
   SHOWCASE — telas reais (cinematográfico)
   ============================================================ */
.showcase { background: var(--bg-2); border-block: 1px solid var(--line); }
.show-item { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.show-item + .show-item { margin-top: 120px; }
.show-item.flip .show-media { order: 2; }
.show-media { position: relative; display: flex; justify-content: center; }
.show-media .glow { position: absolute; inset: 6% 12%; background: radial-gradient(closest-side, var(--blue-glow), transparent 75%); filter: blur(30px); z-index: 0; }
.show-media img {
  position: relative; z-index: 1; width: 100%; max-width: 380px; height: auto;
  border-radius: 26px; border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.show-media:hover img { transform: translateY(-6px) scale(1.012); }
.show-num { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--blue-2); letter-spacing: 0.1em; }
.show-copy h3 { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.06; margin: 14px 0 16px; text-wrap: balance; }
.show-copy p { color: var(--text-2); font-size: 16.5px; line-height: 1.62; max-width: 460px; text-wrap: pretty; }
.show-feats { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.show-feats li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--text); font-weight: 500; }
.show-feats svg { width: 20px; height: 20px; color: var(--blue-2); flex-shrink: 0; }

@media (max-width: 900px) {
  .show-item, .show-item.flip { grid-template-columns: 1fr; gap: 36px; }
  .show-item.flip .show-media { order: 0; }
  .show-item + .show-item { margin-top: 80px; }
  .show-media img { max-width: 320px; }
}

/* ============================================================
   STATS / valores (sem números inventados)
   ============================================================ */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.value { background: var(--surface); padding: 32px 24px; text-align: center; transition: background .3s; }
.value:hover { background: var(--surface-2); }
.value .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin: 0 auto 14px; background: var(--blue-soft); color: var(--blue-2); border: 1px solid var(--blue-line); }
.value .ic svg { width: 21px; height: 21px; }
.value .t { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.value .d { font-size: 13px; color: var(--text-3); margin-top: 5px; }
@media (max-width: 720px) { .values { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CTA final
   ============================================================ */
.cta { padding: 110px 0; }
.cta-wrap {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 120% at 80% 20%, rgba(46,116,255,0.25), transparent 60%),
    radial-gradient(50% 100% at 10% 90%, rgba(25,181,255,0.14), transparent 60%),
    linear-gradient(160deg, #0A1020 0%, #0B142B 100%);
  border: 1px solid var(--blue-line); border-radius: var(--r-xl);
  padding: 72px 60px; text-align: center;
}
.cta-wrap .grid-deco {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 75%);
}
.cta-wrap > * { position: relative; }
.cta-icon { width: 64px; height: auto; margin: 0 auto 22px; filter: drop-shadow(0 8px 24px rgba(46,116,255,0.5)); }
.cta h2 { font-family: var(--display); font-size: clamp(32px, 4.6vw, 58px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; text-wrap: balance; }
.cta p { color: var(--text-2); font-size: 18px; margin: 18px auto 0; max-width: 480px; text-wrap: pretty; }
.cta-stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
@media (max-width: 620px) { .cta-wrap { padding: 48px 26px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer-brand .navbar-brand { margin-bottom: 16px; }
.footer-brand p { color: var(--text-3); font-size: 14px; max-width: 290px; }
.footer-brand .flag { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-size: 12px; color: var(--text-2); background: var(--surface); border: 1px solid var(--line); padding: 6px 11px; border-radius: var(--r-full); }
.footer-col h5 { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--text-2); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--blue-2); }
.footer-bot { margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bot p { color: var(--text-3); font-size: 13px; }
.footer-soc { display: flex; gap: 9px; }
.footer-soc a { width: 38px; height: 38px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-2); transition: color .2s, border-color .2s, transform .2s; }
.footer-soc a:hover { color: var(--blue-2); border-color: var(--blue-line); transform: translateY(-2px); }
.footer-soc svg { width: 17px; height: 17px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: span 2; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: span 1; } }
