/* ========================================================================
   aqueceai.pro — Landing page
   Tokens do painel (Aqueceai Redesign)
   ===================================================================== */
:root {
  --accent: #d8a85a; --accent-hover: #e6b96e;
  --accent-soft: rgba(216,168,90,0.12); --accent-glow: rgba(216,168,90,0.18);
  --accent-border: rgba(216,168,90,0.25); --accent-contrast: #1a1408;
  --bg: #0a0908; --bg-elev: #0f0e0c; --surface-1: #14130f; --surface-2: #1a1814; --surface-3: #221f1a;
  --border: rgba(255,245,220,0.07); --border-strong: rgba(255,245,220,0.12);
  --text: #f4efe3; --text-dim: #a39c8e; --text-mute: #6f6a60; --text-faint: #4a463f;
  --success: #5dd49b; --success-soft: rgba(93,212,155,0.12);
  --error: #ef5a6f;
  --font-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22,1,0.36,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' on, 'cv11' on;
  overflow-x: hidden;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.03em; }
p { margin: 0; }
em { font-style: italic; color: var(--accent); }
::selection { background: var(--accent-soft); color: var(--accent); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,245,220,0.08); border-radius: 999px; border: 2px solid var(--bg); }

.mono { font-family: var(--font-mono); letter-spacing: -0.01em; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 32px); }

@keyframes pulseDot { 0%,100%{opacity:1;} 50%{opacity:0.35;} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatY { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ===== botões (mesma linguagem do painel) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px; border-radius: 14px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap;
  background: var(--surface-2); color: var(--text); border: 1px solid var(--border-strong);
  transition: all 150ms var(--ease);
}
.btn:hover { background: var(--surface-3); }
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--accent); color: var(--accent-contrast); border-color: transparent;
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; border-radius: 12px; }

.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .idx { color: var(--text-mute); }
.eyebrow .bar { color: var(--text-faint); }

/* ========================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,9,8,0.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16.5px; letter-spacing: -0.02em; }
.nav-logo img { width: 30px; height: 30px; }
.nav-logo .pro { color: var(--accent); }
.nav-links { display: flex; gap: 24px; margin-left: 12px; }
.nav-links a { font-size: 14px; color: var(--text-dim); font-weight: 500; transition: color 140ms; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.nav-entrar { font-size: 14px; color: var(--text-dim); font-weight: 500; padding: 0 6px; }
.nav-entrar:hover { color: var(--text); }
@media (max-width: 720px) {
  .nav-links, .nav-entrar { display: none; }
}

/* ========================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding: clamp(120px, 16vh, 170px) 0 clamp(48px, 7vw, 90px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 72% 40%, rgba(216,168,90,0.09), transparent 65%),
    radial-gradient(ellipse 40% 35% at 18% 20%, rgba(216,168,90,0.05), transparent 60%);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; height: 30px; padding: 0 14px;
  border-radius: 999px; background: var(--surface-1); border: 1px solid var(--border-strong);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 22px; white-space: nowrap;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--success); animation: pulseDot 1.8s infinite; }
.hero h1 {
  font-size: clamp(36px, 5.4vw, 62px); line-height: 1.04; letter-spacing: -0.04em;
  margin-bottom: 20px; text-wrap: balance;
}
.hero-sub {
  font-size: clamp(15.5px, 1.4vw, 18px); color: var(--text-dim); max-width: 470px;
  margin-bottom: 30px; text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-checks { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-checks span {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-mute);
}
.hero-checks svg { color: var(--success); flex-shrink: 0; }

.hero-phone-wrap { position: relative; display: flex; justify-content: center; }
.hero-phone-glow {
  position: absolute; inset: 8% 12%; border-radius: 999px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(216,168,90,0.16), transparent 68%);
  filter: blur(20px);
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 560px; }
  .hero-ctas { justify-content: center; }
  .hero-checks { justify-content: center; }
}

/* ========================================================================
   PHONE — mockup TikTok
   ===================================================================== */
.ph {
  position: relative; width: clamp(250px, 62vw, 305px); aspect-ratio: 9 / 19;
  background: #050505; border-radius: 46px; border: 3px solid #262119;
  box-shadow: 0 40px 90px rgba(0,0,0,0.65), 0 0 0 1px rgba(216,168,90,0.10), inset 0 0 3px rgba(255,255,255,0.06);
  padding: 9px; animation: floatY 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .ph { animation: none; } }
