*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f5f5;
color:#222;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

header{
background:#fff;
box-shadow:0 2px 15px rgba(0,0,0,.08);
padding:15px 0;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:70px;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#222;
font-weight:500;
}

.phone-btn{
background:#1db954;
color:#fff;
padding:15px 25px;
border-radius:40px;
text-decoration:none;
font-weight:600;
}

.hero{
background:#fff8ef;
padding:60px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.big-title{
display:flex;
align-items:center;
gap:20px;
margin:20px 0;
}

.big-title span{
font-size:120px;
font-weight:800;
color:#ff6b3d;
line-height:1;
}

.big-title div{
font-size:50px;
font-weight:700;
}

.orange{
color:#ff6b3d;
font-size:24px;
margin-bottom:15px;
}

.whatsapp-btn{
display:inline-block;
margin-top:20px;
background:#25D366;
color:white;
padding:15px 25px;
border-radius:40px;
text-decoration:none;
}

.phone-big{
margin-top:20px;
font-size:34px;
font-weight:700;
color:#1db954;
}

.campaign-box{
background:#ff4f7d;
color:white;
padding:60px;
border-radius:25px;
text-align:center;
}

.badge{
display:inline-block;
background:#ffc400;
color:#222;
padding:10px 20px;
border-radius:8px;
font-weight:700;
margin-bottom:20px;
}

.campaign-box h2{
font-size:55px;
}

.categories{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:20px;
margin:40px auto;
}

.category{
background:white;
padding:30px;
text-align:center;
border-radius:15px;
font-size:22px;
font-weight:600;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.countdown-section{
background:#ffd861;
padding:30px;
border-radius:20px;
margin-bottom:40px;
text-align:center;
}

.countdown{
display:flex;
justify-content:center;
gap:20px;
margin-top:20px;
}

.countdown div{
background:white;
padding:20px;
border-radius:10px;
min-width:120px;
}

.countdown span{
font-size:42px;
font-weight:700;
}

.info{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
padding-bottom:50px;
}

.card{
background:white;
padding:25px;
border-radius:15px;
}

.card h3{
margin-bottom:15px;
}

.map iframe{
width:100%;
height:250px;
border:none;
border-radius:10px;
}

.floating-whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 25px;
border-radius:50px;
text-decoration:none;
font-weight:600;
box-shadow:0 5px 15px rgba(0,0,0,.2);
}

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
}

.info{
grid-template-columns:1fr;
}

.navbar{
flex-direction:column;
gap:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.big-title{
flex-direction:column;
align-items:flex-start;
}

.big-title span{
font-size:90px;
}

.big-title div{
font-size:34px;
}

.campaign-box h2{
font-size:38px;
}

.countdown{
flex-wrap:wrap;
}
}