*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
background:#ffffff;
color:#1e1e1e;
line-height:1.6;
overflow-x:hidden;
}

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

/* TOPO */

.topbar{
background:#0b3b67;
color:#fff;
padding:12px 0;
font-size:14px;
display:flex;
justify-content:space-between;
}

.topbar div{
width:50%;
text-align:center;
}

/* HEADER */

header{
background:#fff;
padding:25px 0;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.header-wrap{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
height:80px;
}

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

/* HERO */

.hero{
padding:80px 0;
background:#f8fafc;
}

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

.hero-image img{
width:100%;
border-radius:20px;
display:block;
}

.badge{
display:inline-block;
padding:10px 20px;
background:#eef5fc;
color:#0b3b67;
font-size:13px;
font-weight:700;
border-radius:50px;
margin-bottom:20px;
}

h1{
font-size:58px;
line-height:1.1;
margin-bottom:20px;
font-weight:800;
}

h2{
font-size:38px;
margin-bottom:20px;
color:#0b3b67;
font-weight:700;
}

p{
font-size:18px;
}

/* BENEFÍCIOS */

.benefits{
display:flex;
gap:20px;
margin:30px 0;
flex-wrap:wrap;
}

.benefits div{
font-size:17px;
}

/* BOTÕES */

.cta-group{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-green{
background:#25d366;
color:#fff;
padding:16px 28px;
border-radius:40px;
text-decoration:none;
font-weight:700;
display:inline-block;
transition:.3s;
}

.btn-green:hover{
opacity:.9;
}

.btn-outline{
border:2px solid #0b3b67;
color:#0b3b67;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
font-weight:700;
display:inline-block;
}

/* SEÇÕES */

.section{
padding:90px 0;
}

.light{
background:#f8fafc;
}

/* CARDS */

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

.card,
.testimonial{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
text-align:center;
}

/* BLOCOS */

.split{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.split img{
width:100%;
border-radius:20px;
display:block;
}

/* LISTA */

ul{
padding-left:20px;
}

ul li{
margin-bottom:15px;
font-size:18px;
}

/* AUTORIDADE */

.authority{
background:#0b3b67;
color:#fff;
padding:90px 0;
text-align:center;
}

.authority h2{
color:#fff;
}

.authority p{
margin-bottom:20px;
}

/* CTA FINAL */

.cta-final{
padding:100px 0;
text-align:center;
background:#f2f7fc;
}

/* FOOTER */

footer{
background:#0b3b67;
color:#fff;
padding:35px 0;
}

.footer-wrap{
display:flex;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
}

/* WHATSAPP */

.floating-whatsapp{
position:fixed;
right:25px;
bottom:25px;
background:#25d366;
color:#fff;
padding:18px 25px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
z-index:999;
}

/* MOBILE */

@media screen and (max-width:768px){

.topbar{
flex-direction:column;
padding:10px 0;
}

.topbar div{
width:100%;
margin-bottom:5px;
}

.header-wrap{
flex-direction:column;
gap:20px;
}

.header-buttons{
flex-direction:column;
width:100%;
}

.header-buttons a{
width:100%;
text-align:center;
}

.hero{
padding:30px 0;
}

.hero-grid{
display:grid !important;
grid-template-columns:1fr !important;
gap:30px;
}

.hero-image{
grid-row:1 !important;
}

.hero-text{
grid-row:2 !important;
}

.hero-image img{
width:100%;
height:320px;
object-fit:cover;
border-radius:15px;
}

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

h2{
font-size:28px;
}

p{
font-size:17px;
}

.benefits{
flex-direction:column;
gap:12px;
margin:20px 0;
}

.cta-group{
flex-direction:column;
width:100%;
}

.btn-green,
.btn-outline{
width:100%;
text-align:center;
}

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

.split{
grid-template-columns:1fr;
gap:30px;
}

.logo{
height:60px;
}

.footer-wrap{
flex-direction:column;
text-align:center;
}

.floating-whatsapp{
right:15px;
bottom:15px;
padding:14px 20px;
font-size:14px;
}

}

