/* GLOBAL */

body{
margin:0;
font-family:Arial;
background:#f4f7fb;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
flex-wrap:wrap;
}

.logo{
font-size:24px;
font-weight:bold;
color:#0073e6;
}

/* MENU */

.menu{
display:flex;
gap:20px;
align-items:center;
}

.menu a{
text-decoration:none;
color:#333;
font-weight:500;
}

/* MEGA MENU */

.mega{
position:relative;
}

.mega-menu{
display:none;
position:absolute;
top:100%;
background:white;
width:800px;
padding:20px;
right:0;
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

.mega:hover .mega-menu{
display:flex;
justify-content:space-between;
}

.mega-menu div{
width:50%;
}

.mega-menu a{
display:block;
padding:6px;
}

.phone{
font-weight:bold;
color:#0073e6;
}

/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:60px 0;
flex-wrap:wrap;
gap:40px;
}

.hero-text{
flex:1;
}

.hero-text h1{
font-size:38px;
}

.hero-text p{
font-size:18px;
color:#555;
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#0073e6;
color:white;
border-radius:5px;
text-decoration:none;
}

.hero img{
max-width:420px;
border-radius:10px;
}

/* PRICE */

.price-box{
background:white;
padding:40px;
text-align:center;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.price{
font-size:42px;
color:#0073e6;
font-weight:bold;
}

/* SERVICES */

.services{
margin-top:50px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

/* CTA */

.cta{
margin-top:40px;
background:#0073e6;
color:white;
text-align:center;
padding:40px;
border-radius:10px;
}

/* FAQ */

.faq{
margin-top:60px;
}

.faq-item{
border-bottom:1px solid #ddd;
}

.faq-question{
padding:15px;
cursor:pointer;
font-weight:bold;
background:#f7f7f7;
}

.faq-answer{
display:none;
padding:15px;
}

.faq-item.active .faq-answer{
display:block;
}

/* FOOTER */

footer{
margin-top:50px;
background:#0073e6;
color:white;
text-align:center;
padding:25px;
}

/* WHATSAPP BUTTON */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:14px 20px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
}

/* MOBILE */

@media(max-width:768px){

.hero{
flex-direction:column;
text-align:center;
}

.hero img{
max-width:100%;
}

.menu{
flex-direction:column;
align-items:flex-start;
}

.mega-menu{
position:static;
width:100%;
}

}