.ph-screen { position: relative; width: 100%; height: 100%; border-radius: 38px; overflow: hidden; background: #000; color: #fff; }
.ph-punch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 74px; height: 20px; border-radius: 999px; background: #000; z-index: 20; border: 1px solid rgba(255,255,255,0.05); }
.ph-status { position: absolute; top: 14px; left: 22px; right: 22px; display: flex; justify-content: space-between; z-index: 19; font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.85); }

/* tiktok ui */
@keyframes tkSlide { from { opacity: 0.25; transform: translateY(5%) scale(0.99); } to { opacity: 1; transform: none; } }
.tk-video { position: absolute; inset: 0; animation: tkSlide 500ms var(--ease); }
.tk-top { position: absolute; top: 40px; left: 0; right: 0; display: flex; justify-content: center; gap: 16px; z-index: 5; }
.tk-top span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55); padding-bottom: 4px; }
.tk-top .on { color: #fff; border-bottom: 2px solid #fff; }
.tk-rail { position: absolute; right: 8px; bottom: 74px; display: flex; flex-direction: column; gap: 13px; align-items: center; z-index: 5; }
.tk-av { position: relative; width: 38px; height: 38px; border-radius: 999px; border: 1.5px solid #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.tk-av .plus { position: absolute; bottom: -7px; left: 50%; transform: translateX(-50%); width: 15px; height: 15px; border-radius: 999px; background: #fe2c55; font-size: 11px; font-weight: 700; display: grid; place-items: center; line-height: 1; }
.tk-btn { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.tk-btn svg { filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5)); }
.tk-count { font-size: 10.5px; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
@keyframes tkPop { 0%{transform:scale(1);} 45%{transform:scale(1.5);} 100%{transform:scale(1);} }
.tk-pop { animation: tkPop 480ms var(--ease); }
.tk-disc { width: 32px; height: 32px; border-radius: 999px; border: 5px solid #191919; animation: spin 6s linear infinite; margin-top: 4px; }
.tk-info { position: absolute; left: 12px; right: 62px; bottom: 20px; z-index: 5; display: flex; flex-direction: column; gap: 4px; text-shadow: 0 1px 5px rgba(0,0,0,0.6); }
.tk-handle { font-weight: 700; font-size: 13.5px; }
.tk-caption { font-size: 11.5px; color: rgba(255,255,255,0.88); line-height: 1.35; }
.tk-music { display: flex; align-items: center; gap: 5px; font-size: 10.5px; color: rgba(255,255,255,0.75); }
@keyframes tkBurst {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(0.4) rotate(-10deg); }
  25% { opacity: 1; transform: translate(-50%,-50%) scale(1.12) rotate(4deg); }
  60% { opacity: 1; transform: translate(-50%,-50%) scale(0.98); }
  100% { opacity: 0; transform: translate(-50%,-58%) scale(1.2); }
}
.tk-burst { position: absolute; left: 50%; top: 44%; z-index: 8; animation: tkBurst 850ms var(--ease) forwards; pointer-events: none; filter: drop-shadow(0 10px 26px rgba(254,44,85,0.45)); }

/* comment sheet */
.tk-sheet {
  position: absolute; left: 0; right: 0; bottom: 0; height: 62%; z-index: 10;
  background: #121212; border-radius: 18px 18px 0 0;
  transform: translateY(102%); transition: transform 460ms var(--ease);
  display: flex; flex-direction: column;
}
.tk-sheet.open { transform: translateY(0); }
.tk-sheet-head { display: flex; align-items: center; justify-content: center; position: relative; padding: 12px 14px 8px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); }
.tk-sheet-x { position: absolute; right: 12px; top: 9px; color: rgba(255,255,255,0.55); }
.tk-comments { flex: 1; overflow: hidden; padding: 4px 14px; display: flex; flex-direction: column; gap: 12px; }
@keyframes cmIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tk-cm { display: flex; gap: 9px; animation: cmIn 400ms var(--ease); }
.tk-cm-av { width: 30px; height: 30px; border-radius: 999px; flex-shrink: 0; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; }
.tk-cm-body { min-width: 0; }
.tk-cm-user { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 600; }
.tk-cm-text { font-size: 12.5px; color: rgba(255,255,255,0.92); line-height: 1.35; }
.tk-cm-new { background: rgba(216,168,90,0.08); margin: -6px -8px; padding: 6px 8px; border-radius: 10px; }
.tk-input {
  margin: 8px 12px 14px; height: 40px; border-radius: 999px; background: #1e1e1e;
  display: flex; align-items: center; gap: 8px; padding: 0 6px 0 14px;
  font-size: 12.5px; color: rgba(255,255,255,0.9);
}
.tk-input .ph-text { color: rgba(255,255,255,0.4); }
.tk-caret { display: inline-block; width: 1.5px; height: 14px; background: #fe2c55; margin-left: 1px; vertical-align: -2px; animation: pulseDot 0.9s steps(2) infinite; }
.tk-send {
  margin-left: auto; width: 30px; height: 30px; border-radius: 999px; flex-shrink: 0;
  display: grid; place-items: center; background: #fe2c55; color: #fff;
  transition: transform 150ms var(--ease), opacity 150ms; opacity: 0.35;
}
.tk-send.ready { opacity: 1; }
.tk-send.sent { transform: scale(0.8); }

/* finger + trail */
.fg {
  position: absolute; z-index: 30; width: 26px; height: 26px; margin: -13px 0 0 -13px;
  border-radius: 999px; pointer-events: none;
  background: radial-gradient(circle at 38% 32%, rgba(255,235,200,0.95), rgba(216,168,90,0.55) 55%, rgba(216,168,90,0) 75%);
  box-shadow: 0 0 18px rgba(216,168,90,0.55), 0 0 46px rgba(216,168,90,0.28);
  transition: left 620ms cubic-bezier(0.3,0.9,0.3,1), top 620ms cubic-bezier(0.3,0.9,0.3,1), opacity 300ms;
}
.fg.fast { transition-duration: 340ms, 340ms, 300ms; }
.fg-t { position: absolute; z-index: 29; border-radius: 999px; pointer-events: none;
  background: radial-gradient(circle, rgba(216,168,90,0.5), rgba(216,168,90,0) 70%); }
.fg-t1 { width: 20px; height: 20px; margin: -10px 0 0 -10px; transition: left 760ms cubic-bezier(0.3,0.9,0.3,1), top 760ms cubic-bezier(0.3,0.9,0.3,1), opacity 300ms; }
.fg-t2 { width: 14px; height: 14px; margin: -7px 0 0 -7px; transition: left 900ms cubic-bezier(0.3,0.9,0.3,1), top 900ms cubic-bezier(0.3,0.9,0.3,1), opacity 300ms; }
.fg-t3 { width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; transition: left 1040ms cubic-bezier(0.3,0.9,0.3,1), top 1040ms cubic-bezier(0.3,0.9,0.3,1), opacity 300ms; }
@keyframes fgTap {
  0% { opacity: 0.9; transform: scale(0.3); }
  100% { opacity: 0; transform: scale(2.1); }
}
.fg-tap {
  position: absolute; z-index: 28; width: 44px; height: 44px; margin: -22px 0 0 -22px;
  border-radius: 999px; border: 2px solid rgba(216,168,90,0.85); pointer-events: none;
  animation: fgTap 500ms var(--ease) forwards;
}

/* legenda embaixo do celular */
.ph-caption {
  position: absolute; left: 50%; bottom: -44px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--text-mute);
}
.ph-caption b { color: var(--text-dim); font-weight: 500; }
.ph-caption .spark { color: var(--accent); display: grid; place-items: center; }

/* ========================================================================
   SEÇÕES
   ===================================================================== */
.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: clamp(27px, 3.6vw, 42px); line-height: 1.1; margin: 14px 0 12px; text-wrap: balance; }
.section-head p { color: var(--text-dim); font-size: clamp(14.5px, 1.2vw, 16.5px); max-width: 520px; }

