:root{
--roxo:#2B0A57;
--laranja:#FF7A00;
--branco:#FFFFFF;
--cinza:#F5F7FB;
--texto:#222222;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,sans-serif;
background:#fff;
color:var(--texto);
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.hero-section{
background:linear-gradient(135deg,#2B0A57,#4a1a8a);
color:#fff;
padding:20px 0 140px;
overflow:hidden;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0;
}

.logo{
font-size:34px;
font-weight:700;
}

.logo span{
color:var(--laranja);
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
color:#fff;
text-decoration:none;
font-weight:600;
}

.btn-primary{
background:#FF7A00;
color:#fff;
padding:16px 30px;
border-radius:12px;
text-decoration:none;
font-weight:700;
display:inline-block;
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 12px 25px rgba(255,122,0,.35);
}

.btn-secondary{
border:2px solid #fff;
color:#fff;
padding:12px 22px;
border-radius:10px;
text-decoration:none;
display:inline-block;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
padding-top:60px;
}

.hero-badge{
display:inline-block;
background:rgba(255,255,255,.15);
backdrop-filter:blur(10px);
padding:12px 20px;
border-radius:999px;
margin-bottom:25px;
font-size:14px;
font-weight:700;
letter-spacing:.5px;
}

.hero-text h1{
font-size:58px;
line-height:1.1;
margin-bottom:20px;
}

.hero-text p{
font-size:22px;
margin-bottom:30px;
opacity:.95;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.hero-image img{
width:100%;
height:520px;
object-fit:cover;
border-radius:30px;
box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.trust-bar{
background:#ffffff;
padding:35px 0;
box-shadow:0 10px 30px rgba(0,0,0,.08);
margin-top:-40px;
position:relative;
z-index:10;
border-radius:25px;
max-width:1200px;
margin-left:auto;
margin-right:auto;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
font-weight:700;
font-size:18px;
color:#2B0A57;
}

section{
padding:90px 0;
}

section h2{
text-align:center;
font-size:42px;
color:var(--roxo);
margin-bottom:50px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:40px;
}
...

.card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
padding:0;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.card h3{
padding:20px 20px 10px;
color:#2B0A57;
font-size:22px;
}

.card p{
padding:0 20px 25px;
}


#beneficios{
background:var(--cinza);
}

.benefits{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.benefit{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

#sobre p{
max-width:900px;
margin:auto;
text-align:center;
font-size:20px;
}

details{
background:#fff;
padding:20px;
margin-bottom:15px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

summary{
cursor:pointer;
font-weight:bold;
}

.cta-section{
background:linear-gradient(135deg,#2B0A57,#4a1a8a);
text-align:center;
color:#fff;
}

.cta-section h2{
color:#fff;
}

footer{
background:#14082d;
color:#fff;
text-align:center;
padding:60px 20px;
}

footer p{
margin-top:10px;
}

.whatsapp-float{
position:fixed;
right:25px;
bottom:25px;
background:#25D366;
color:#fff;
text-decoration:none;
padding:16px 22px;
border-radius:999px;
font-weight:bold;
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

@media(max-width:900px){

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

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

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

.hero-text h1{
font-size:68px;
line-height:1.05;
margin-bottom:25px;
font-weight:800;
}

.nav-links{
display:none;
}

}

.card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:15px;
margin-bottom:15px;
display:block;
}

#solucoes{
background:#f5f7fb;
}

#solucoes h2{
font-size:48px;
font-weight:800;
margin-bottom:60px;
}

.card img{
width:100%;
height:260px;
object-fit:cover;
display:block;
}

.card h3{
font-size:24px;
font-weight:700;
}

.card p{
font-size:16px;
color:#666;
}

.card{
border:1px solid rgba(0,0,0,.05);
}
