:root{
  --bg:#0b0f19;
  --panel:#121a2b;
  --panel2:#0f1628;
  --border:#1f2a44;
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --gold:#d6b25e;
  --green:#25d366;
  --radius:18px;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,Helvetica,sans-serif;
  background: radial-gradient(1200px 700px at 15% 10%, rgba(214,178,94,.18), transparent 55%),
              radial-gradient(900px 600px at 90% 15%, rgba(37,211,102,.14), transparent 55%),
              var(--bg);
  color:var(--text);
}

.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* Top bar */
.top{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,25,.55);
  border-bottom:1px solid rgba(31,42,68,.75);
}
.top__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}

/* BRAND / LOGO */
.brand{
  display:flex;
  gap:12px;
  align-items:center;
}

.brand__logo{
  height:65px;
  width:auto;
  display:block;
  object-fit:contain;
  border-radius:10px;
}

.brand__mark{
  display:none;
  width:38px;height:38px;border-radius:12px;
  place-items:center;
  background: linear-gradient(145deg, rgba(214,178,94,.24), rgba(214,178,94,.05));
  border:1px solid rgba(214,178,94,.35);
  color:var(--gold);
  font-weight:800;
}

.brand__name{font-weight:800;letter-spacing:.4px}
.brand__tag{font-size:12px;color:var(--muted)}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
  transition:.15s transform ease, .15s opacity ease, .15s filter ease;
  user-select:none;
}
.btn:active{transform:scale(.98)}
.btn--primary{
  background: var(--green);
  color:#0b0f19;
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.btn--ghost:hover{opacity:.92}

.btn--whatsapp{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:16px;
  text-decoration:none;
  font-weight:800;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color:#0b0f19;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 18px rgba(37,211,102,.45);
  transition:.15s transform ease, .15s filter ease, .15s opacity ease;
}
.btn--whatsapp:hover{filter:brightness(1.05)}
.btn--whatsapp:active{transform:scale(.97)}

/* Hero */
.hero{padding:34px 0 22px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
@media (max-width:900px){
  .hero__grid{grid-template-columns:1fr}
}
.pill{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(214,178,94,.12);
  border:1px solid rgba(214,178,94,.25);
  color: rgba(255,255,255,.92);
  font-weight:700;
  margin-bottom:12px;
}
h1{font-size:44px;line-height:1.05;margin:0 0 12px}
@media (max-width:520px){h1{font-size:34px}}
.muted{color:var(--muted)}
.small{font-size:13px}

.hero__cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.hero__badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.badge{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:9px 10px;
  border-radius:999px;
  font-size:13px;
}

/* Prova social no hero */
.trustbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.trustbar__item{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:10px 14px;
  border-radius:12px;
  font-size:14px;
  font-weight:700;
  color:var(--text);
}

/* Compatibilidade */
.compat{
  margin-top:18px;
}

.compat__title{
  font-size:14px;
  font-weight:800;
  margin-bottom:8px;
  color:var(--muted);
}

.compat__list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.compat__tag{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  color:var(--text);
}

/* Prova social com números */
.proofNumbers{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.proofNumbers__item{
  min-width:160px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:14px 16px;
  transition:.2s;
}

.proofNumbers__item:hover{
  transform: translateY(-2px);
  border-color: rgba(214,178,94,.35);
}

.proofNumbers__item strong{
  display:block;
  font-size:20px;
  font-weight:800;
  color:var(--gold);
  margin-bottom:4px;
}

.proofNumbers__item span{
  font-size:13px;
  color:var(--muted);
}

/* Card */
.card{
  background: rgba(18,26,43,.78);
  border:1px solid rgba(31,42,68,.85);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card__title{font-weight:800;margin-bottom:10px}
.list{margin:0;padding-left:18px}
.divider{height:1px;background:rgba(31,42,68,.9);margin:14px 0}

.quick{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media (max-width:520px){.quick{grid-template-columns:1fr}}
.quick__btn{
  cursor:pointer;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(15,22,40,.85);
  color: var(--text);
  font-weight:800;
}
.quick__btn:hover{opacity:.92}

/* Sections */
.section{padding:28px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid rgba(31,42,68,.65);
  border-bottom:1px solid rgba(31,42,68,.45);
}
h2{margin:0 0 14px;font-size:24px}

#demo.section{padding:18px 0}

.demoVideo{
  width:100%;
  max-width:720px;
  max-height:420px;
  margin:0 auto;
  display:block;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.1);
  background:#000;
}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
@media (max-width:900px){.steps{grid-template-columns:1fr}}
.step{
  display:flex;gap:12px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding:14px;border-radius:var(--radius);
}
.step__n{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background: rgba(214,178,94,.14);
  border:1px solid rgba(214,178,94,.24);
  color:var(--gold);
  font-weight:900;
}
.step__t{font-weight:900;margin-bottom:4px}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
@media (max-width:900px){.grid3{grid-template-columns:1fr}}
.feature{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding:16px;border-radius:var(--radius);
}
.feature__t{font-weight:900;margin-bottom:6px}

.ctaBox{
  margin-top:16px;
  background: rgba(18,26,43,.78);
  border:1px solid rgba(31,42,68,.85);
  border-radius: var(--radius);
  padding:16px;
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.ctaBox__t{font-weight:900}

/* FAQ */
.faq{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding:14px 14px;
  border-radius: var(--radius);
  margin:10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
}
.faq p{margin:10px 0 0;color:var(--muted)}

/* Footer */
.footer{padding:14px 0}
.footer__brand{font-weight:900;letter-spacing:.6px}
.footer__text{max-width:820px}

/* Floating WA */
.floatWA{
  position:fixed;
  right:16px;
  bottom:16px;
  width:54px;height:54px;
  border-radius:18px;
  display:grid;place-items:center;
  text-decoration:none;
  background: var(--green);
  color:#0b0f19;
  font-size:22px;
  box-shadow: var(--shadow);
}