/* ===== como funciona ===== */
.steps-grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(24px, 4vw, 48px); align-items: stretch; }
.steps-list { display: flex; flex-direction: column; gap: 10px; }
.step-item {
  position: relative; text-align: left; padding: 16px 18px; border-radius: 18px;
  background: transparent; border: 1px solid transparent;
  display: flex; gap: 14px; align-items: flex-start; overflow: hidden;
  transition: all 220ms var(--ease);
}
.step-item:hover { background: var(--surface-1); }
.step-item.on { background: var(--surface-1); border-color: var(--border-strong); }
.step-num {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-mute);
  width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0;
  background: var(--surface-2); border: 1px solid var(--border); transition: all 220ms;
}
.step-item.on .step-num { background: var(--accent); color: var(--accent-contrast); border-color: transparent; font-weight: 600; }
.step-title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 3px; }
.step-desc { font-size: 13.5px; color: var(--text-dim); line-height: 1.45; }
.step-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--border); opacity: 0; }
.step-item.on .step-bar { opacity: 1; }
@keyframes stepFill { from { width: 0%; } to { width: 100%; } }
.step-bar i { display: block; height: 100%; background: var(--accent); animation: stepFill linear forwards; }

.stage {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 380px;
  background:
    radial-gradient(ellipse 60% 50% at 60% 30%, rgba(216,168,90,0.07), transparent 65%),
    var(--surface-1);
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.stage-inner { position: relative; }

@media (max-width: 920px) {
  .steps-grid { grid-template-columns: 1fr; }
  .stage { min-height: 320px; }
}

/* ===== cena: celular + cabo + painel ===== */
.sc { position: relative; width: 620px; height: 380px; }

.sc-phone {
  position: absolute; left: 26px; top: 74px; width: 118px; height: 236px;
  background: #060505; border: 2px solid #2b251c; border-radius: 22px; padding: 5px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.sc-phone-screen { position: relative; width: 100%; height: 100%; border-radius: 17px; overflow: hidden; background: #000; }
.sc-phone-off { position: absolute; inset: 0; display: grid; place-items: center; color: var(--text-faint); transition: opacity 400ms; }
.sc-phone-on { position: absolute; inset: 0; opacity: 0; transition: opacity 500ms; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.sc-phone.connected .sc-phone-off { opacity: 0; }
.sc-phone.connected .sc-phone-on { opacity: 1; }
.sc-usb-icon { color: var(--accent); }
.sc-phone-label { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); text-align: center; }
.sc-phone-port { position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 26px; height: 5px; border-radius: 3px; background: #2b251c; }
@keyframes scPing { 0%,100% { box-shadow: 0 0 0 0 rgba(93,212,155,0.35); } 50% { box-shadow: 0 0 0 7px rgba(93,212,155,0); } }
.sc-phone.connected { border-color: rgba(93,212,155,0.4); animation: scPing 2.4s infinite; }

/* cabo usb */
.sc-cable { position: absolute; left: 0; top: 0; width: 100%; height: 100%; pointer-events: none; }
.sc-cable path { fill: none; stroke: #3a332a; stroke-width: 5; stroke-linecap: round; }
.sc-cable .flow {
  stroke: var(--accent); stroke-width: 2.4; stroke-dasharray: 14 26; opacity: 0;
  filter: drop-shadow(0 0 4px rgba(216,168,90,0.6));
}
@keyframes cableFlow { to { stroke-dashoffset: -400; } }
.sc.flowing .sc-cable .flow { opacity: 1; animation: cableFlow 3.2s linear infinite; }
.sc-plug {
  position: absolute; width: 14px; height: 26px; border-radius: 4px;
  background: linear-gradient(180deg, #4a4238, #2b251c); border: 1px solid #55493a;
  left: 78px; top: 356px; transition: top 900ms var(--ease), left 900ms var(--ease);
}
.sc.plugged .sc-plug { top: 310px; }

/* painel mini */
.sc-panel {
  position: absolute; right: 10px; top: 34px; width: 400px;
  background: var(--bg-elev); border: 1px solid var(--border-strong); border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55); overflow: hidden;
}
.sc-panel-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--border); }
.sc-panel-bar .d { width: 9px; height: 9px; border-radius: 999px; background: var(--surface-3); }
.sc-panel-bar .ttl { margin-left: 8px; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-mute); letter-spacing: 0.06em; }
.sc-live {
  margin-left: auto; display: none; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; color: var(--success);
}
.sc-live .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--success); animation: pulseDot 1.4s infinite; }
.sc.running .sc-live { display: inline-flex; }
.sc-panel-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }

