*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f8fafc;
color:#1f2937;
line-height:1.6;
}

/* CONTAINER */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 20px rgba(0,0,0,0.05);
}

.menu{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-weight:700;
font-size:22px;
}

.logo span{
color: #004987;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#374151;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#1e8e5a;
}

/* BOTÃO MENU */

.btn-menu{
background:#1e8e5a;
color:white;
padding:10px 20px;
border-radius:6px;
font-weight:500;
}

/* HERO */

.hero{
padding:100px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero img{
width:100%;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.hero h1{
font-size:46px;
margin-bottom:20px;
font-weight:700;
}

.hero span{
color:#004987;
}

.hero p{
font-size:18px;
color:#6b7280;
margin-bottom:30px;
}

/* BOTÃO */

.btn{
display:inline-block;
background:#1e8e5a;
color:white;
padding:15px 30px;
border-radius:8px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.btn:hover{
background:#166c45;
transform:translateY(-2px);
box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

/* SERVIÇOS */

.servicos{
padding:100px 0;
text-align:center;
}

.servicos h2{
font-size:34px;
margin-bottom:10px;
}

.sub{
color:#6b7280;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:50px;
}

.card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 8px 30px rgba(0,0,0,0.05);
transition:0.3s;
border:1px solid #f1f1f1;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.card h3{
margin-bottom:10px;
font-size:20px;
}

/* SOBRE */

.sobre{
padding:100px 0;
}

.sobre-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.sobre img{
width:100%;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.sobre h2{
font-size:34px;
margin-bottom:20px;
}

.sobre p{
color:#6b7280;
margin-bottom:20px;
}

.sobre ul{
list-style:none;
}

.sobre li{
margin-bottom:10px;
}

/* NUMEROS */

.numeros{
background:#004987;
color:white;
padding:80px 0;
}

.numeros-grid{
display:flex;
justify-content:space-around;
text-align:center;
}

.numeros h3{
font-size:42px;
margin-bottom:5px;
}

/* CONTATO */

.contato{
padding:100px 0;
text-align:center;
}

.contato h2{
font-size:34px;
margin-bottom:20px;
}

/* FOOTER */

footer{
background:#0f172a;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
font-size:14px;
}

/* BOTÃO WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
color:white;
font-size:30px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
transition:0.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}

/* RESPONSIVO */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
}

.sobre-grid{
grid-template-columns:1fr;
}

.numeros-grid{
flex-direction:column;
gap:30px;
}

.hero h1{
font-size:36px;
}

}

/* RESPONSIVO TABLET */

@media (max-width:1024px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero img{
max-width:400px;
margin:auto;
}

.sobre-grid{
grid-template-columns:1fr;
text-align:center;
}

nav{
display:none;
}

}

/* RESPONSIVO CELULAR */

@media (max-width:768px){

.container{
width:92%;
}

.menu{
flex-direction:column;
align-items:center;
gap:12px;
}

/* MENU ALINHADO */

nav{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
flex-wrap:wrap;
width:100%;
}

nav a{
margin:0;
font-size:14px;
font-weight:500;
padding:6px 8px;
text-align:center;
}

.btn-menu{
padding:6px 12px;
}

/* RESTO DO RESPONSIVO */

.hero{
padding:60px 0;
}

.hero h1{
font-size:30px;
}

.hero p{
font-size:16px;
}

.cards{
grid-template-columns:1fr;
}

.card{
width:100%;
}

.numeros-grid{
grid-template-columns:1fr;
gap:25px;
}

.logo{
font-size:20px;
}

.btn{
width:50%;
text-align:center;
}

.hero img{
width:100%;
}

.sobre img{
width:100%;
}

}