:root{
  --bg:#0b0f19;
  --panel:#0f172a;
  --text:#e5e7eb;
  --muted:#a1a1aa;
  --border:rgba(255,255,255,.10);
  --shadow:0 18px 55px rgba(0,0,0,.45);
  --brand:#7c3aed;
  --brand2:#22c55e;
  --radius:16px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);

  /* imagem + overlay escuro por cima */
  background:
    linear-gradient(rgba(11,15,25,.78), rgba(11,15,25,.78)),
    url("../assets/bg.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* no mobile pode “engasgar” */
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.skip-link{
  position:absolute; left:-999px; top:0; padding:10px 12px;
  background:#fff; color:#000; border-radius:10px; z-index:9999;
}
.skip-link:focus{left:12px; top:12px}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,25,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.3px;
}
.brand-dot{
  width:12px; height:12px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(124,58,237,.12);
}
.nav-links{display:flex; align-items:center; gap:16px}
.nav-links a{
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.nav-links a:hover{color:var(--text); background:rgba(255,255,255,.06)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}
.btn:hover{background: rgba(255,255,255,.10)}
.btn.primary{
  border:none;
  background: linear-gradient(135deg, var(--brand), #5b21b6);
  box-shadow: 0 18px 55px rgba(124,58,237,.20);
}
.btn.primary:hover{filter:brightness(1.05)}
.w-full{width:100%}

.burger{display:none; width:44px; height:44px; border-radius:14px}

.mobile-menu{display:none; padding: 10px 0 16px}
.mobile-menu a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
}
.mobile-menu a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.mobile-menu .w-full{margin:10px 0 0}

.hero{padding:52px 0 24px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.kicker{color:var(--muted); font-weight:600}
h1{
  margin:10px 0 10px;
  font-size: clamp(32px, 4vw, 56px);
  line-height:1.05;
}
.sub{
  margin:0 0 14px;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.6;
}
.pill-row{display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 20px}
.pill{
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:.95rem;
}
.actions{display:flex; gap:10px; flex-wrap:wrap}

.section{padding:24px 0 34px}
.section.alt{background: rgba(255,255,255,.02); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
h2{margin:0 0 8px; font-size: clamp(22px, 2.2vw, 32px)}
.lead{margin:0 0 16px; color:var(--muted); line-height:1.6}

.panel{
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.panel-pad{padding:16px}
.panel-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:14px;
}
.card h3{margin:0 0 6px}
.card p{margin:0; color:var(--muted); line-height:1.6}

.checklist{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}
.checklist li{margin:6px 0}

.steps{display:grid; gap:10px}
.step{
  display:flex; gap:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:14px;
}
.step-num{
  width:34px; height:34px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(124,58,237,.18);
  border:1px solid rgba(124,58,237,.35);
  font-weight:800;
}

.cta-row{
  margin-top:14px;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:14px;
  flex-wrap:wrap;
}
.cta-title{margin:0 0 6px}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.price-card{
  position:relative;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:14px;
}
.price-card.highlight{
  border-color: rgba(124,58,237,.45);
  background: rgba(124,58,237,.12);
}
.badge{
  position:absolute; top:12px; right:12px;
  font-size:.85rem;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(124,58,237,.45);
  background: rgba(124,58,237,.18);
  color: var(--text);
}
.price-head h3{margin:0 0 6px}
.muted{color:var(--muted)}
.small{font-size:.92rem}

.faq{
  display:grid;
  gap:10px;
}
.faq-item{
  width:100%;
  display:flex; justify-content:space-between; align-items:center;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: var(--text);
  cursor:pointer;
  text-align:left;
}
.faq-item:hover{background: rgba(255,255,255,.08)}
.faq-icon{font-weight:900; font-size:1.2rem}
.faq-panel{
  border:1px solid var(--border);
  border-top:none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(0,0,0,.12);
  margin-top:-10px;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form .field{display:grid; gap:6px; margin-bottom:12px}
label{color:var(--muted); font-size:.95rem}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(124,58,237,.55);
  box-shadow: 0 0 0 6px rgba(124,58,237,.12);
}

.final-cta{
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 16px;
  display:flex; justify-content:space-between; align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.footer{
  padding:22px 0 40px;
  border-top:1px solid var(--border);
  color:var(--muted);
}
.footer-row{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.footer-links a{color:var(--text)}
.footer-links span{opacity:.6; margin:0 6px}

.wa-float{
  position:fixed;
  right:16px; bottom:16px;
  width:54px; height:54px;
  border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--brand2), #16a34a);
  box-shadow: 0 18px 55px rgba(34,197,94,.22);
  border: none;
  font-size: 22px;
  z-index:60;
}

@media (max-width: 900px){
  .nav-links{display:none}
  .burger{display:inline-flex}
  .mobile-menu.show{display:block}
  .hero-grid{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
}