.sc-device {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: var(--surface-1); border: 1px solid var(--border); border-radius: 13px;
  opacity: 0.45; transition: all 400ms var(--ease);
}
.sc.plugged .sc-device { opacity: 1; border-color: rgba(93,212,155,0.3); }
.sc-device-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim); }
.sc-device-name { font-size: 12.5px; font-weight: 600; }
.sc-device-sub { font-family: var(--font-mono); font-size: 9.5px; color: var(--text-mute); }
.sc-device-status { margin-left: auto; font-family: var(--font-mono); font-size: 9.5px; color: var(--text-faint); transition: color 300ms; }
.sc.plugged .sc-device-status { color: var(--success); }

.sc-accs { display: flex; flex-direction: column; gap: 6px; }
@keyframes scAccIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }
.sc-acc {
  display: flex; align-items: center; gap: 9px; padding: 8px 11px;
  background: var(--surface-1); border: 1px solid var(--border); border-radius: 11px;
  opacity: 0; 
}
.sc.detected .sc-acc { animation: scAccIn 450ms var(--ease) forwards; }
.sc.detected .sc-acc:nth-child(2) { animation-delay: 140ms; }
.sc.detected .sc-acc:nth-child(3) { animation-delay: 280ms; }
.sc-acc-num { width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center; flex-shrink: 0; background: var(--accent-soft); border: 1px solid var(--accent-border); color: var(--accent); font-family: var(--font-mono); font-size: 10px; font-weight: 600; }
.sc-acc-handle { font-size: 12px; font-weight: 600; }
.sc-acc-badge {
  margin-left: auto; height: 19px; padding: 0 8px; border-radius: 999px; display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 8.5px; font-weight: 600; letter-spacing: 0.04em;
  background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--text-mute);
  transition: all 300ms;
}
.sc.running .sc-acc-badge { background: var(--success-soft); border-color: rgba(93,212,155,0.25); color: var(--success); }

