*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f2f2f2;
color:#0d2c5a;
}

/* HEADER */
header{
background:#0d4aa2;
color:white;
padding:15px 40px;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo .box{
background:white;
color:#0d4aa2;
font-weight:800;
padding:8px 12px;
border-radius:4px;
}

.logo span{
font-size:14px;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:500;
}

/* HERO */
.hero{
height:450px;
background:linear-gradient(rgba(255,255,255,.85),rgba(255,255,255,.85)),
url('/imagens/29e64e14-f2bc-4781-b07d-2a11dc8ce146.jpg') center/cover;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero h1{
font-size:46px;
font-weight:800;
color:#0d4aa2;
max-width:900px;
}

.hero p{
margin-top:15px;
max-width:600px;
}

.btn{
display:inline-block;
margin-top:25px;
background:#0d4aa2;
color:white;
padding:14px 30px;
border-radius:25px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#083b82;
}

/* SECTIONS */
.section{
max-width:1200px;
margin:80px auto;
padding:0 20px;
text-align:center;
}

.section h2{
font-size:32px;
margin-bottom:40px;
}

/* CARDS */
.cards{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
}

.card{
background:white;
padding:25px;
border-radius:15px;
border:2px solid #0d4aa2;
max-width:320px;
}

.card h3{
margin-bottom:10px;
}

/* STEPS */
.steps{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:50px;
}

.step{
text-align:center;
max-width:200px;
}

.step span{
font-size:60px;
font-weight:800;
color:#0d4aa2;
}

/* WHATSAPP FLUTUANTE */
.whatsapp-btn{
position:fixed;
bottom:30px;
right:30px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 4px 12px rgba(0,0,0,0.15);
z-index:999;
transition:all 0.3s ease;
text-decoration:none;
overflow:hidden;
}

.whatsapp-btn:hover{
transform:scale(1.1);
box-shadow:0 6px 20px rgba(0,0,0,0.25);
}

.whatsapp-btn:active{
transform:scale(0.95);
}

.whatsapp-btn img{
width:100%;
height:100%;
object-fit:cover;
}


/* GALLERY */
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:180px;
object-fit:cover;
border-radius:12px;
transition:transform 0.2s;
cursor:pointer;
}

.gallery img:hover{
transform:scale(1.05);
}

/* MODAL */
.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background-color:rgba(0,0,0,0.9);
z-index:1000;
align-items:center;
justify-content:center;
}

.modal-content{
max-width:90%;
max-height:90%;
object-fit:contain;
border-radius:8px;
}

.close{
position:absolute;
top:20px;
right:30px;
color:white;
font-size:40px;
font-weight:bold;
cursor:pointer;
z-index:1001;
}

.close:hover{
color:#ccc;
}

/* CTA */
.cta{
background:#0d4aa2;
color:white;
text-align:center;
padding:70px 20px;
}

.cta h2{
margin-bottom:15px;
}

/* FOOTER */
footer{
background:#083b82;
color:white;
text-align:center;
padding:25px;
font-size:14px;
}

/* RESPONSIVO */
@media(max-width:768px){

.nav-container{
flex-direction:column;
gap:15px;
}

nav a{
margin-left:15px;
}

.hero h1{
font-size:30px;
}

.steps{
gap:25px;
}

.whatsapp-btn{
bottom:20px;
right:20px;
width:50px;
height:50px;
}
}
