*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#fff;
color:#222;
}

.container{
width:95%;
max-width:1280px;
margin:auto;
}

header{
background:#fff;
border-bottom:1px solid #eee;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:170px;
}

nav ul{
display:flex;
gap:60px;
list-style:none;
}

nav a{
text-decoration:none;
color:#111;
font-weight:700;
}

.btn-whatsapp{
    display:flex;
    align-items:center;
    gap:10px;

    background:#111184;
    color:white;
    text-decoration:none;   

    padding:1px 14px 1px 1px;
    border-radius:8px;

    font-weight:600;
}

.btn-whatsapp img{
    width:40px;
    height:40px;
    object-fit:contain;
}

.banner{
height:650px;

background:
linear-gradient(
rgba(0,0,0,.75),
rgba(0,0,0,.55)
),
url("../images/banner-sobre.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
}

.banner-content{
max-width:700px;
color:white;
}

.banner-content span{
color:#2D8CFF;
font-weight:bold;
letter-spacing:3px;
}

.banner-content h1{
font-size:60px;
margin:15px 0;
}

.banner-content p{
font-size:22px;
}

.quem-somos{
padding:100px 0;
}

.quem-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.texto h2{
font-size:42px;
color:#0B3D91;
margin-bottom:25px;
}

.texto p{
line-height:1.8;
margin-bottom:20px;
color:#555;
}

.imagem img{
width:100%;
border-radius:20px;
}

.diferenciais{
padding:100px 0;
background:#f7f7f7;
}

.diferenciais h2,
.servicos h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:#0B3D91;
}

.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:white;
padding:35px;
border-radius:15px;
text-align:center;
}

.servicos{
padding:100px 0;
}

.servicos-grid{
display:grid;
grid-template-columns:repeat(1,1fr);
gap:30px;
}

.servicos h3{
	font-size: 25px;
	text-align: center;
}
.servicos p{
	font-size: 18px;
	text-align: center;
}

.servico{
padding:35px;
background:white;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.mvv{
padding:100px 0;
background:#f7f7f7;
}

.mvv-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.mvv-card{
background:white;
padding:35px;
border-radius:15px;
}

.mvv-card h3{
color:#0B3D91;
margin-bottom:15px;
font-size: 35px;
}

.cta{
padding:100px 0;
background:#081C45;
color:white;
text-align:center;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
}

.cta p{
margin-bottom:30px;
}

.btn-cta{
display:inline-block;
padding:15px 30px;
background:#2D8CFF;
color:white;
text-decoration:none;
border-radius:10px;
font-weight:bold;
}

footer{
background:#06142F;
color:white;
text-align:center;
padding:50px 0;
}