.sc-start {
  height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: var(--accent-contrast); font-size: 13.5px; font-weight: 700;
  box-shadow: 0 6px 22px var(--accent-glow); transition: all 200ms var(--ease);
  opacity: 0.45; pointer-events: none;
}
.sc.detected .sc-start { opacity: 1; }
.sc.pressing .sc-start { transform: scale(0.96); }
.sc.running .sc-start { background: var(--success-soft); color: var(--success); box-shadow: none; border: 1px solid rgba(93,212,155,0.3); }

.sc-log {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px; min-height: 36px;
  background: var(--surface-1); border: 1px solid var(--border); border-radius: 11px;
  font-size: 11.5px; color: var(--text-dim); overflow: hidden;
  opacity: 0; transition: opacity 300ms;
}
.sc.running .sc-log { opacity: 1; }
.sc-log .spark { color: var(--accent); flex-shrink: 0; display: grid; place-items: center; }
@keyframes logIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.sc-log-msg { animation: logIn 350ms var(--ease); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-log-msg b { color: var(--text); font-weight: 600; }

/* cursor do painel */
.sc-cursor {
  position: absolute; z-index: 40; pointer-events: none;
  transition: left 700ms cubic-bezier(0.3,0.9,0.3,1), top 700ms cubic-bezier(0.3,0.9,0.3,1), opacity 300ms;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5));
}
.sc-click {
  position: absolute; z-index: 39; width: 36px; height: 36px; margin: -18px 0 0 -18px;
  border-radius: 999px; border: 2px solid rgba(216,168,90,0.9); pointer-events: none;
  animation: fgTap 480ms var(--ease) forwards;
}

/* escala da cena em telas menores */
.stage-scale { transform-origin: center; }

/* ========================================================================
   BENEFÍCIOS
   ===================================================================== */
