/* RESET */


*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, Helvetica, sans-serif;
}

html{
scroll-behavior: smooth;
}


body{
background:#F4F6F8;
color:#1F2937;
line-height:1.6;
}



/* HEADER */

header{
background:#1E3A5F;
height:90px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 40px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
position:fixed;
top:0;
width:100%;
z-index:1000;
}

@media(max-width:768px){

header{
flex-direction:column;
height:auto;
padding:15px;
gap:10px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

nav a{
margin:5px 10px;
font-size:16px;
}

}





.container{
width:90%;
max-width:1150px;
margin:auto;

display:flex;
align-items:center;
justify-content:space-between;
}


.logo{
display:flex;
align-items:center;
gap:10px;
color:white;
font-size:22px;
font-weight:bold;
}


.logo img{
height:70px;
}

.logo span{
font-size:18px;
}

nav a{
color:white;
margin-left:25px;
text-decoration:none;
font-size:20px;
padding:8px 12px;
border-radius:6px;
transition:0.3s;
}

nav a:hover{
background:#E5E7EB;
color:#1E3A5F;
}



/* HERO */

.hero{
position:relative;

background-image: url("background.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;

color:white;
text-align:center;
padding:120px 20px;

overflow:hidden;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(20,40,80,0.75); /* camada azul */

backdrop-filter: blur(3px);

z-index:0;
}

.hero *{
position:relative;
z-index:1;
}

@media(max-width:768px){
.hero h1{
font-size:32px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
margin-bottom:30px;
}
}


/* BOTÃO PRINCIPAL */

.btn{
background:#2F5AA8;
color:white;
padding:14px 25px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
font-size:16px;
display:inline-block;
transition:0.3s;
}

.hero .btn{
margin-top:20px;
}

.btn:hover{
background:#1E3A5F;
transform:scale(1.05);
}



/* SEÇÕES */

section{
padding:90px 20px;
text-align:center;
}

h2{
font-size:34px;
margin-bottom:50px;
color:#1E3A5F;
}

h5{
font-size:20px;
margin-bottom:50px;
color:#000000;
}



/* GRID */

.grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}


/* CARDS (painéis brancos) */

.card{
background:white;
width:280px;
padding:35px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
}

.card h3{
font-size:22px;
margin-bottom:10px;
color:#0a3a7a;
}

.card h4{
font-size:22px;
margin-bottom:10px;
color:#0a3a7a;
}

/* SEÇÃO CINZA */


.steps{
background:white;
}


/* CTA FINAL */

.cta{
background:linear-gradient(135deg,#0a3a7a,#1c5fd4);
color:white;
padding:100px 20px;
}

.cta h2{
color:white;
margin-bottom:30px;
}


/* FOOTER */

footer{
background:#111;
color:white;
padding:25px;
text-align:center;
font-size:14px;
}


/* CONTATO */

.contato{
background:#f7f9fc;
text-align:center;
padding:100px 20px;
}

.contato p{
font-size:18px;
margin-bottom:30px;
}

/* BOTÃO WHATSAPP */

@media(max-width:768px){
.whatsapp-btn{
background:#25D366;
color:white;
padding:14px 25px;
border-radius:8px;
font-size:16px;
text-decoration:none;
font-weight:bold;
display:inline-block;
transition:0.3s;
}

.whatsapp-btn:hover{
background:#1ebe5d;
transform:scale(1.05);
}
}




/* FOOTER */

.footer{
background:#111;
color:white;
padding:20px 5px 10px;
}

.footer-container{ 
max-width:1100px; 
margin:auto; 
display:flex; 
justify-content:space-between; 
align-items:flex-start; /* alinhar tudo pelo topo */ 
flex-wrap:wrap; gap:40px; text-align:left; 
}

.footer-col{
max-width:300px;
display:flex;
flex-direction:column;
gap:6px;
}


.footer-col h3{
margin-bottom:15px;
}

.footer-col h4{
margin-bottom:10px;
}

.footer-col p{
font-size:14px;
margin-bottom:5px;
color:#ccc;
}

.footer-bottom{
width:100%;
text-align:center;
margin-top:20px;
padding-top:20px;
border-top:1px solid #333;
font-size:14px;
color:#aaa;
display:flex;
justify-content:center;
}


/* DEPOIMENTOS */

.depoimentos{
background:#f7f9fc;
padding:90px 20px;
text-align:center;
}

.card-depoimento{
background:white;
padding:30px;
border-radius:12px;
max-width:300px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.card-depoimento p{
font-style:italic;
margin-bottom:20px;
}

.card-depoimento h4{
color:#0a3a7a;
margin-bottom:5px;
}

.card-depoimento span{
font-size:14px;
color:#777;
}

/* NOTÍCIAS */

.noticias{
padding:90px 20px;
background:#f7f9fc;
text-align:center;
}

.carrossel{
display:flex;
gap:25px;
overflow-x:auto;
scroll-behavior:smooth;
}

@media(max-width:768px){
.noticia{
min-width:260px;
background:white;
border-radius:10px;
padding:15px;
}
}

.noticia img{
width:100%;
height:180px;
object-fit:cover;
}

.noticia h3{
font-size:18px;
margin:15px;
color:#000000;
}

.noticia p{
font-size:14px;
margin:0 15px 15px 15px;
color:#555;
}

.noticia a{
display:block;
margin:0 15px 20px 15px;
text-decoration:none;
font-weight:bold;
color:#1c5fd4;
}

/* INDICADOR DENTRO DAS NOTÍCIAS */

.numeros-noticias{
display:flex;
justify-content:center;
gap:60px;
margin:30px 0 40px 0;
text-align:center;
}

.numero-item h3{
font-size:32px;
color:#2f6df6;
}

.numero-item p{
font-size:15px;
color:#555;
}

/* Esconder barra de rolagem do carrossel */

.carrossel::-webkit-scrollbar {
display: none;
}

.carrossel {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* Internet Explorer */
}

/* BOTÃO WHATSAPP FLUTUANTE */

/* BOTÃO WHATSAPP PROFISSIONAL */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;

background:#25D366;
color:white;

display:flex;
align-items:center;
gap:10px;

padding:14px 18px;

border-radius:50px;

font-weight:bold;
font-size:15px;

text-decoration:none;

box-shadow:0 8px 25px rgba(0,0,0,0.25);

z-index:9999;

animation:whatsappPulse 2s infinite;

transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.05);
background:#1ebe5d;
}


/* ANIMAÇÃO PULSANDO */

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,0.6);
}

