
:root{
  --bg:#0b0610;
  --surface:#130a1f;
  --card:#ffffff;
  --muted:#6b7280;
  --text:#111827;
  --brand:#4a1f6b;    /* roxo */
  --brand2:#ff8c00;   /* laranja */
  --line:#e5e7eb;
  --soft:#f4f5f7;
  --radius:18px;
  --shadow: 0 10px 30px rgba(17,24,39,.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, #0b0610 0%, #130a1f 35%, #0b0610 100%);
}

a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:10;
  background: rgba(11,6,16,.75);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:14px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:40px;width:auto}
.nav{display:flex;align-items:center;gap:14px;color:#fff}
.nav a{opacity:.9}
.nav a:hover{opacity:1}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px;border-radius:999px;
  background: linear-gradient(90deg, rgba(74,31,107,.85), rgba(255,140,0,.85));
  color:#fff;font-weight:700; box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.pill svg{width:16px;height:16px}

.hero{
  padding:44px 0 26px;
  color:#fff;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}
.kicker{
  display:inline-flex;gap:10px;align-items:center;
  padding:8px 12px;border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  font-weight:700; font-size:13px;
}
.kicker .dot{width:8px;height:8px;border-radius:999px;background:var(--brand2)}
h1{
  margin:14px 0 10px;
  font-size:46px; line-height:1.05;
}
.sub{
  margin:0 0 18px;
  color: rgba(255,255,255,.86);
  font-size:18px; line-height:1.5;
}
.bullets{display:grid;gap:10px;margin:18px 0 0;padding:0;list-style:none}
.bullets li{
  display:flex;gap:10px;align-items:flex-start;
  color: rgba(255,255,255,.90);
}
.bullets .check{
  width:20px;height:20px;border-radius:8px;
  background: rgba(255,140,0,.15);
  border:1px solid rgba(255,140,0,.35);
  display:flex;align-items:center;justify-content:center;
  margin-top:1px;
}
.bullets .check:before{content:"✓";color:var(--brand2);font-weight:900;font-size:14px}

.card{
  background: rgba(255,255,255,.97);
  border:1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.form-card{padding:18px}
.form-title{display:flex;justify-content:space-between;align-items:center;gap:10px}
.form-title h2{margin:0;font-size:18px;color:#111827}
.progress{
  width:120px;height:10px;border-radius:999px;background:#eaeaea;overflow:hidden
}
.progress > div{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  transition: width .25s ease;
}
.small{font-size:12px;color:var(--muted);margin-top:6px}

.form-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.field{display:flex;flex-direction:column;gap:6px}
label{font-size:12px;color:#374151;font-weight:700}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  outline:none;
  background:#fff;
  font-size:14px;
}
textarea{min-height:92px;resize:vertical}
input:focus, select:focus, textarea:focus{border-color:rgba(74,31,107,.55); box-shadow:0 0 0 4px rgba(74,31,107,.10)}
.hint{font-size:12px;color:var(--muted)}
.error{font-size:12px;color:#b91c1c;display:none}
.ok{font-size:12px;color:#047857;display:none}

.row2{grid-column: span 2}
.inline{
  display:flex;align-items:flex-start; gap:10px; margin-top:10px;
  background: var(--soft);
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:12px;
}
.inline input{width:auto; margin-top:2px}
.cta{
  margin-top:12px;
  width:100%;
  border:none;
  padding:14px 16px;
  border-radius:14px;
  color:#fff;
  font-weight:900;
  font-size:15px;
  cursor:pointer;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  opacity:.6;
}
.cta.enabled{opacity:1}
.cta:active{transform: translateY(1px)}

.section{
  padding:34px 0;
}
.section h3{
  color:#fff;
  margin:0 0 12px;
  font-size:24px;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:14px;
}
.tile{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:16px;
  color:#fff;
}
.tile h4{margin:0 0 8px}
.tile p{margin:0;color:rgba(255,255,255,.82);line-height:1.5}
.faq{
  display:grid;gap:10px;
}
.faq details{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:12px 14px;
  color:#fff;
}
.faq summary{cursor:pointer;font-weight:800}
.faq p{margin:10px 0 0;color:rgba(255,255,255,.82);line-height:1.55}

.footer{
  margin-top:22px;
  background: linear-gradient(90deg, rgba(74,31,107,.95), rgba(255,140,0,.92));
  color:#fff;
}
.footer-inner{
  padding:26px 0;
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap:18px;
}
.footer h5{margin:0 0 10px;font-size:14px;letter-spacing:.4px;text-transform:uppercase}
.footer p{margin:0;color:rgba(255,255,255,.92);line-height:1.45}
.seals{display:grid;gap:8px}
.seal{
  display:flex;gap:10px;align-items:flex-start;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.20);
  padding:10px 12px;
  border-radius:14px;
}
.seal b{display:block}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.25);
  padding:12px 0;
  font-size:12px;
  color:rgba(255,255,255,.92);
}
.badge-links{display:flex;gap:10px;flex-wrap:wrap}
.badge-links a{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.22);
}
.badge-links a:hover{background: rgba(0,0,0,.26)}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:38px}
  .grid3{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .form-grid{grid-template-columns:1fr}
  .row2{grid-column: span 1}
  h1{font-size:34px}
  .nav{display:none}
}