.bene-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.bene {
  padding: 22px 20px; border-radius: 20px; background: var(--surface-1);
  border: 1px solid var(--border); transition: border-color 200ms, transform 300ms var(--ease);
}
.bene:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.bene-ic {
  width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-border); color: var(--accent);
  margin-bottom: 14px;
}
.bene h3 { font-size: 15.5px; margin-bottom: 5px; letter-spacing: -0.01em; }
.bene p { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
@media (max-width: 980px) { .bene-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .bene-grid { grid-template-columns: 1fr; } }

/* ========================================================================
   RECURSOS DO PAINEL
   ===================================================================== */
.mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mod {
  display: flex; gap: 14px; align-items: flex-start; padding: 20px;
  border-radius: 20px; background: var(--surface-1); border: 1px solid var(--border);
  transition: border-color 200ms, transform 300ms var(--ease);
}
.mod:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.mod-ic {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
  background: var(--accent-soft); border: 1px solid var(--accent-border); color: var(--accent);
}
.mod h3 { font-size: 15px; margin-bottom: 4px; letter-spacing: -0.01em; }
.mod p { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
@media (max-width: 980px) { .mods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .mods-grid { grid-template-columns: 1fr; } }

/* ========================================================================
   PLANOS
   ===================================================================== */
.plans-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 18px 28px; flex-wrap: wrap; margin-bottom: clamp(26px, 4vw, 40px);
}
.plans-head .bill-toggle { margin-bottom: 6px; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column; gap: 4px;
  padding: 24px 20px; border-radius: 20px; background: var(--surface-1); border: 1px solid var(--border);
  transition: border-color 200ms, transform 300ms var(--ease);
}
.plan:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.plan.popular { border-color: var(--accent-border); background: linear-gradient(180deg, rgba(216,168,90,0.06), transparent 45%), var(--surface-1); }
.plan-tag {
  position: absolute; top: -11px; left: 20px; height: 22px; padding: 0 10px;
  display: inline-flex; align-items: center; border-radius: 999px;
  background: var(--accent); color: var(--accent-contrast);
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
}
.plan-name { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.plan-price { font-size: 34px; font-weight: 800; letter-spacing: -0.04em; margin: 6px 0 2px; }
.plan-price .cur { font-size: 16px; font-weight: 600; color: var(--text-dim); margin-right: 4px; vertical-align: 12px; letter-spacing: 0; }
.plan-price small { font-size: 13px; font-weight: 500; color: var(--text-mute); letter-spacing: 0; }
.plan-was { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-mute); min-height: 17px; margin: 0 0 14px; }
.plan-was s { color: var(--text-mute); text-decoration-color: rgba(239,90,111,0.7); }
.plan-feats { list-style: none; margin: 0 0 20px; padding: 14px 0 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 9px; }
.plan-feats li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--text-dim); line-height: 1.4; }
.plan-feats svg { color: var(--success); flex-shrink: 0; margin-top: 2.5px; }
.plan-feats li.no { color: var(--text-mute); }
.plan-feats li.no svg { color: var(--error); }
.plan .btn { margin-top: auto; width: 100%; }
/* toggle mensal / trimestral */
.bill-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--surface-1); border: 1px solid var(--border-strong); border-radius: 999px;
}
.bill-opt {
  height: 38px; padding: 0 18px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--text-dim); transition: all 200ms var(--ease);
}
.bill-opt:hover { color: var(--text); }
.bill-opt.on { background: var(--accent); color: var(--accent-contrast); box-shadow: 0 4px 16px var(--accent-glow); }
.bill-save {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 999px;
  background: var(--success-soft); color: var(--success); border: 1px solid rgba(93,212,155,0.25);
}
.bill-opt.on .bill-save { background: rgba(26,20,8,0.16); color: var(--accent-contrast); border-color: transparent; }

/* pagamento + garantia */
.pay-strip {
  margin-top: 26px; padding: 18px 22px; border-radius: 18px;
  background: var(--surface-1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 14px 28px; flex-wrap: wrap;
}
.pay-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); }
.pay-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--text-dim); }
.pay-item svg { color: var(--accent); }
.pay-sep { width: 1px; height: 20px; background: var(--border-strong); }
.pay-item.guarantee svg { color: var(--success); }
@media (max-width: 700px) {
  .pay-strip { flex-direction: column; gap: 12px; }
  .pay-sep { width: 44px; height: 1px; }
}

@media (max-width: 980px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .plans-grid { grid-template-columns: 1fr; } }

/* ========================================================================
   FAQ
   ===================================================================== */
.faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface-1); border: 1px solid var(--border); border-radius: 18px;
  transition: border-color 200ms;
}
.faq-item.open { border-color: var(--border-strong); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 18px 20px; font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
}
.faq-q .faq-ic {
  margin-left: auto; width: 30px; height: 30px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-dim); transition: transform 300ms var(--ease), background 200ms, color 200ms;
}
.faq-item.open .faq-ic { transform: rotate(45deg); background: var(--accent-soft); border-color: var(--accent-border); color: var(--accent); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 360ms var(--ease); }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-a p { padding: 0 20px 18px 20px; font-size: 14px; color: var(--text-dim); line-height: 1.6; max-width: 640px; }

