*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins;
background:#f4f6f5;
color:#333;
}

h1{
    display:none;
}

header{
background:white;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:10;
display: flex;
align-items: center;
}

.logo {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#27ae60;
font-weight:500;
}

.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(135deg,#27ae60,#2ecc71);
color:white;
}

.hero h2{
font-size:42px;
}

.hero p{
margin:15px 0;
}

.btn{
background:white;
color:#27ae60;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

.servicios{
padding:80px 20px;
text-align:center;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}
.card{

background:white;
padding:30px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all .35s ease;
cursor:pointer;

}

.card:hover{

transform:translateY(-10px) scale(1.02);
box-shadow:0 20px 40px rgba(0,0,0,0.15);

}
.beneficios{
background:#2ecc71;
color:white;
text-align:center;
padding:80px 20px;
}

.benefit-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
margin-top:40px;
}

.benefit{
background:rgba(255,255,255,0.2);
padding:20px;
border-radius:10px;
}

.testimonios{
padding:80px 20px;
text-align:center;
}

.contacto{
background:#27ae60;
color:white;
text-align:center;
padding:70px 20px;
}

.mapa iframe{
width:100%;
height:300px;
border:0;
}

footer{
background:#1c1c1c;
color:white;
text-align:center;
padding:20px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
font-size:28px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,0.3);

animation:pulse 2s infinite;
}

@media(max-width:768px){

.hero h2{
font-size:30px;
}

nav{
display:none;
}

}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.1);
}

100%{
transform:scale(1);
}

}