70%{
box-shadow:0 0 0 15px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}


/* MOBILE */

@media(max-width:600px){

.whatsapp-float span{
display:none;
}

.whatsapp-float{
border-radius:50%;
padding:16px;
}

}

.steps-container{
display:flex;
align-items:center;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

@media(max-width:768px){
.step-arrow{
font-size:32px;
color:#1E3A5F;
display:none;
}
}

.forms-card{
display:flex;
align-items:center;
justify-content:center;
gap:20px;

background:white;

max-width:500px;
margin:auto;
padding:25px 30px;

border-radius:12px;

text-decoration:none;
color:#1F2937;

box-shadow:0 10px 30px rgba(0,0,0,0.1);

transition:0.3s;
}

.forms-card i{
font-size:40px;
color:#4285F4;
}

.forms-card h3{
margin-bottom:5px;
color:#1E3A5F;
}

.forms-card p{
font-size:15px;
color:#555;
}

.forms-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.forms-icon{
width:45px;
height:45px;
}

.forms-card p{
margin:3px 0;
}

img{
max-width:100%;
height:auto;
}

body{
padding-top:90px;
}

/* BOTÃO HAMBURGUER */

.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

header{
flex-direction:row;
justify-content:space-between;
align-items:center;
}

.menu-toggle{
display:block;
}

nav{
flex-direction:column;
position:absolute;
top:90px;
right:0;
background:#1E3A5F;
width:100%;
text-align:center;

max-height:0;
overflow:hidden;

transition:max-height 0.4s ease;
z-index:1000;
}


nav a{
margin:12px 0;
display:block;
}


nav.active{
max-height:300px;
}

}

.menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.5);

opacity:0;
visibility:hidden;

transition:0.3s;

z-index:900;
}

.menu-overlay.active{
opacity:1;
visibility:visible;
}
