/* ============================================================
   Ventura Player — Homepage (dark premium / media player)
   Refinamento UX/UI: contraste sutil entre seções, animações
   discretas, mockups realistas, tipografia e espaçamento.
   ============================================================ */
:root {
  --bg: #05070e;
  --bg-blue: #070e20;      /* fundo azul profundo */
  --bg-black: #03050b;     /* preto quase puro */
  --panel: rgba(255, 255, 255, .03);
  --line: rgba(150, 175, 230, .09);
  --line-2: rgba(150, 175, 230, .16);
  --white: #f4f7ff;
  --text: #a8b4d3;
  --muted: #6b7897;
  --azul: #3d7dff;
  --azul-2: #6ea6ff;
  --azul-deep: #002894;
  --amarelo: #ffd23d;
  --glow: rgba(61, 125, 255, .40);
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 34px 90px -34px rgba(0, 0, 0, .85);
  --shadow-soft: 0 20px 50px -24px rgba(0, 0, 0, .6);
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[id] { scroll-margin-top: 92px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { color: var(--azul-2); font-weight: 600; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; }
.grad-text { background: linear-gradient(100deg, #fff 8%, var(--azul-2) 92%); -webkit-background-clip: text; background-clip: text; color: transparent; }

h1, h2, h3 { color: var(--white); font-weight: 700; letter-spacing: -.02em; line-height: 1.08; }

/* ---------------- seções + contraste sutil ---------------- */
.section { padding: 128px 0; position: relative; }
.sec-blue { background: var(--bg-blue); }
.sec-black { background: var(--bg-black); }
/* transição elegante entre blocos: fina linha luminosa no topo */
.sec-blue + .sec-black, .sec-black + .sec-blue, .sec-black + .sec-cta, .sec-cta + .sec-black { position: relative; }
.section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2) 30%, var(--line-2) 70%, transparent); opacity: .6; }
.hero::before, .hero::after { height: auto; background: none; opacity: 1; } /* o hero tem seus próprios glows */

.section-head { max-width: 700px; margin: 0 auto 72px; text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 48px); }
.section-head p { color: var(--text); margin-top: 20px; font-size: clamp(16px, 2vw, 19px); }

/* ---------------- animações discretas (scroll reveal) ---------------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; }
.js .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------------- botões ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 54px; padding: 0 28px; border-radius: 14px; border: 1px solid transparent;
  font-weight: 600; font-size: 16px; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .25s, border-color .25s, color .2s;
}
.btn-lg { height: 60px; padding: 0 34px; font-size: 17px; border-radius: 16px; }
.btn-sm { height: 42px; padding: 0 18px; font-size: 15px; border-radius: 11px; }
.btn-primary { background: linear-gradient(180deg, #4d88ff, var(--azul)); color: #fff; box-shadow: 0 12px 30px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -10px var(--glow), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-ghost { background: rgba(255,255,255,.055); border-color: rgba(150,175,230,.24); color: var(--white); box-shadow: 0 8px 22px -16px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.07); }
.btn-ghost:hover { background: rgba(61,125,255,.14); border-color: var(--azul); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 38px -14px var(--glow), 0 0 0 1px rgba(61,125,255,.35); }
.btn-soft { background: rgba(255,255,255,.02); color: var(--azul-2); border-color: rgba(150,175,230,.22); }
.btn-soft:hover { border-color: var(--azul); color: #fff; background: rgba(61,125,255,.1); transform: translateY(-2px); box-shadow: 0 12px 30px -16px var(--glow); }

/* ---------------- marca / logo ---------------- */
.marca { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 19px; color: var(--white); letter-spacing: -.01em; }
.marca .tv { width: 42px; height: 36px; flex: none; background: url('/img/ventura-tv.svg') center/contain no-repeat; filter: drop-shadow(0 6px 14px rgba(61,125,255,.28)); }
.marca .tv::after, .marca .tv .barras { display: none; }
.marca .light { color: var(--muted); font-weight: 500; }

