*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#E5E7EB;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(122,74,138,.45), transparent 60%),
    radial-gradient(900px 600px at 95% 10%, rgba(255,242,18,.10), transparent 55%),
    linear-gradient(180deg, #070713, #05050f 70%);
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}

/* TOPBAR */
.topbar{
  position:sticky;
  top:0;
  z-index:99;
  background: rgba(8,6,15,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0; gap:14px;
}
.brand{display:flex; gap:10px; align-items:center}

/* Logo padrão (caso não use imagem) */
.logo{
  width:36px;height:36px;border-radius:12px;
  background: linear-gradient(135deg, #84529A, #6D4080);
  box-shadow: 0 10px 25px rgba(122,74,138,.25);
}

/* Se você usar imagem da logo */
.brand{
  display:flex;
  align-items:center;
}

.brand img{
  height:148px;
  width:auto;
  object-fit:contain;
  margin-top:2px;
}

.brand .title{font-weight:900; letter-spacing:.2px; line-height:1.05}
.brand .subtitle{font-size:12px; color:#A1A1AA}

.links{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.badge{
  font-size:12px; color:#A1A1AA;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  transition:.2s ease;
}
.badge:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.22)}

/* BUTTONS */
.btn{
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, #84529A, #6D4080);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  cursor:pointer;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 14px 40px rgba(0,0,0,.35)}
.btn:active{transform: translateY(0px)}
.btn.outline{
  background: rgba(255,255,255,.03);
  box-shadow: none;
}
.btn.orange{
  background: linear-gradient(135deg, #FFF212, #ffe600);
  color:#111;
  border-color: rgba(255,255,255,.08);
}

/* CARDS */
.card{
  background:
    radial-gradient(1100px 300px at 20% 0%, rgba(122,74,138,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    backdrop-filter: blur(14px);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.card.soft{box-shadow:none}

hr{border:none; border-top:1px solid rgba(255,255,255,.10); margin:16px 0}

/* TYPO */
.h1{font-size:44px; line-height:1.08; margin:0 0 10px; letter-spacing:-.6px}
.p{color:#A1A1AA; margin:0 0 16px; font-size:16px; line-height:1.6}
.small{font-size:13px; color:#A1A1AA; line-height:1.55}
@media(max-width:520px){.h1{font-size:34px}}

/* LAYOUT */
.hero{padding:44px 0 18px}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; align-items:stretch}
.section{padding:18px 0}
.grid-3{display:grid; grid-template-columns:repeat(3, 1fr); gap:12px}
.cards{display:grid; grid-template-columns:repeat(2, 1fr); gap:12px}
@media(max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
}

/* KPI */
.kpi{display:flex; flex-direction:column; gap:6px; padding:14px}
.kpi strong{font-size:18px}

/* NOTICE */
.notice{
  font-size:13px; color:#A1A1AA;
  border-left:3px solid rgba(255,242,18,.75);
  padding:12px 12px;
  background: rgba(255,122,0,.06);
  border-radius:14px;
}

/* FORM */
.form{display:grid; gap:12px}
.row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media(max-width:720px){.row{grid-template-columns:1fr}}
label{font-size:13px; color:#A1A1AA}

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  color:#E5E7EB;
  outline:none;
  transition: border-color .18s ease, background .18s ease;
}
input::placeholder, textarea::placeholder{color: rgba(161,161,170,.75)}
input:focus, select:focus, textarea:focus{
  border-color: rgba(122,74,138,.65);
  background: rgba(255,255,255,.06);
}
textarea{resize: vertical; min-height:92px}

/* FOOTER */
.footer{
  padding:26px 0 44px;
  color:#A1A1AA;
  font-size:13px;
}
.footer a{color:#E5E7EB; opacity:.9}
.footer .cols{
  display:flex; gap:16px; flex-wrap:wrap; align-items:flex-start; justify-content:space-between;
}

/* COOKIE BAR */
.cookiebar{
  position:fixed; left:0; right:0; bottom:0; padding:14px 0;
  background: rgba(7,7,18,.92);
  border-top:1px solid rgba(255,255,255,.10);
  display:none; z-index:999;
}
.cookiebar .box{display:flex; align-items:center; justify-content:space-between; gap:14px}
.cookiebar p{margin:0; color:#A1A1AA; font-size:13px; line-height:1.45}
@media(max-width:720px){
  .cookiebar .box{flex-direction:column; align-items:stretch}
}
/* =========================================
RESPONSIVO PREMIUM REFFISA
========================================= */

@media(max-width:980px){

.nav{
flex-direction:column;
align-items:center;
text-align:center;
padding:14px 0;
}

.links{
justify-content:center;
}

.brand img{
height:92px;
}

.hero{
padding:22px 0 10px;
}

.hero-grid{
gap:14px;
}

.card{
padding:16px;
border-radius:16px;
}

.h1{
font-size:36px;
line-height:1.12;
}

}

@media(max-width:720px){

body{
overflow-x:hidden;
}

.container{
width:min(94%, 100%);
}

.brand img{
height:72px;
}

.links{
gap:8px;
}

.badge{
font-size:11px;
padding:7px 9px;
}

.btn{
width:100%;
justify-content:center;
padding:13px 16px;
font-size:15px;
}

.h1{
font-size:32px;
line-height:1.1;
}

.p{
font-size:15px;
line-height:1.6;
}

.hero-grid{
grid-template-columns:1fr;
}

.grid-3{
grid-template-columns:1fr;
}

.cards{
grid-template-columns:1fr;
}

.kpi{
padding:10px 0;
}

.footer{
text-align:center;
}

.footer > .container > div{
flex-direction:column !important;
align-items:center !important;
text-align:center;
}

}

@media(max-width:520px){

.h1{
font-size:28px;
}

.brand img{
height:64px;
}

.card{
padding:14px;
}

.notice{
font-size:12px;
}

}
