:root{
  --bg-1:#020617;
  --bg-2:#0f172a;
  --bg-3:#1e293b;
  --bg-4:#334155;
  --txt-1:#ffffff;
  --txt-2:#e2e8f0;
  --txt-3:#cbd5e1;
  --blue:#3b82f6;
  --blue-dark:#2563eb;
  --green:#22c55e;
  --border:rgba(255,255,255,0.08);
  --shadow:0 12px 30px rgba(0,0,0,0.25);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:linear-gradient(180deg,var(--bg-1),var(--bg-2));
  color:var(--txt-1);
  margin:0;
  padding:0;
}

a{
  color:inherit;
}

h1,h2,h3{
  line-height:1.2;
}

p{
  line-height:1.7;
}

.topo{
  background:rgba(30,41,59,0.96);
  padding:24px 20px 18px;
  text-align:center;
  box-shadow:0 6px 20px rgba(0,0,0,0.35);
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(8px);
}

.topo h1{
  margin:0;
  font-size:38px;
}

.topo p{
  margin:8px 0 0;
  color:var(--txt-3);
  font-size:16px;
}

.menu{
  max-width:1180px;
  margin:16px auto 0;
  padding:0 16px;
}

.menu-box{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  background:rgba(15,23,42,0.78);
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow);
}

.menu-box a{
  text-decoration:none;
  font-weight:bold;
  color:var(--txt-2);
  background:rgba(255,255,255,0.05);
  padding:10px 14px;
  border-radius:999px;
  transition:all .18s ease;
}

.menu-box a:hover{
  background:var(--blue);
  color:#fff;
  transform:translateY(-2px);
}

.container{
  max-width:1180px;
  margin:auto;
  padding:30px 20px 50px;
}

.hero{
  background:linear-gradient(135deg, rgba(37,99,235,0.25), rgba(34,197,94,0.16));
  border:1px solid var(--border);
  border-radius:24px;
  padding:34px 24px;
  box-shadow:var(--shadow);
  text-align:center;
}

.hero h2{
  margin:0 0 14px;
  font-size:36px;
  line-height:1.2;
}

.hero p{
  max-width:840px;
  margin:0 auto;
  color:var(--txt-2);
  font-size:17px;
  line-height:1.7;
}

.hero-botoes{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:22px;
}

.hero-btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:12px;
  text-decoration:none;
  font-weight:bold;
  transition:all .18s ease;
  box-shadow:0 8px 20px rgba(0,0,0,0.22);
}

.hero-btn.primario{
  background:var(--blue);
  color:white;
}

.hero-btn.primario:hover{
  background:var(--blue-dark);
  transform:scale(1.04);
}

.hero-btn.secundario{
  background:var(--bg-3);
  color:white;
}

.hero-btn.secundario:hover{
  background:var(--bg-4);
  transform:scale(1.04);
}

.secao{
  margin-top:42px;
}

.secao-titulo{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.secao-titulo h2{
  margin:0;
  font-size:28px;
}

.secao-titulo span{
  color:#93c5fd;
  font-size:14px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
  margin-top:18px;
}

.card{
  display:block;
  background:rgba(30,41,59,0.96);
  padding:20px;
  border-radius:16px;
  text-decoration:none;
  color:white;
  transition:transform .22s ease, background .22s ease, box-shadow .22s ease;
  box-shadow:0 10px 24px rgba(0,0,0,0.26);
  border:1px solid rgba(255,255,255,0.06);
  min-height:160px;
}

.card:hover{
  background:var(--blue);
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 14px 30px rgba(37,99,235,0.35);
}

.card strong{
  display:block;
  font-size:20px;
  margin-bottom:8px;
}

.card p{
  color:var(--txt-2);
  line-height:1.6;
  font-size:15px;
  margin:0;
}

.tag{
  display:inline-block;
  margin-top:12px;
  font-size:12px;
  font-weight:bold;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  color:#ffffff;
}

button{
  background:var(--blue);
  color:white;
  border:none;
  padding:12px 18px;
  border-radius:10px;
  cursor:pointer;
  font-weight:bold;
  transition:transform .2s ease, opacity .2s ease, background .2s ease;
  margin-right:10px;
  margin-top:10px;
}

button:hover{
  background:var(--blue-dark);
  transform:scale(1.03);
}

input, textarea, select{
  border:none;
  outline:none;
  font-size:16px;
}

textarea, input, select{
  background:#e5e7eb;
  color:#111827;
}

.mini-info{
  margin-top:38px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
}

.mini-box{
  background:rgba(15,23,42,0.72);
  border-radius:16px;
  padding:18px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 6px 18px rgba(0,0,0,0.22);
}

.mini-box strong{
  display:block;
  color:#93c5fd;
  margin-bottom:8px;
  font-size:14px;
}

.mini-box p{
  color:#e2e8f0;
  line-height:1.7;
  margin:0;
  font-size:15px;
}

.bloco-texto{
  margin-top:50px;
  max-width:920px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.8;
  color:#e2e8f0;
}

.bloco-texto h2{
  color:#fff;
  margin-top:0;
}

.rodape,
.rodape-box{
  margin-top:50px;
  text-align:center;
  padding:25px;
  border-top:1px solid rgba(255,255,255,0.1);
  color:#cbd5e1;
}

.rodape a{
  color:#93c5fd;
  margin:0 10px;
  text-decoration:none;
  font-weight:bold;
}

.rodape a:hover{
  text-decoration:underline;
}

.rodape-links{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:10px;
}

.rodape-links a{
  color:#93c5fd;
  text-decoration:none;
  font-weight:bold;
}

.rodape-links a:hover{
  text-decoration:underline;
}

.pagina-box{
  background:rgba(15,23,42,0.78);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:24px;
  box-shadow:0 10px 24px rgba(0,0,0,0.25);
  margin-top:20px;
}

.pagina-box h1{
  margin-top:0;
}

.pagina-box h2{
  margin-top:28px;
  color:#93c5fd;
}

.voltar-link{
  display:inline-block;
  margin-top:20px;
  color:#93c5fd;
  text-decoration:none;
  font-weight:bold;
}

.voltar-link:hover{
  text-decoration:underline;
}

.aviso-box{
  margin-top:18px;
  background:rgba(30,41,59,0.9);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  padding:16px;
  color:#e2e8f0;
}

.lista-simples{
  padding-left:20px;
  line-height:1.8;
}

.ad-box{
  margin:40px auto;
  padding:20px;
  text-align:center;
  background:rgba(30,41,59,0.6);
  border-radius:12px;
  max-width:728px;
  min-height:90px;
}

@media (max-width:700px){
  .topo h1{
    font-size:32px;
  }

  .container{
    padding:22px 14px 40px;
  }

  .pagina-box{
    padding:18px;
  }

  .hero{
    padding:28px 18px;
  }

  .hero h2{
    font-size:28px;
  }

  .hero p{
    font-size:16px;
  }

  .secao-titulo h2{
    font-size:24px;
  }

  .menu-box{
    justify-content:flex-start;
  }
}