/* ================== INÍCIO STYLE ================== */
:root{
  --bg:#0b1220;
  --card:#111a2b;
  --alt:#0e1729;
  --text:#e8eefc;
  --muted:#b7c3e6;
  --brand:#4da3ff;
  --line:rgba(255,255,255,.10);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,Segoe UI,Roboto,Arial}
body{background:linear-gradient(180deg,#070b14, #0b1220); color:var(--text)}

.container{max-width:1100px;margin:0 auto;padding:0 16px}

.topbar{
  position:sticky; top:0; z-index:10;
  background:rgba(7,11,20,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__wrap{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; gap:10px; align-items:center}
.brand__logo{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background:rgba(77,163,255,.18);
  border:1px solid rgba(77,163,255,.35);
  font-weight:800;
}
.brand__text span{display:block; font-size:12px; color:var(--muted)}

.nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.nav a{color:var(--muted); text-decoration:none; font-size:14px}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:14px;
  background:var(--brand);
  color:#07101f;
  font-weight:700;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.15);
}
.btn--ghost{background:transparent; color:var(--text)}
.btn--sm{padding:10px 12px; border-radius:12px}
.btn--block{display:block; width:100%; text-align:center}

.hero{padding:56px 0 26px}
.hero__wrap{display:grid; grid-template-columns: 1.3fr .9fr; gap:18px; align-items:stretch}
.hero__text h1{font-size:44px; margin:0 0 10px}
.hero__text p{color:var(--muted); margin:0 0 18px; line-height:1.5}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap}
.badges{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}
.badges span{
  font-size:13px; color:var(--muted);
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius:999px;
}

.section{padding:44px 0}
.section--alt{background:rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
h2{margin:0 0 14px; font-size:28px}
.muted{color:var(--muted)}
.small{font-size:12px}

.grid3{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
.grid2{display:grid; grid-template-columns: repeat(2,1fr); gap:14px}

.card{
  background:rgba(17,26,43,.75);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.hero__card h3{margin:0 0 10px}
.hero__card ul{margin:0 0 14px; padding-left:18px; color:var(--muted)}
.hero__card li{margin:6px 0}

.table{border:1px solid var(--line); border-radius:var(--radius); overflow:hidden}
.table__row{display:grid; grid-template-columns: 1fr 2fr 1fr; gap:0; border-bottom:1px solid var(--line)}
.table__row:last-child{border-bottom:none}
.table__row > div{padding:12px 14px; color:var(--muted)}
.table__head{background:rgba(77,163,255,.12)}
.table__head > div{color:var(--text); font-weight:800}

.note{
  margin-top:14px;
  padding:14px;
  border-radius:var(--radius);
  background:rgba(77,163,255,.10);
  border:1px solid rgba(77,163,255,.25);
  color:var(--text);
}

.form label{display:block; margin:10px 0 6px; color:var(--muted); font-size:14px}
.form input,.form select,.form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
.form input:focus,.form select:focus,.form textarea:focus{
  border-color:rgba(77,163,255,.55);
}

.checklist{margin:0; padding-left:18px; color:var(--muted)}
.checklist li{margin:8px 0}

.callout{
  margin-top:14px;
  padding:14px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
}

.link{color:var(--brand); text-decoration:none}
.link:hover{text-decoration:underline}

.footer{padding:24px 0; border-top:1px solid var(--line); background:rgba(0,0,0,.15)}
.footer__wrap{display:flex; justify-content:space-between; gap:14px; align-items:center; flex-wrap:wrap}
.footer__links{display:flex; gap:12px}
.footer__links a{color:var(--muted); text-decoration:none}
.footer__links a:hover{color:var(--text)}
.footer__copy{padding:12px 16px; color:var(--muted); font-size:12px; text-align:center}

.wpp-float{
  position:fixed; right:16px; bottom:16px; z-index:999;
  background:#25D366; color:#07101f;
  padding:12px 14px; border-radius:999px;
  font-weight:900; text-decoration:none;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
@media (max-width: 920px){
  .hero__wrap{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .hero__text h1{font-size:36px}
  .table__row{grid-template-columns:1fr}
}
/* =================== FIM STYLE =================== */