/* ========================================================================
   QUIZ "COMEÇAR GRÁTIS"
   ===================================================================== */
@keyframes qzFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes qzUp { from { opacity: 0; transform: translateY(18px) scale(0.985); } to { opacity: 1; transform: none; } }

.qz-overlay { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: clamp(12px, 3vw, 32px); }
.qz-scrim {
  position: absolute; inset: 0; background: rgba(6,5,4,0.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  animation: qzFade 240ms var(--ease) both;
}
.qz-card {
  position: relative; width: 100%; max-width: 600px; max-height: min(88vh, 780px);
  overflow-y: auto; overscroll-behavior: contain;
  background: var(--bg-elev); border: 1px solid var(--border-strong); border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  animation: qzUp 380ms var(--ease) both;
}
.qz-card.wide { max-width: 720px; }

.qz-top {
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; background: var(--bg-elev);
}
.qz-progress { font-size: 12px; color: var(--text-mute); }
.qz-progress b { color: var(--accent); font-weight: 600; }
.qz-back {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--text-mute); transition: color 140ms;
}
.qz-back:hover { color: var(--text); }
.qz-close {
  width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center;
  color: var(--text-mute); background: var(--surface-1); border: 1px solid var(--border);
  transition: all 140ms;
}
.qz-close:hover { color: var(--text); border-color: var(--border-strong); }
.qz-bar { position: sticky; top: 64px; z-index: 2; height: 2px; background: var(--surface-2); margin: 0 18px; border-radius: 999px; overflow: hidden; }
.qz-bar span { display: block; height: 100%; background: var(--accent); border-radius: 999px; transition: width 320ms var(--ease); }

