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

}

body{
background:#282828;
color:#ffffff;
}


/* HEADER */

header{
position:fixed;
width:100%;
top:0;
z-index:1000;
transition:.3s;
}

header.scrolled{
background:#282828;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
}

.logo{
font-weight:600;
font-size:22px;
color:#0a6ebd;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:#ffffff;
font-weight:500;
}

nav a:hover{
color:#0a6ebd;
}
/* VAlores */

.corpo{
    width: 300px;
    height: 200px;
    background: #bce6f3;
    color: #282828;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.val{
    width: 30%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.val3 .vis{
    padding: 10px;
}
.vis1{
    padding-top: 50px;
    padding-left: 10px;
}
.topov img{
    padding-top: 30px;
    width: 400px;
    height: auto;

}
.centro2{
    padding-left: 20px;
    padding-bottom: 70px;
}
.val1 h3, h6{
    color: #0a6ebd;
}
.perfil{
    padding-left: 50px;
}
.perfil img{
    width: 90%;
    height: auto;
}

/* HAMBURGER */

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
}

/* HERO */

.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
padding:0 10%;
color:white;
background:linear-gradient(#282828,rgba#282828),
url("https://images.unsplash.com/photo-1588776814546-ec7e7b6f61c7");
background-size:cover;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
animation:fadeUp 1s ease;
}

.hero p{
margin-bottom:25px;
font-size:20px;
}

.btn{
background:#0a6ebd;
color:white;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
transition:.3s;
}

.btn:hover{
background:#084f88;
}

/* SECTIONS */
.lado2{
    padding: 30px;
}
.missao h2{
    font-size: 70px;
    font-weight: 700;
}
.nosv{
    padding-left: 40px;
}
.visao{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: justify;
    padding: 10px;
    border-color: #084f88;
    border-width: 10px;
    border-style: solid;
    border-left: none;
    padding-left: 0;
}
.icone{
    justify-content: space-between;
    padding: 30px;
}
.esquerda{
    padding-left: 50px;
}

section{

padding:90px 10%;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:32px;
color:#0a6ebd;
}

/* SERVIÇOS */

.servicos{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

/* CONTADOR */

.stats{
display:flex;
justify-content:space-around;
text-align:center;
flex-wrap:wrap;
gap:30px;
}

.stat h3{
font-size:40px;
color:#0a6ebd;
}

/* DEPOIMENTOS */

.testimonials{
max-width:800px;
margin:auto;
text-align:center;
}

.testimonial{
display:none;
}

.testimonial.active{
display:block;
}

.testimonial p{
font-style:italic;
margin-bottom:15px;
}

/* CTA */

.cta{
background:#0a6ebd;
color:white;
text-align:center;
padding:70px 10%;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25d366;
color:white;
padding:15px;
border-radius:50%;
font-size:22px;
text-decoration:none;
}

/* ANIMAÇÕES */

.hidden{
opacity:0;
transform:translateY(40px);
transition:all .8s;
}

.show{
opacity:1;
transform:translateY(0);
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* MOBILE */

@media(max-width:900px){

nav ul{
display:none;
position:absolute;
top:70px;
right:0;
background:white;
flex-direction:column;
width:200px;
padding:20px;
}

nav ul.active{
display:flex;
}

.hamburger{
display:block;
}
#contato{
    flex-direction: column;
    gap: 20px;
    text-align: center;

}
.sobre{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: justify;

}
}
/* SOBRE */

.sobre{
    color: #282828;
display:flex;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
justify-content: space-between;
}
.sobre h2{
    color:#ffffff;
    font-size:60px;
    font-weight: 900;
}

.sobre img{
width:100%;
border-radius:10px;
}
/* MISSÃO VISÃO VALORES */

.mvv{
    width: auto;
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.mvv-card{
background:white;
width:260px;
padding:30px;
border-radius:12px;
text-align:justify;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.4s;
cursor:pointer;
}

i:hover{
    color: white;
}
/* footer */
#contato{
    display: flex;
    justify-content: space-between;
    justify-items: justify;
    text-align: left;
    align-items: center;
}