
/* ─── TOKENS ─────────────────────────────────── */
:root{
  --bg:#06101a;
  --surface:#0b1825;
  --surface2:#0f1f2e;
  --border:rgba(255,255,255,.09);
  --border-gold:rgba(245,179,35,.42);
  --gold:#f5b323;
  --gold2:#d99f15;
  --text:#e8f2fa;
  --muted:#8fa3b5;
  --muted2:#5a6f80;
  --green:#22c55e;
  --max:1160px;
  --hh:76px;
  --r:20px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;background:#000}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:
    radial-gradient(ellipse 700px 500px at 85% -5%,rgba(245,179,35,.17) 0%,transparent 60%),
    radial-gradient(ellipse 500px 400px at -5% 42%,rgba(245,179,35,.09) 0%,transparent 55%),
    #06101a;
  color:var(--text);
  min-height:100vh;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
button{cursor:pointer;font:inherit;border:none;background:none}
/* ─── LAYOUT ─────────────────────────────────── */
.container{width:min(var(--max),calc(100% - 48px));margin:0 auto}
/* ─── HEADER ─────────────────────────────────── */
.header{
  height:var(--hh);position:sticky;top:0;z-index:100;
  background:linear-gradient(180deg,rgba(6,14,24,.97),rgba(6,14,24,.82));
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{height:100%;display:flex;align-items:center;justify-content:space-between;gap:20px}
.brand{font-size:22px;font-weight:900;letter-spacing:-.6px;white-space:nowrap}
.brand b{color:#fff}.brand span{color:var(--gold)}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links a{
  padding:8px 13px;font-size:14px;font-weight:500;color:var(--muted);
  border-radius:8px;transition:color .18s;display:flex;align-items:center;gap:4px;
}
.nav-links a:hover{color:#fff}
.caret{width:10px;height:10px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.nav-ctas{display:flex;align-items:center;gap:10px;flex-shrink:0}
/* ─── BUTTONS ─────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:11px 20px;border-radius:10px;font-size:14px;font-weight:700;
  border:1px solid transparent;transition:transform .16s,box-shadow .16s,border-color .16s,background .16s;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn-ghost{border-color:rgba(255,255,255,.12);color:#dce8f2;background:rgba(255,255,255,.04)}
.btn-ghost:hover{border-color:rgba(255,255,255,.22)}
.btn-gold{
  background:linear-gradient(135deg,#f5b323,#d99f15);
  color:#050c12;box-shadow:0 8px 28px rgba(245,179,35,.22);
}
.btn-gold:hover{box-shadow:0 12px 36px rgba(245,179,35,.34)}
.btn-outline-gold{border-color:rgba(245,179,35,.35);color:var(--text);background:rgba(245,179,35,.05)}
.btn-outline-gold:hover{border-color:rgba(245,179,35,.6);background:rgba(245,179,35,.09)}
/* hamburger */
.burger{
  display:none;width:42px;height:42px;border:1px solid var(--border);
  border-radius:10px;background:rgba(255,255,255,.04);color:#fff;
  align-items:center;justify-content:center;font-size:18px;
}
/* ─── MOBILE DRAWER ─────────────────────────────── */
.drawer{
  display:none;position:fixed;inset:var(--hh) 0 0 0;
  background:rgba(6,14,24,.98);backdrop-filter:blur(28px);
  z-index:99;flex-direction:column;padding:28px 24px;gap:4px;overflow-y:auto;
}
.drawer.open{display:flex}
.drawer a{font-size:17px;font-weight:500;padding:14px 4px;border-bottom:1px solid var(--border);color:var(--text)}
.drawer a:last-of-type{border:none}
.drawer .d-ctas{display:flex;flex-direction:column;gap:10px;margin-top:24px}
.drawer .d-ctas .btn{width:100%;justify-content:center}
/* ─── EYEBROW ─────────────────────────────────── */
.eyebrow{
  display:inline-block;padding:5px 12px;
  border:1px solid rgba(245,179,35,.35);background:rgba(245,179,35,.07);
  border-radius:999px;color:var(--gold);font-size:10.5px;font-weight:800;
  letter-spacing:.1em;text-transform:uppercase;
}
/* ─── HERO ─────────────────────────────────── */
.hero{padding:72px 0 60px}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.hero h1{
  font-size:clamp(36px,4.2vw,60px);line-height:1.04;
  letter-spacing:-.04em;margin:18px 0 18px;color:#fff;font-weight:900;
}
.hero h1 strong{color:var(--gold)}
.hero p.sub{font-size:15px;line-height:1.72;color:var(--muted);font-weight:400}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap;margin:28px 0}
/* trust */
.trust{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:28px}
.trust-item{display:flex;gap:10px;align-items:flex-start}
.trust-icon{
  width:30px;height:30px;flex-shrink:0;
  border:1px solid rgba(245,179,35,.22);border-radius:8px;
  background:rgba(245,179,35,.06);
  display:flex;align-items:center;justify-content:center;
}
.trust-icon svg{width:15px;height:15px;fill:none;stroke:var(--gold);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.trust-item p{font-size:12px;line-height:1.45;color:var(--muted)}
.trust-item p b{color:var(--text);display:block;margin-bottom:2px;font-size:12.5px}
/* ─── DASHBOARD MOCK ─────────────────────────────── */
.dash-col{position:relative}
.dash-card{
  border:1px solid rgba(255,255,255,.10);border-radius:18px;
  background:linear-gradient(148deg,rgba(11,22,34,.98),rgba(6,14,24,.96));
  box-shadow:0 40px 100px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.03);
  overflow:hidden;
}
.dash-topbar{
  height:52px;display:flex;align-items:center;justify-content:space-between;
  padding:0 18px;border-bottom:1px solid var(--border);
}
.dash-brand{font-size:13px;font-weight:900;letter-spacing:-.3px}
.dash-brand span{color:var(--gold)}
.dash-inner{display:flex}
.dash-sidebar{
  width:120px;flex-shrink:0;border-right:1px solid var(--border);
  padding:12px 10px;
}
.dash-nav-item{
  display:flex;align-items:center;gap:7px;
  padding:7px 8px;border-radius:7px;font-size:11.5px;color:var(--muted);
  margin-bottom:3px;
}
.dash-nav-item.active{background:rgba(245,179,35,.09);color:var(--gold)}
.dash-nav-item svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.dash-content{flex:1;padding:18px}
.dash-title{font-size:15px;font-weight:800;margin-bottom:14px}
.kpi-row{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:12px}
.kpi{
  border:1px solid var(--border);border-radius:11px;
  padding:12px 10px;background:rgba(255,255,255,.022);
}
.kpi .lbl{font-size:10px;color:var(--muted);font-weight:500;display:block}
.kpi .val{font-size:22px;font-weight:900;color:#fff;display:block;margin:5px 0 2px;line-height:1}
.kpi .chg{font-size:10px;color:var(--green);display:block}
.rec-list{display:flex;flex-direction:column;gap:4px;margin-top:6px}
.rec-item{font-size:9.5px;color:var(--muted);line-height:1.3}
.rec-item b{color:var(--text);font-size:10px;display:block}
.rbadge{
  display:inline-block;font-size:8.5px;font-weight:800;
  padding:1px 5px;border-radius:4px;margin-top:2px;
}
.rbadge.green{background:rgba(34,197,94,.13);color:var(--green);border:1px solid rgba(34,197,94,.25)}
.rbadge.yellow{background:rgba(245,179,35,.13);color:var(--gold);border:1px solid rgba(245,179,35,.25)}
.rbadge.red{background:rgba(239,68,68,.13);color:#f87171;border:1px solid rgba(239,68,68,.25)}
.chart-box{
  border:1px solid var(--border);border-radius:11px;
  padding:12px;background:rgba(255,255,255,.02);
}
.chart-lbl{font-size:10px;color:var(--muted);margin-bottom:8px}
.chart-area{height:100px}
.chart-area svg{width:100%;height:100%}
/* phone */
.phone-wrap{
  position:absolute;right:-10px;bottom:-20px;
  width:210px;
  border:6px solid #0a0a0a;border-radius:34px;
  background:#071020;
  box-shadow:0 30px 80px rgba(0,0,0,.75);
  padding:14px;transform:rotate(.9deg);z-index:5;
}
.phone-notch{width:64px;height:15px;background:#070707;border-radius:0 0 11px 11px;margin:-14px auto 10px}
.phone-brand{font-size:10px;font-weight:900;letter-spacing:-.2px}
.phone-brand span{color:var(--gold)}
.phone-greet{font-size:14px;font-weight:900;line-height:1.1;margin:10px 0 3px}
.phone-sub{font-size:9px;color:var(--muted)}
.phone-grid{display:grid;grid-template-columns:1fr 1fr;gap:6px;margin-top:10px}
.phone-tile{
  border:1px solid var(--border);border-radius:10px;
  padding:9px 6px;text-align:center;background:rgba(255,255,255,.024);
}
.phone-tile .pt-icon{margin-bottom:5px;display:flex;justify-content:center}
.phone-tile .pt-icon svg{width:18px;height:18px;fill:none;stroke:var(--gold);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.phone-tile b{display:block;font-size:8.5px;font-weight:800}
.phone-tile small{display:block;color:var(--muted2);font-size:7.5px;margin-top:2px}
.phone-rec-lbl{font-size:8px;color:var(--muted2);text-transform:uppercase;letter-spacing:.08em;font-weight:700;margin-top:9px;padding-bottom:4px}
.phone-rec-item{
  display:flex;justify-content:space-between;align-items:center;
  border:1px solid var(--border);border-radius:8px;padding:6px 8px;
  background:rgba(255,255,255,.02);margin-top:4px;
}
.phone-rec-item b{font-size:9px;display:block;color:#fff}
.phone-rec-item small{font-size:8px;color:var(--muted2)}
/* ─── STATS STRIP ─────────────────────────────── */
.stats{padding:0 0 64px}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  border:1px solid var(--border);border-radius:var(--r);
  background:linear-gradient(148deg,rgba(11,22,34,.88),rgba(6,14,24,.72));
  overflow:hidden;
}
.stat-item{padding:28px 20px;text-align:center;border-right:1px solid var(--border)}
.stat-item:last-child{border-right:none}
.stat-item .si-icon{display:flex;justify-content:center;margin-bottom:10px}
.stat-item .si-icon svg{width:32px;height:32px;fill:none;stroke:var(--gold);stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.stat-item b{display:block;font-size:30px;font-weight:900;color:var(--gold);letter-spacing:-.04em}
.stat-item span{display:block;font-size:13px;color:var(--muted);line-height:1.5;margin-top:4px}
/* ─── SECTION BASE ─────────────────────────────── */
.section{padding:72px 0}
.sec-head{margin-bottom:32px}
.sec-head h2{font-size:clamp(26px,3.4vw,42px);font-weight:800;line-height:1.07;letter-spacing:-.035em;margin:10px 0;color:#fff}
.sec-head p{font-size:15px;color:var(--muted);line-height:1.7;max-width:720px}
/* ─── FEATURES GRID ─────────────────────────────── */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.feat-card{
  border:1px solid var(--border);border-radius:16px;
  background:linear-gradient(148deg,rgba(13,24,36,.88),rgba(7,16,26,.68));
  padding:22px;position:relative;overflow:hidden;
  transition:border-color .22s,transform .22s;
}
.feat-card::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(circle at 90% 0,rgba(245,179,35,.09),transparent 35%);
  opacity:0;transition:opacity .22s;
}
.feat-card:hover{transform:translateY(-4px);border-color:rgba(245,179,35,.3)}
.feat-card:hover::before{opacity:1}
.feat-card.wide{grid-column:1/-1;display:flex;align-items:center;justify-content:space-between;gap:20px}
.feat-icon{
  width:46px;height:46px;border:1px solid rgba(245,179,35,.3);border-radius:12px;
  background:rgba(245,179,35,.07);display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;flex-shrink:0;
}
.feat-icon svg{width:22px;height:22px;fill:none;stroke:var(--gold);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.feat-card h3{font-size:16px;font-weight:700;color:#fff;margin-bottom:8px}
.feat-card p{font-size:13.5px;color:var(--muted);line-height:1.62}
.feat-arrow{
  width:34px;height:34px;border:1px solid rgba(245,179,35,.3);border-radius:8px;
  background:rgba(245,179,35,.06);display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.feat-arrow svg{width:16px;height:16px;fill:none;stroke:var(--gold);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
/* ─── BENEFIT BAND ─────────────────────────────── */
.benefit{
  border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  background:linear-gradient(96deg,rgba(8,18,28,.96),rgba(10,22,34,.6));
  padding:72px 0;
}
.benefit-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.benefit h2{font-size:clamp(26px,3.8vw,46px);font-weight:900;line-height:1.06;letter-spacing:-.03em;margin:16px 0}
.check-list{list-style:none;display:flex;flex-direction:column;gap:12px;margin-top:20px}
.check-list li{display:flex;gap:10px;font-size:14.5px;color:var(--muted);align-items:flex-start;line-height:1.5}
.check-list li .ci{
  width:18px;height:18px;flex-shrink:0;
  border:1px solid rgba(245,179,35,.35);border-radius:50%;
  display:flex;align-items:center;justify-content:center;margin-top:1px;
}
.check-list li .ci svg{width:10px;height:10px;fill:none;stroke:var(--gold);stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
/* moto visual */
.moto-visual{
  border:1px solid rgba(245,179,35,.14);border-radius:22px;
  background:
    radial-gradient(ellipse 60% 50% at 60% 20%,rgba(245,179,35,.22),transparent 55%),
    linear-gradient(148deg,#0c1c28,#04090f);
  position:relative;overflow:hidden;min-height:290px;
  box-shadow:0 40px 100px rgba(0,0,0,.5);
}
.motos-row{
  position:absolute;inset:30px 20px 90px;
  display:flex;align-items:flex-end;justify-content:center;gap:10px;
}
.moto-unit{
  flex:1;max-width:110px;height:76px;border-radius:12px;
  background:linear-gradient(152deg,rgba(245,179,35,.04),#0c1620);
  border:1px solid rgba(255,255,255,.07);position:relative;
}
.moto-unit::before,.moto-unit::after{
  content:'';position:absolute;bottom:-18px;
  width:28px;height:28px;border:4px solid #131f2c;border-radius:50%;background:#030810;
}
.moto-unit::before{left:8px}
.moto-unit::after{right:8px}
.moto-light{
  position:absolute;top:10px;right:12px;
  width:12px;height:12px;border-radius:50%;
  background:var(--gold);box-shadow:0 0 18px rgba(245,179,35,.9);
}
.saving-card{
  position:absolute;left:24px;right:24px;bottom:20px;
  border:1px solid rgba(245,179,35,.45);border-radius:14px;
  background:rgba(6,14,22,.88);backdrop-filter:blur(16px);
  padding:14px 18px;display:flex;align-items:center;gap:14px;
}
.saving-card small{font-size:12px;color:var(--muted);display:block}
.saving-card b{font-size:30px;font-weight:900;color:var(--gold);letter-spacing:-.04em;display:block}
.saving-bars{display:flex;align-items:flex-end;gap:3px;height:32px;margin-left:auto}
.saving-bars span{width:7px;border-radius:2px 2px 0 0;background:var(--gold)}
/* ─── STEPS ─────────────────────────────────── */
.steps-row{display:grid;grid-template-columns:repeat(5,1fr);gap:0;margin-top:28px;position:relative}
.step{text-align:left;position:relative;padding-right:16px}
.step-num{
  width:42px;height:42px;border:2px solid var(--gold);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:17px;font-weight:900;color:var(--gold);flex-shrink:0;
  margin-bottom:14px;
}
.step-arrow{
  position:absolute;top:14px;right:-4px;
  color:var(--gold);font-size:18px;z-index:1;
  display:flex;align-items:center;
}
.step-arrow svg{width:18px;height:18px;fill:none;stroke:var(--gold);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.step:last-child .step-arrow{display:none}
.step h3{font-size:14px;font-weight:700;color:#fff;margin-bottom:6px}
.step p{font-size:12.5px;color:var(--muted);line-height:1.6}
/* ─── CTA BOX ─────────────────────────────────── */
.cta-box{
  border:1px solid var(--border-gold);border-radius:20px;
  background:linear-gradient(148deg,rgba(15,28,42,.96),rgba(8,18,28,.92));
  padding:32px 40px;
  display:flex;align-items:center;justify-content:space-between;gap:28px;
  box-shadow:0 0 80px rgba(245,179,35,.06);
}
.cta-box h2{font-size:26px;font-weight:800;color:#fff;margin-bottom:8px;letter-spacing:-.02em}
.cta-box p{font-size:14px;color:var(--muted);line-height:1.65}
/* ─── FOOTER ─────────────────────────────────── */
.footer{border-top:1px solid var(--border);padding:52px 0 26px;background:rgba(3,7,14,.6)}
.footer-grid{display:grid;grid-template-columns:1.7fr repeat(4,1fr);gap:36px}
.footer-brand{font-size:20px;font-weight:900;letter-spacing:-.5px;margin-bottom:12px;display:block}
.footer-brand span{color:var(--gold)}
.footer p.desc{font-size:13px;color:var(--muted);line-height:1.75}
.social{display:flex;gap:8px;margin-top:18px}
.social a{
  width:32px;height:32px;border:1px solid var(--border);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:var(--muted);transition:border-color .18s,color .18s;
}
.social a:hover{border-color:rgba(245,179,35,.4);color:var(--gold)}
.social a svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.footer-col h4{font-size:13px;font-weight:700;color:#fff;margin-bottom:14px}
.footer-col a{display:block;font-size:13px;color:var(--muted);margin-bottom:9px;transition:color .16s}
.footer-col a:hover{color:var(--text)}
.footer-contact-item{display:flex;gap:8px;align-items:flex-start;font-size:13px;color:var(--muted);margin-bottom:8px}
.footer-contact-item svg{width:14px;height:14px;flex-shrink:0;fill:none;stroke:var(--muted);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;margin-top:1px}
.footer-bottom{
  display:flex;justify-content:space-between;gap:16px;
  border-top:1px solid var(--border);margin-top:36px;padding-top:20px;
  font-size:12px;color:var(--muted2);
}
.footer-bottom a{color:var(--muted2);font-size:12px;transition:color .16s}
.footer-bottom a:hover{color:var(--muted)}
.footer-bottom-links{display:flex;gap:24px}
/* ─── REVEAL ─────────────────────────────────── */
.rv{opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease}
.rv.in{opacity:1;transform:translateY(0)}
.rv.d1{transition-delay:.08s}.rv.d2{transition-delay:.16s}.rv.d3{transition-delay:.24s}.rv.d4{transition-delay:.32s}

/* ─── RESPONSIVE ─────────────────────────────── */
@media(max-width:1020px){
  .nav-links,.nav-ctas{display:none}
  .burger{display:flex}
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .phone-wrap{position:relative;right:auto;bottom:auto;transform:none;margin:20px auto 0;width:100%;max-width:280px;display:block}
  .trust{grid-template-columns:1fr 1fr}
  .stats-grid{grid-template-columns:1fr 1fr}
  .stat-item{border-right:none;border-bottom:1px solid var(--border)}
  .stat-item:nth-child(odd){border-right:1px solid var(--border)}
  .stat-item:last-child{border-bottom:none}
  .stat-item:nth-last-child(2):nth-child(odd){border-bottom:none}
  .feat-grid{grid-template-columns:1fr 1fr}
  .feat-card.wide{grid-column:auto;flex-direction:column;align-items:flex-start}
  .benefit-grid{grid-template-columns:1fr}
  .steps-row{grid-template-columns:1fr 1fr;gap:20px}
  .step-arrow{display:none}
  .cta-box{flex-direction:column;align-items:flex-start;gap:20px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}
}
@media(max-width:640px){
  :root{--hh:66px}
  .container{width:calc(100% - 32px)}
  .hero{padding:48px 0 40px}
  .hero h1{font-size:34px}
  .hero p.sub{font-size:14px}
  .hero-btns{flex-direction:column}
  .hero-btns .btn{width:100%;justify-content:center}
  .trust{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:1fr 1fr;border-radius:14px}
  .stat-item{padding:20px 14px}
  .stat-item b{font-size:24px}
  .section{padding:52px 0}
  .feat-grid{grid-template-columns:1fr}
  .feat-card.wide{flex-direction:column;align-items:flex-start}
  .steps-row{grid-template-columns:1fr}
  .benefit{padding:52px 0}
  .cta-box{padding:22px 20px}
  .cta-box h2{font-size:20px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:12px}
  .footer-bottom-links{gap:16px}
  .kpi-row{grid-template-columns:1fr 1fr}
  .kpi.c3{display:none}
  .dash-sidebar{display:none}
  .dash-inner{display:block}
  .dash-content{padding:14px}
}


/* ===== MULTI PAGE + FUNCTIONALIDADES ===== */
.nav-links a.active{color:#fff;background:rgba(255,255,255,.05)}
.page-hero{padding:72px 0 46px}.page-hero h1{font-size:clamp(36px,5vw,68px);line-height:1.02;letter-spacing:-.055em;margin:18px 0;color:#fff;font-weight:900;max-width:980px}.page-hero h1 strong{color:var(--gold)}.page-hero p{font-size:16px;line-height:1.75;color:var(--muted);max-width:760px}.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.x-card{border:1px solid var(--border);border-radius:18px;background:linear-gradient(148deg,rgba(13,24,36,.88),rgba(7,16,26,.68));padding:24px;position:relative;overflow:hidden;transition:border-color .22s,transform .22s}.x-card:hover{transform:translateY(-3px);border-color:rgba(245,179,35,.28)}.x-card h3{font-size:18px;margin-bottom:8px;color:#fff}.x-card p,.x-card li{font-size:14px;line-height:1.65;color:var(--muted)}.x-icon{width:48px;height:48px;border:1px solid rgba(245,179,35,.3);border-radius:14px;background:rgba(245,179,35,.07);display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--gold);font-size:24px;font-weight:900}.x-icon svg{width:24px;height:24px;fill:none;stroke:var(--gold);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.form-panel{border:1px solid var(--border);border-radius:22px;background:linear-gradient(148deg,rgba(13,24,36,.92),rgba(7,16,26,.76));padding:28px;box-shadow:0 28px 80px rgba(0,0,0,.25)}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}.field{margin-bottom:14px}.field label{display:block;margin-bottom:8px;color:#fff;font-size:13px;font-weight:800}.input,.select,.textarea{width:100%;background:#081522;border:1px solid rgba(255,255,255,.12);color:#fff;border-radius:12px;padding:13px 14px;outline:none;transition:border-color .18s,box-shadow .18s}.textarea{min-height:126px;resize:vertical}.input:focus,.select:focus,.textarea:focus{border-color:rgba(245,179,35,.7);box-shadow:0 0 0 3px rgba(245,179,35,.1)}.form-note{font-size:12px;color:var(--muted2);line-height:1.5;margin-top:10px}.error-msg{display:none;color:#fecaca;font-size:12px;margin-top:6px}.field.error .input,.field.error .select,.field.error .textarea{border-color:rgba(239,68,68,.65)}.field.error .error-msg{display:block}.price-toggle{display:inline-flex;border:1px solid var(--border);background:rgba(255,255,255,.04);border-radius:14px;padding:4px;margin-top:22px}.price-toggle button{padding:9px 16px;border-radius:10px;color:var(--muted);font-weight:800}.price-toggle button.active{background:var(--gold);color:#06101a}.plan{display:flex;flex-direction:column;min-height:470px}.plan.featured{border-color:rgba(245,179,35,.55);box-shadow:0 0 70px rgba(245,179,35,.07)}.plan .tag{position:absolute;right:18px;top:18px;font-size:10px;font-weight:900;color:#06101a;background:var(--gold);padding:5px 9px;border-radius:999px}.price{font-size:38px;font-weight:900;color:#fff;margin:18px 0 8px}.price span{font-size:14px;color:var(--muted);font-weight:600}.plan ul{list-style:none;margin:20px 0;display:flex;flex-direction:column;gap:10px}.plan li::before{content:'✓';color:var(--gold);margin-right:8px;font-weight:900}.plan .btn{margin-top:auto}.faq{border:1px solid var(--border);border-radius:18px;overflow:hidden}.faq-item+.faq-item{border-top:1px solid var(--border)}.faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;padding:18px 20px;text-align:left;font-weight:900;background:rgba(255,255,255,.02);color:#fff}.faq-a{display:none;padding:0 20px 18px;color:var(--muted);font-size:14px;line-height:1.65}.faq-item.open .faq-a{display:block}.faq-item.open .faq-q span{color:var(--gold)}.tabs{display:flex;gap:8px;flex-wrap:wrap;margin:20px 0 24px}.tab-btn{padding:10px 14px;border-radius:999px;border:1px solid var(--border);background:rgba(255,255,255,.03);color:var(--muted);font-weight:800}.tab-btn.active{background:rgba(245,179,35,.12);color:var(--gold);border-color:rgba(245,179,35,.38)}.tab-panel{display:none}.tab-panel.active{display:block}.modal{position:fixed;inset:0;background:rgba(0,0,0,.72);display:none;align-items:center;justify-content:center;padding:22px;z-index:200}.modal.open{display:flex}.modal-card{max-width:520px;width:100%;border:1px solid rgba(245,179,35,.45);border-radius:22px;background:#081522;padding:28px;box-shadow:0 30px 100px rgba(0,0,0,.65)}.modal-card h3{font-size:22px;margin-bottom:10px}.modal-card p{color:var(--muted);line-height:1.65}.modal-actions{display:flex;justify-content:flex-end;margin-top:22px}.muted{color:var(--muted)}.gold{color:var(--gold)}.divider{height:1px;background:var(--border);margin:32px 0}.skip-link{position:absolute;left:-999px}.skip-link:focus{left:16px;top:16px;z-index:9999;background:var(--gold);color:#08111b;padding:12px 16px;border-radius:10px;font-weight:800}
@media(max-width:1020px){.grid-2{grid-template-columns:1fr}.grid-3,.grid-4{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.page-hero h1{font-size:34px}.page-hero p{font-size:14px}.grid-3,.grid-4{grid-template-columns:1fr}.form-row{grid-template-columns:1fr}.page-hero{padding:48px 0 30px}}


/* ===== AJUSTE MOBILE + COPY DE VENDA ===== */
.sales-benefit .sales-lead{
  color:var(--muted);
  font-size:15px;
  line-height:1.72;
  max-width:620px;
  margin:0 0 18px;
}
.persuasive-list li strong{color:#fff;font-weight:800}
.sales-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:22px;
}
.sales-mini-grid div{
  border:1px solid rgba(245,179,35,.18);
  background:linear-gradient(148deg,rgba(245,179,35,.075),rgba(255,255,255,.025));
  border-radius:14px;
  padding:14px 13px;
}
.sales-mini-grid b{
  display:block;
  color:var(--gold);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:6px;
}
.sales-mini-grid span{
  display:block;
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
}
.sales-proof-tags{
  position:absolute;
  left:20px;
  right:20px;
  top:18px;
  z-index:4;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.sales-proof-tags span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border:1px solid rgba(245,179,35,.28);
  background:rgba(6,14,22,.72);
  color:var(--gold);
  font-size:11px;
  font-weight:800;
  border-radius:999px;
  backdrop-filter:blur(14px);
}
.sales-proof-tags span::before{
  content:'✓';
  width:16px;
  height:16px;
  border-radius:50%;
  background:rgba(245,179,35,.13);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
}
.saving-note{
  position:absolute;
  left:24px;
  right:24px;
  bottom:6px;
  color:rgba(143,163,181,.78);
  font-size:10px;
  line-height:1.35;
}

/* Força o bloco selecionado a aparecer bem no mobile */
@media(max-width:1020px){
  .benefit-grid{gap:28px}
  .sales-mini-grid{grid-template-columns:1fr 1fr 1fr}
  .moto-visual{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    width:100%;
    min-height:330px;
    margin-top:8px;
  }
}

@media(max-width:640px){
  .sales-benefit .eyebrow{font-size:9.5px}
  .sales-benefit h2{
    font-size:30px;
    line-height:1.09;
    letter-spacing:-.045em;
  }
  .sales-benefit .sales-lead{
    font-size:14px;
    line-height:1.68;
  }
  .persuasive-list li{
    font-size:13.5px;
    line-height:1.55;
  }
  .sales-mini-grid{
    grid-template-columns:1fr;
    gap:8px;
    margin-top:18px;
  }
  .moto-visual{
    min-height:360px;
    border-radius:18px;
    overflow:hidden;
    margin-top:22px;
    background:
      radial-gradient(ellipse 80% 44% at 50% 16%,rgba(245,179,35,.20),transparent 62%),
      radial-gradient(ellipse 70% 48% at 105% 60%,rgba(245,179,35,.11),transparent 55%),
      linear-gradient(148deg,#0c1c28,#04090f);
  }
  .sales-proof-tags{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    padding:16px 14px 0;
    z-index:5;
  }
  .sales-proof-tags span{
    font-size:10px;
    padding:6px 8px;
  }
  .motos-row{
    position:relative;
    inset:auto;
    height:116px;
    padding:28px 12px 0;
    gap:7px;
    align-items:flex-end;
  }
  .moto-unit{
    min-width:66px;
    height:70px;
    transform:skewX(-7deg);
  }
  .moto-unit::before,.moto-unit::after{
    width:24px;
    height:24px;
    bottom:-15px;
    border-width:3px;
  }
  .saving-card{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    margin:42px 14px 0;
    padding:15px 14px;
    align-items:center;
  }
  .saving-card b{font-size:34px}
  .saving-card small{font-size:11px}
  .saving-bars{height:42px}
  .saving-bars span{width:6px}
  .saving-note{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    margin:10px 16px 14px;
    font-size:9.5px;
  }
}


/* ===== CASO DE RECUPERAÇÃO NFC / ANTI-ADULTERAÇÃO ===== */
.recovery-case{
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(245,179,35,.12);
  border-bottom:1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(ellipse 700px 380px at 86% 18%,rgba(245,179,35,.13),transparent 62%),
    radial-gradient(ellipse 520px 320px at 12% 70%,rgba(34,197,94,.06),transparent 58%),
    linear-gradient(180deg,rgba(8,18,28,.72),rgba(5,12,20,.94));
}
.case-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:46px;
  align-items:center;
}
.case-copy h2{
  font-size:clamp(30px,4vw,50px);
  line-height:1.05;
  letter-spacing:-.045em;
  color:#fff;
  margin:16px 0 16px;
  font-weight:900;
}
.case-copy p{
  color:var(--muted);
  font-size:15px;
  line-height:1.72;
  margin-bottom:12px;
}
.case-warning{
  border:1px solid rgba(245,179,35,.27);
  background:linear-gradient(148deg,rgba(245,179,35,.095),rgba(255,255,255,.025));
  border-radius:16px;
  padding:16px 18px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
  margin:20px 0 22px;
}
.case-warning strong{
  display:block;
  color:var(--gold);
  font-weight:900;
  margin-bottom:6px;
}
.case-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.case-panel{
  border:1px solid rgba(245,179,35,.24);
  background:
    radial-gradient(circle at 85% 2%,rgba(245,179,35,.17),transparent 35%),
    linear-gradient(148deg,rgba(13,24,36,.96),rgba(4,10,18,.98));
  border-radius:24px;
  padding:22px;
  position:relative;
  box-shadow:0 38px 100px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.05);
}
.case-badge{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(245,179,35,.32);
  background:rgba(245,179,35,.08);
  color:var(--gold);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:16px;
}
.case-card.main{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  border-radius:18px;
  padding:18px;
  margin-bottom:18px;
}
.case-label{
  color:var(--muted2);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.09em;
}
.case-card h3{
  color:#fff;
  font-size:26px;
  font-weight:900;
  letter-spacing:-.04em;
  margin:8px 0 8px;
}
.case-card p{
  color:var(--muted);
  font-size:13.5px;
  line-height:1.62;
}
.case-flow{
  display:grid;
  grid-template-columns:1fr 26px 1fr 26px 1fr;
  align-items:stretch;
  gap:8px;
  margin-bottom:18px;
}
.case-flow div{
  min-height:112px;
  border:1px solid rgba(245,179,35,.18);
  background:rgba(245,179,35,.055);
  border-radius:16px;
  padding:14px 12px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.case-flow b{
  width:30px;
  height:30px;
  border-radius:50%;
  border:1px solid var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  margin-bottom:10px;
}
.case-flow span{
  color:#dce8f2;
  font-size:12.5px;
  line-height:1.45;
  font-weight:700;
}
.case-flow i{
  position:relative;
  align-self:center;
  height:1px;
  background:rgba(245,179,35,.55);
}
.case-flow i::after{
  content:'';
  position:absolute;
  right:-1px;
  top:-4px;
  width:8px;
  height:8px;
  border-top:1px solid rgba(245,179,35,.75);
  border-right:1px solid rgba(245,179,35,.75);
  transform:rotate(45deg);
}
.case-result{
  border:1px solid rgba(34,197,94,.28);
  background:linear-gradient(148deg,rgba(34,197,94,.10),rgba(245,179,35,.06));
  border-radius:18px;
  padding:18px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
}
.case-result small{
  color:var(--muted);
  display:block;
  font-size:12px;
  margin-bottom:5px;
}
.case-result strong{
  color:#fff;
  display:block;
  font-size:20px;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:6px;
}
.case-result span{
  color:var(--muted);
  font-size:12.5px;
  line-height:1.45;
}
.nfc-stamp{
  min-width:96px;
  height:96px;
  border-radius:50%;
  border:2px solid rgba(34,197,94,.5);
  color:#22c55e;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  font-weight:900;
  text-align:center;
  box-shadow:0 0 32px rgba(34,197,94,.11);
  background:rgba(34,197,94,.06);
}
.nfc-stamp em{
  font-style:normal;
  font-size:10px;
  letter-spacing:.1em;
}

/* Cards extras anti-adulteração nas páginas internas */
.anti-card{
  border-color:rgba(245,179,35,.32)!important;
  background:
    radial-gradient(circle at 88% 4%,rgba(245,179,35,.14),transparent 38%),
    linear-gradient(148deg,rgba(13,24,36,.95),rgba(7,16,26,.82))!important;
}
.anti-card h3::after{
  content:'';
  display:block;
  width:42px;
  height:2px;
  background:var(--gold);
  margin-top:10px;
  border-radius:999px;
}

@media(max-width:1020px){
  .case-grid{grid-template-columns:1fr;gap:28px}
}
@media(max-width:640px){
  .case-copy h2{font-size:30px}
  .case-copy p{font-size:14px}
  .case-actions{flex-direction:column}
  .case-actions .btn{width:100%}
  .case-panel{padding:16px;border-radius:20px}
  .case-flow{
    grid-template-columns:1fr;
    gap:10px;
  }
  .case-flow div{min-height:auto}
  .case-flow i{height:20px;width:1px;justify-self:center;background:rgba(245,179,35,.55)}
  .case-flow i::after{
    right:-4px;
    top:12px;
    transform:rotate(135deg);
  }
  .case-result{
    flex-direction:column;
    align-items:flex-start;
  }
  .nfc-stamp{
    width:90px;
    height:90px;
    min-width:90px;
  }
}