.qz-body { padding: clamp(22px, 4vw, 34px) clamp(20px, 4.5vw, 40px) clamp(26px, 4vw, 38px); animation: qzUp 320ms var(--ease) both; }
.qz-eyebrow { display: block; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.qz-q { font-size: clamp(21px, 3vw, 27px); letter-spacing: -0.03em; line-height: 1.15; text-wrap: balance; }
.qz-sub { color: var(--text-dim); font-size: 14px; margin-top: 8px; }
.qz-sub b { font-weight: 600; }

.qz-opts { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.qz-opt {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  padding: 15px 18px; border-radius: 16px;
  background: var(--surface-1); border: 1px solid var(--border);
  transition: border-color 140ms, background 140ms, transform 200ms var(--ease);
}
.qz-opt:hover { border-color: var(--accent-border); background: var(--surface-2); transform: translateY(-1px); }
.qz-opt-radio {
  width: 18px; height: 18px; border-radius: 999px; flex-shrink: 0;
  border: 1.5px solid var(--border-strong); transition: all 140ms; position: relative;
}
.qz-opt-text { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.qz-opt-t { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.qz-opt-d { font-size: 12.5px; color: var(--text-mute); }
.qz-opt-arrow { margin-left: auto; flex-shrink: 0; color: var(--text-faint); opacity: 0; transform: translateX(-4px); transition: all 180ms var(--ease); }
.qz-opt:hover .qz-opt-arrow { opacity: 1; transform: none; color: var(--text-dim); }
.qz-opt.sel, .qz-opt.flash { border-color: var(--accent); background: var(--accent-soft); }
.qz-opt.sel .qz-opt-radio, .qz-opt.flash .qz-opt-radio { border-color: var(--accent); }
.qz-opt.sel .qz-opt-radio::after, .qz-opt.flash .qz-opt-radio::after {
  content: ''; position: absolute; inset: 3.5px; border-radius: 999px; background: var(--accent);
}
.qz-pay-ic {
  width: 40px; height: 40px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-border); color: var(--accent);
}

/* resultado */
.qz-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.qz-chip {
  display: inline-flex; align-items: center; height: 28px; padding: 0 12px;
  border-radius: 999px; background: var(--surface-1); border: 1px solid var(--border-strong);
  font-family: var(--font-mono); font-size: 11.5px; color: var(--text-dim);
}
.qz-stat {
  display: flex; align-items: center; gap: 18px; margin-top: 18px;
  padding: 18px 20px; border-radius: 18px;
  background: linear-gradient(120deg, rgba(216,168,90,0.10), transparent 60%), var(--surface-1);
  border: 1px solid var(--accent-border);
}
.qz-stat-n { font-size: clamp(34px, 5vw, 44px); font-weight: 600; color: var(--accent); letter-spacing: -0.04em; line-height: 1; flex-shrink: 0; }
.qz-stat-l { font-size: 13.5px; color: var(--text-dim); max-width: 380px; }
.qz-stat-l b { color: var(--text); font-weight: 600; }

.qz-plans-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin: 26px 0 12px; }
.qz-plans-title { font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }
.qz-plans { display: flex; flex-direction: column; gap: 10px; }
.qz-plan {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  padding: 15px 18px; border-radius: 16px;
  background: var(--surface-1); border: 1px solid var(--border);
  transition: border-color 140ms, background 140ms;
}
.qz-plan:hover { border-color: var(--accent-border); }
.qz-plan.sel { border-color: var(--accent); background: var(--accent-soft); }
.qz-plan .qz-opt-radio { align-self: center; }
.qz-plan.sel .qz-opt-radio { border-color: var(--accent); }
.qz-plan.sel .qz-opt-radio::after { content: ''; position: absolute; inset: 3.5px; border-radius: 999px; background: var(--accent); }
.qz-plan-text { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.qz-plan-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.qz-plan-rec {
  display: inline-flex; align-items: center; height: 20px; padding: 0 8px; border-radius: 999px;
  background: var(--accent); color: var(--accent-contrast);
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.qz-plan-desc { font-size: 12.5px; color: var(--text-dim); }
.qz-plan-pot { font-size: 11px; color: var(--text-mute); }
.qz-plan-price { margin-left: auto; flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 1px; text-align: right; }
.qz-plan-price small { font-size: 10.5px; color: var(--text-mute); }
.qz-plan-price .mono { font-size: 13px; color: var(--text-dim); }
.qz-plan-price .mono b { font-size: 16px; color: var(--text); font-weight: 600; }
.qz-plan-price .qz-plan-tri { color: var(--accent); }

.qz-cta { width: 100%; margin-top: 18px; height: 50px; font-size: 15px; }
.qz-foot { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 16px; text-align: center; }
.qz-foot a { font-size: 13px; color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; transition: color 140ms; }
.qz-foot a:hover { color: var(--text); }
.qz-foot span { font-size: 12px; color: var(--text-mute); }

@media (max-width: 560px) {
  .qz-overlay { align-items: flex-end; padding: 0; }
  .qz-card, .qz-card.wide { max-width: none; max-height: 92vh; border-radius: 22px 22px 0 0; border-bottom: none; }
  .qz-stat { flex-direction: column; align-items: flex-start; gap: 8px; }
  .qz-plan { flex-wrap: wrap; }
  .qz-plan-price { margin-left: 32px; width: 100%; align-items: flex-start; text-align: left; }
}

.cta-final { text-align: center; padding: clamp(60px, 10vw, 120px) 0; position: relative; overflow: hidden; }
.cta-final::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(216,168,90,0.10), transparent 70%);
}
.cta-final h2 { font-size: clamp(28px, 4.2vw, 48px); margin-bottom: 14px; text-wrap: balance; }
.cta-final p { color: var(--text-dim); margin-bottom: 30px; font-size: clamp(14.5px, 1.3vw, 17px); }
.cta-final .btn-primary { height: 54px; padding: 0 32px; font-size: 16px; }

.footer { border-top: 1px solid var(--border); padding: clamp(32px, 5vw, 44px) 0 28px; background: var(--bg-elev); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px;
  padding-bottom: 28px; border-bottom: 1px solid var(--border); margin-bottom: 20px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--text); }
.footer-logo img { width: 24px; height: 24px; }
.footer-brand p { font-size: 13px; color: var(--text-mute); max-width: 260px; text-wrap: pretty; margin: 0; }
.footer-col h4 {
  margin: 0 0 12px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute);
}
.footer-col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; color: var(--text-dim); transition: color 140ms; }
.footer-col a:hover { color: var(--text); }
.footer-legal {
  display: flex; align-items: center; gap: 8px 18px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint);
}
.footer-legal .cnpj { margin-left: auto; }
@media (max-width: 560px) { .footer-legal .cnpj { margin-left: 0; } }
