*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins, sans-serif;
}

body{
background:#f5f7fa;
color:#333;
}

header{
background:#0aa3a3;
color:white;
padding:20px;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1100px;
margin:auto;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:500;
}

.hero{
height:70vh;
background:linear-gradient(120deg,#0aa3a3,#0fd0d0);
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero h2{
font-size:40px;
margin-bottom:10px;
}

.hero button{
margin-top:20px;
padding:12px 25px;
border:none;
background:white;
color:#0aa3a3;
font-weight:600;
cursor:pointer;
border-radius:5px;
}

.section{
padding:60px 20px;
max-width:1100px;
margin:auto;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.horario table{
width:100%;
margin-top:30px;
border-collapse:collapse;
}

.horario td{
padding:12px;
border-bottom:1px solid #ddd;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:30px;
}

.social{
list-style:none;
}

.social li{
margin:10px 0;
}

.social a{
text-decoration:none;
color:#0aa3a3;
font-weight:500;
}

footer{
background:#0aa3a3;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

@media(max-width:700px){

.contact-grid{
grid-template-columns:1fr;
}

.hero h2{
font-size:28px;
}

}