*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:fixed;
top:0;
width:100%;
background:#111;
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
color:white;
font-size:22px;
font-weight:bold;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
}

#btnMenu{
display:none;
background:none;
border:none;
font-size:30px;
color:white;
cursor:pointer;
}

.hero{
height:100vh;
background:url('../images/hero.jpg') center/cover no-repeat;
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
color:white;
text-align:center;
padding:20px;
}

.hero h1{
font-size:56px;
margin-bottom:10px;
}

.hero p{
font-size:24px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
}

.verde{
background:#25D366;
color:white;
}

.blanco{
background:white;
color:black;
}

section{
padding:80px 0;
}

h2{
text-align:center;
margin-bottom:40px;
font-size:36px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
padding:30px;
background:white;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
text-align:center;
}

.tarifas{
background:#f5f5f5;
}

table{
width:100%;
border-collapse:collapse;
background:white;
}

th,td{
padding:18px;
border:1px solid #ddd;
text-align:left;
}

th{
background:#222;
color:white;
}

.contacto{
background:#111;
color:white;
text-align:center;
}

.contact-box{
display:flex;
flex-direction:column;
gap:15px;
align-items:center;
}

footer{
background:black;
color:white;
text-align:center;
padding:20px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
text-decoration:none;
color:white;
box-shadow:0 10px 20px rgba(0,0,0,.3);
}

@media(max-width:768px){

nav{
display:none;
position:absolute;
top:60px;
right:20px;
background:#111;
flex-direction:column;
padding:20px;
border-radius:10px;
}

nav.active{
display:flex;
}

#btnMenu{
display:block;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:18px;
}

}