/* ---------------- header ---------------- */
.hdr { position: sticky; top: 0; z-index: 60; background: rgba(5, 8, 16, .5); backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid transparent; transition: background .35s var(--ease), backdrop-filter .35s, border-color .35s, box-shadow .35s; }
.hdr .wrap { display: flex; align-items: center; gap: 20px; height: 80px; transition: height .35s var(--ease); }
.hdr .marca { transition: font-size .35s var(--ease); }
.hdr .marca .tv { transition: width .35s var(--ease), height .35s var(--ease); }
/* estado após ~60px de rolagem: mais compacto, blur elegante, ainda translúcido */
.hdr.scrolled { background: rgba(6, 9, 18, .82); backdrop-filter: saturate(170%) blur(22px); border-bottom-color: var(--line); box-shadow: 0 12px 34px -22px rgba(0, 0, 0, .85); }
.hdr.scrolled .wrap { height: 62px; }
.hdr.scrolled .marca { font-size: 17.5px; }
.hdr.scrolled .marca .tv { width: 36px; height: 30px; }
.hdr nav { display: flex; align-items: center; gap: 32px; margin: 0 auto; }
.hdr nav a { color: var(--text); font-size: 15px; font-weight: 500; transition: color .2s; position: relative; }
.hdr nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--azul); border-radius: 2px; transition: width .25s var(--ease); }
.hdr nav a:hover { color: var(--white); }
.hdr nav a:hover::after { width: 100%; }
.hdr .acoes { display: flex; align-items: center; gap: 16px; }
.hdr .entrar { color: var(--text); font-weight: 500; font-size: 15px; }
.hdr .entrar:hover { color: #fff; }
.menu-btn { display: none; background: transparent; border: 1px solid var(--line-2); color: #fff; width: 42px; height: 42px; border-radius: 11px; cursor: pointer; font-size: 18px; }

/* ---------------- hero ---------------- */
.hero { position: relative; padding: 120px 0 130px; min-height: 90vh; display: flex; align-items: center; background: var(--bg-blue); overflow-x: clip; }
.hero .wrap { display: grid; grid-template-columns: 1.02fr minmax(0, 1fr); gap: 64px; align-items: center; width: 100%; }
.hero-visual { min-width: 0; }
.device-tv { max-width: 100%; }
.hero-copy .eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(61,125,255,.07); }
.hero-copy h1 { font-size: clamp(38px, 5.6vw, 66px); margin: 26px 0 0; letter-spacing: -.035em; }
.hero-copy p { font-size: clamp(17px, 2.1vw, 21px); color: var(--text); margin-top: 26px; max-width: 30em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-trust { margin-top: 24px; color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.hero-trust b { color: var(--text); font-weight: 600; }

.hero-visual { position: relative; min-height: 440px; }
.hero-visual .blob { position: absolute; width: 560px; height: 560px; right: -80px; top: -80px; background: radial-gradient(circle, var(--glow), transparent 60%); filter: blur(20px); z-index: -1; animation: floatGlow 9s ease-in-out infinite; }
@keyframes floatGlow { 0%,100% { transform: translateY(0) scale(1); opacity: .9; } 50% { transform: translateY(-14px) scale(1.05); opacity: 1; } }
.js .hero-visual { opacity: 0; transform: translateY(26px) scale(.98); animation: heroIn 1s var(--ease) .15s forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .js .hero-visual { opacity: 1; transform: none; animation: none; } .hero-visual .blob { animation: none; } }

/* ===== mock de interface realista ===== */
.device-tv { position: relative; border-radius: 20px; padding: 11px; background: linear-gradient(160deg, #1c294a, #0b1120); border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.device-tv::after { content: ""; position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%); width: 130px; height: 12px; border-radius: 0 0 12px 12px; background: linear-gradient(#141c30, #0b1120); border: 1px solid var(--line); border-top: none; }
.screen { border-radius: 13px; overflow: hidden; background: linear-gradient(180deg, #0a1020, #080d18); border: 1px solid rgba(255,255,255,.05); aspect-ratio: 16/10; }

.ui { display: flex; height: 100%; font-size: 8px; }
.ui-side { width: 40px; flex: none; background: rgba(255,255,255,.02); border-right: 1px solid rgba(255,255,255,.05); display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 12px 0; }
.ui-side .lg { width: 16px; height: 13px; border-radius: 3px; background: linear-gradient(140deg, #4a86ff, var(--azul-deep)); }
.ui-side .ic { width: 16px; height: 16px; border-radius: 6px; background: rgba(255,255,255,.08); }
.ui-side .ic.on { background: rgba(61,125,255,.5); }
.ui-main { flex: 1; padding: 11px; display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.ui-top { display: flex; align-items: center; gap: 7px; }
.ui-chips { display: flex; gap: 6px; }
.ui-chips span { font-size: 8px; color: #9fb0d0; padding: 3px 8px; border-radius: 999px; background: rgba(255,255,255,.05); white-space: nowrap; }
.ui-chips span.on { background: rgba(61,125,255,.22); color: #cfe0ff; }
.ui-search { margin-left: auto; height: 18px; width: 100px; border-radius: 999px; background: rgba(255,255,255,.06); position: relative; }
.ui-search::before { content: ""; position: absolute; left: 7px; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border: 1.4px solid #7f8fb5; border-radius: 50%; }
.ui-ava { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(140deg, #6ea6ff, #3355cc); flex: none; }
.ui-banner { flex: none; height: 42%; border-radius: 10px; position: relative; overflow: hidden; background: linear-gradient(115deg, #21407a, #10204a 55%, #241148); display: flex; flex-direction: column; justify-content: flex-end; padding: 12px; }
.ui-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120px 90px at 78% 20%, rgba(120,170,255,.35), transparent 60%); }
.ui-banner .tag { position: absolute; top: 10px; left: 12px; font-size: 7.5px; letter-spacing: .1em; color: #bcd0ff; background: rgba(0,0,0,.35); padding: 3px 7px; border-radius: 5px; }
.ui-banner .ttl { position: relative; height: 9px; width: 46%; border-radius: 3px; background: rgba(255,255,255,.9); }
.ui-banner .meta { position: relative; height: 5px; width: 30%; border-radius: 3px; background: rgba(255,255,255,.4); margin-top: 6px; }
.ui-banner .bcta { position: relative; display: flex; gap: 6px; margin-top: 9px; }
.ui-banner .play { width: 22px; height: 22px; border-radius: 50%; background: #fff; display: grid; place-items: center; }
.ui-banner .play::after { content: ""; border-left: 8px solid #10204a; border-top: 5px solid transparent; border-bottom: 5px solid transparent; margin-left: 2px; }
.ui-banner .pill { height: 22px; padding: 0 12px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); }
.ui-label { display: flex; justify-content: space-between; align-items: center; color: #93a4c6; font-weight: 600; }
.ui-label .see { color: #6b7897; font-size: 7.5px; }
.ui-row { display: flex; gap: 8px; }
.poster { flex: 1; aspect-ratio: 2/3; border-radius: 7px; position: relative; overflow: hidden; background: linear-gradient(160deg, #26406f, #14203a); box-shadow: inset 0 1px 0 rgba(255,255,255,.09), inset 0 0 0 1px rgba(255,255,255,.05); }
.poster::before { content: ""; position: absolute; inset: 0; background: radial-gradient(85% 55% at 26% 12%, rgba(255,255,255,.16), transparent 62%); z-index: 0; }
.poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.55)); }
.poster:nth-child(2){ background: linear-gradient(160deg, #2b2f66, #171a3a); }
.poster:nth-child(3){ background: linear-gradient(160deg, #123a52, #0e2233); }
.poster:nth-child(4){ background: linear-gradient(160deg, #3a2b5e, #1d1633); }
.poster:nth-child(5){ background: linear-gradient(160deg, #1f4a4a, #122a2a); }
.poster:nth-child(6){ background: linear-gradient(160deg, #4a2f2f, #2a1616); }
.poster .prog { position: absolute; left: 6px; right: 6px; bottom: 6px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.25); z-index: 1; }
.poster .prog i { display: block; height: 100%; border-radius: 3px; background: var(--azul); }

.device-phone { position: absolute; right: -8px; bottom: -40px; width: 150px; border-radius: 26px; padding: 8px; background: linear-gradient(160deg, #24325a, #0b1120); border: 1px solid var(--line-2); box-shadow: var(--shadow); z-index: 3; }
.device-phone .pscreen { border-radius: 19px; overflow: hidden; background: linear-gradient(180deg, #0a1020, #080d18); border: 1px solid rgba(255,255,255,.05); aspect-ratio: 9/19; padding: 9px; display: flex; flex-direction: column; gap: 8px; }
.device-phone .pnotch { width: 44px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.16); margin: 2px auto 3px; }
.device-phone .phead { display: flex; align-items: center; gap: 6px; }
.device-phone .phead .a { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(140deg,#6ea6ff,#3355cc); }
.device-phone .phead .b { flex: 1; height: 8px; border-radius: 999px; background: rgba(255,255,255,.08); }
.device-phone .phero { height: 74px; border-radius: 11px; background: linear-gradient(120deg, #21407a, #241148); position: relative; overflow: hidden; }
.device-phone .phero::after { content: ""; position: absolute; left: 8px; bottom: 8px; width: 20px; height: 20px; border-radius: 50%; background: #fff; }
.device-phone .pgrid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.device-phone .pgrid span { aspect-ratio: 2/3; border-radius: 6px; background: linear-gradient(160deg, #26406f, #14203a); }
.device-phone .pgrid span:nth-child(3n+2){ background: linear-gradient(160deg, #2b2f66, #171a3a); }
.device-phone .pgrid span:nth-child(3n){ background: linear-gradient(160deg, #123a52, #0e2233); }

/* ---------------- aviso ---------------- */
.aviso { padding: 26px 0; background: var(--bg-blue); }
.aviso::before { display: none; }
.aviso .wrap { display: flex; justify-content: center; }
.aviso span { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13.5px; padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.02); text-align: center; }
.aviso svg { color: var(--azul-2); flex: none; }

/* ---------------- seção emocional ---------------- */
.emo .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.emo h2 { font-size: clamp(30px, 4.6vw, 48px); }
.emo .lead { color: var(--white); font-size: clamp(19px, 2.4vw, 24px); font-weight: 600; line-height: 1.4; margin-top: 22px; }
.emo .lead span { color: var(--muted); font-weight: 400; display: block; }
.emo .sync { margin-top: 22px; display: inline-flex; align-items: center; gap: 9px; color: var(--azul-2); font-weight: 600; font-size: 15px; }
.emo .sync .rot { width: 18px; height: 18px; border: 2px solid var(--azul); border-top-color: transparent; border-radius: 50%; animation: spin 3.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.flow { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.flow .line { position: absolute; top: 8%; bottom: 8%; left: 50%; width: 2px; transform: translateX(-50%); background: linear-gradient(180deg, transparent, var(--azul) 20%, var(--azul-2) 80%, transparent); opacity: .5; z-index: 0; }
.flow .dev { position: relative; z-index: 1; background: linear-gradient(160deg, #141d34, #0b1120); border: 1px solid var(--line-2); box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 16px; width: 84%; transition: transform .25s var(--ease), border-color .25s; }
.flow .dev:hover { transform: translateY(-3px); border-color: var(--azul); }
.flow .dev .scr { width: 62px; height: 40px; border-radius: 7px; flex: none; background: linear-gradient(120deg, #21407a, #241148); position: relative; overflow: hidden; }
.flow .dev.phone .scr { width: 26px; height: 46px; border-radius: 6px; }
.flow .dev.note .scr { width: 66px; height: 40px; border-radius: 6px 6px 2px 2px; }
.flow .dev .scr .pg { position: absolute; left: 6px; right: 6px; bottom: 6px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.25); }
.flow .dev .scr .pg i { display: block; height: 100%; width: 62%; border-radius: 3px; background: var(--azul); }
.flow .dev .txt b { color: var(--white); font-size: 15px; display: block; }
.flow .dev .txt small { color: var(--muted); font-size: 13px; }
.flow .arrow { color: var(--azul-2); font-size: 14px; z-index: 1; opacity: .7; }

/* ---------------- benefícios ---------------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.benefit { padding: 30px 26px; border-radius: var(--radius); border: 1px solid transparent; background: transparent; transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .3s; }
.benefit:hover { transform: translateY(-6px); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); border-color: var(--line-2); box-shadow: var(--shadow-soft); }
.benefit .ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; color: var(--azul-2); background: linear-gradient(160deg, rgba(61,125,255,.18), rgba(61,125,255,.03)); border: 1px solid var(--line-2); margin-bottom: 26px; transition: transform .25s var(--ease); }
.benefit:hover .ic { transform: scale(1.06); }
.benefit h3 { font-size: 22px; margin-bottom: 10px; }
.benefit p { font-size: 16px; color: var(--text); }

/* ---------------- showcase / prova visual ---------------- */
.showcase .frame-wrap { position: relative; max-width: 1080px; margin: 0 auto; }
/* glow azul extremamente sutil atrás do mockup */
.showcase .glow { position: absolute; inset: -12% -8% -16% -8%; background: radial-gradient(56% 60% at 50% 46%, var(--glow), transparent 72%); filter: blur(48px); opacity: .5; z-index: -1; }
.app-frame {
  border-radius: 26px; padding: 15px;
  background: linear-gradient(160deg, #18233e, #0b1120);
  border: 1px solid rgba(150, 175, 230, .15);
  box-shadow: 0 52px 116px -46px rgba(0, 0, 0, .92), 0 10px 34px -18px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.app-frame:hover { transform: translateY(-6px); box-shadow: 0 64px 140px -46px rgba(0, 0, 0, .95), 0 0 100px -34px var(--glow), inset 0 1px 0 rgba(255, 255, 255, .07); }
.app-frame .bar { display: flex; align-items: center; gap: 7px; padding: 5px 8px 15px; }
.app-frame .bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, .14); }
.app-shot { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .06); background: linear-gradient(180deg, #0b1122, #080d18); aspect-ratio: 16/9; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05); }
.app-shot .ui { font-size: 10px; }
.app-shot .ui-side { width: 58px; }
.app-shot .ui-main { padding: 18px; gap: 15px; }
.app-shot .ui-search { height: 26px; width: 200px; }
.app-shot .ui-banner { height: 46%; }
.app-shot .poster { border-radius: 10px; }
/* animação elegante ao entrar na viewport: fade + subida + leve zoom (1.03 -> 1.00) */
.js .frame-wrap.reveal { opacity: 0; transform: translateY(30px) scale(1.03); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.js .frame-wrap.reveal.in { opacity: 1; transform: none; }
.ph-note { text-align: center; color: var(--muted); font-size: 11.5px; letter-spacing: .04em; opacity: .4; margin-top: 26px; }

/* ---------------- download ---------------- */
.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.dl-card { position: relative; overflow: hidden; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 32px; background: linear-gradient(165deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); transition: transform .28s var(--ease), border-color .25s, box-shadow .3s; }
.dl-card::before { content: ""; position: absolute; top: -40%; right: -30%; width: 260px; height: 260px; background: radial-gradient(circle, rgba(61,125,255,.16), transparent 65%); opacity: 0; transition: opacity .3s; }
.dl-card:hover { transform: translateY(-6px); border-color: var(--azul); box-shadow: 0 30px 70px -34px var(--glow); }
.dl-card:hover::before { opacity: 1; }
.dl-card .head { display: flex; align-items: center; gap: 14px; }
.dl-card .ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; color: var(--azul-2); background: rgba(61,125,255,.12); border: 1px solid var(--line-2); flex: none; }
.dl-card h3 { font-size: 22px; }
.dl-card .status { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: #7fe3a0; margin-top: 3px; }
.dl-card .status .d { width: 7px; height: 7px; border-radius: 50%; background: #37d67a; box-shadow: 0 0 0 3px rgba(55,214,122,.18); }
.dl-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }
.dl-tags span { font-size: 12.5px; color: var(--text); border: 1px solid var(--line-2); border-radius: 8px; padding: 6px 12px; background: rgba(255,255,255,.02); }
.dev-note { text-align: center; margin-top: 40px; color: var(--muted); font-size: 15px; }
.dev-note b { color: var(--text); font-weight: 600; }
.dev-chips { display: inline-flex; flex-wrap: wrap; gap: 10px; margin-left: 12px; vertical-align: middle; }
.dev-chips span { border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-size: 13.5px; color: var(--text); }

/* ---------------- como funciona ---------------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.steps .trail { position: absolute; top: 28px; left: 12%; right: 12%; height: 2px; background: rgba(150,175,230,.12); border-radius: 2px; overflow: hidden; }
.steps .trail::after { content: ""; position: absolute; inset: 0; width: 0; background: linear-gradient(90deg, var(--azul), var(--azul-2)); border-radius: 2px; transition: width 1.4s var(--ease); }
.js .steps.in .trail::after { width: 100%; }
.step { text-align: center; position: relative; transition: transform .25s var(--ease); }
.step:hover { transform: translateY(-5px); }
.step .n { width: 58px; height: 58px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 22px; background: radial-gradient(circle at 50% 30%, #1a2748, #0b1120); border: 1.5px solid var(--azul); box-shadow: 0 0 0 7px rgba(61,125,255,.07), 0 14px 30px -14px var(--glow); position: relative; z-index: 1; transition: transform .25s var(--ease), box-shadow .3s; }
.step:hover .n { transform: scale(1.08); box-shadow: 0 0 0 9px rgba(61,125,255,.12), 0 18px 40px -14px var(--glow); }
.step h3 { font-size: 19px; margin-bottom: 9px; }
.step p { font-size: 15px; color: var(--text); max-width: 22em; margin: 0 auto; }

/* ---------------- teste gratuito ---------------- */
.trial { background: var(--bg-blue); }
.trial .wrap { max-width: 1000px; }
.trial-box { position: relative; overflow: hidden; text-align: center; border-radius: 30px; padding: 78px 34px; border: 1px solid rgba(61,125,255,.35); background: radial-gradient(130% 150% at 50% -25%, rgba(61,125,255,.32), rgba(8,14,32,.5) 58%); box-shadow: var(--shadow), 0 0 80px -30px var(--glow); }
.trial-box::before { content: ""; position: absolute; inset: -1px; border-radius: 30px; padding: 1px; background: linear-gradient(120deg, rgba(61,125,255,.5), transparent 40%, transparent 60%, rgba(110,166,255,.4)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.trial-box .badge { display: inline-flex; align-items: center; gap: 8px; background: var(--amarelo); color: #241a00; font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 999px; box-shadow: 0 8px 20px -8px rgba(255,210,61,.5); }
.trial-box h2 { font-size: clamp(30px, 4.8vw, 50px); margin: 22px 0 16px; }
.trial-box p { color: var(--text); max-width: 34em; margin: 0 auto 34px; font-size: 18px; }
.trial-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.trial-cta .sec { color: var(--azul-2); font-weight: 600; font-size: 15px; }
.trial-cta .sec:hover { color: #fff; }
.trial-garantias { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 30px; }
.trial-garantias span { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-size: 14.5px; }
.trial-garantias span::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(55, 214, 122, .16); color: #5cd39a; font-weight: 800; font-size: 12px; }

/* ---------------- FAQ ---------------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; margin-bottom: 14px; background: rgba(255,255,255,.015); transition: border-color .25s, background .25s; overflow: hidden; }
.faq-item:hover { border-color: var(--line-2); background: rgba(255,255,255,.03); }
.faq-item[open] { border-color: rgba(61,125,255,.35); background: rgba(61,125,255,.05); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 26px; font-size: 18px; font-weight: 600; color: var(--white); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--azul-2); font-size: 20px; line-height: 1; transition: transform .3s var(--ease), background .25s, color .2s; }
.faq-item[open] summary .plus { transform: rotate(135deg); background: var(--azul); color: #fff; border-color: var(--azul); }
.faq-item .ans { padding: 0 26px 26px; }
.faq-item[open] .ans { animation: faqIn .34s var(--ease); }
.faq-item .ans p { color: var(--text); font-size: 16px; max-width: 66ch; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------------- parceiros ---------------- */
.parceiros { background: var(--bg-blue); }
.parceiros .wrap { max-width: 920px; }
.parceiros-box { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 34px 38px; border: 1px solid var(--line-2); border-radius: var(--radius); background: linear-gradient(140deg, rgba(61,125,255,.08), rgba(255,255,255,.01)); }
.parceiros-box h3 { font-size: 21px; }
.parceiros-box p { color: var(--muted); font-size: 15px; margin-top: 5px; }

/* ---------------- footer ---------------- */
.ft { border-top: 1px solid var(--line); padding: 72px 0 40px; background: var(--bg-blue); }
.ft::before { display: none; }
.ft-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.ft-brand p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 26em; }
.ft-col h4 { color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: .02em; margin-bottom: 16px; }
.ft-col a { display: block; color: var(--text); font-size: 14px; padding: 6px 0; transition: color .2s; }
.ft-col a:hover { color: var(--azul-2); }
.ft-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; padding-top: 26px; }
.ft-bottom .copy { color: var(--muted); font-size: 13px; }
.ft-bottom .mini { color: var(--muted); font-size: 12.5px; max-width: 560px; }

/* ---------------- responsivo ---------------- */
@media (max-width: 980px) {
  .section { padding: 92px 0; }
  .hero { min-height: auto; padding: 96px 0 110px; }
  .hero .wrap { grid-template-columns: minmax(0, 1fr); gap: 54px; }
  .hero-visual { min-height: 360px; margin-top: 6px; }
  .emo .wrap { grid-template-columns: 1fr; gap: 40px; }
  .benefits { grid-template-columns: 1fr 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 44px 30px; }
  .steps .trail { display: none; }
  .labels { display: none; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .hdr nav, .hdr .entrar { display: none; }
  .hdr .wrap { gap: 10px; }
  .hdr .acoes { gap: 10px; }
  .hdr .marca { font-size: 17px; }
  .menu-btn { display: grid; place-items: center; }
  .hdr nav.aberto { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 2px; margin: 0; padding: 14px 24px 20px; background: rgba(6,10,20,.98); border-bottom: 1px solid var(--line); }
  .hdr nav.aberto a { padding: 11px 0; font-size: 16px; }
  .dl-grid { grid-template-columns: 1fr; }
  .parceiros-box { flex-direction: column; align-items: flex-start; }
  .trial-box { padding: 54px 24px; }
  .section-head { margin-bottom: 48px; }
}
@media (max-width: 480px) {
  .benefits, .steps, .ft-top { grid-template-columns: 1fr; }
  .device-phone { width: 122px; right: 0; bottom: -26px; }
}
