*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Inter;
background:#f2f2f2;
color:#333;
line-height:1.6;

}

h1,h2,h3{

font-family:Poppins;

}

.container{

width:90%;
max-width:1100px;
margin:auto;

}

.hero{

background:#1f3a5f;
color:white;
padding:120px 0;

}

.hero-container{

display:flex;
align-items:center;
justify-content:center;
text-align:center;

}

.hero h1{

font-size:48px;
margin-bottom:15px;

}

.subtitle{

max-width:600px;
margin:auto;
margin-bottom:30px;

}

.hero-buttons{

display:flex;
justify-content:center;
gap:15px;

}

.btn-primary{

background:#ff8c00;
color:white;
padding:14px 26px;
border-radius:6px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:0.3s;

}

.btn-primary:hover{

background:#e67800;

}

.btn-secondary{

border:2px solid white;
color:white;
padding:14px 26px;
border-radius:6px;
text-decoration:none;

}

.section{

padding:80px 0;
text-align:center;

}

.section.alt{

background:white;

}

.cards{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;

}

.card{

background:white;
padding:30px;
border-radius:8px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;

}

.card:hover{

transform:translateY(-5px);

}

.services{

margin-top:30px;
display:flex;
flex-direction:column;
gap:12px;
font-size:18px;

}

.rating{

max-width:600px;
margin:auto;

}

.stars{

font-size:26px;
margin:15px 0;

}

.map{

margin:40px auto;
max-width:900px;

}

.contacto{

background:#1f3a5f;
color:white;

}

.telefono{

font-size:24px;
margin-bottom:20px;

}

.telefono a{

color:white;
text-decoration:none;

}

.contact-buttons{

display:flex;
justify-content:center;
gap:15px;

}

footer{

text-align:center;
padding:30px;
background:#162c47;
color:white;

}

@media(max-width:900px){

.cards{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.cards{

grid-template-columns:1fr;

}

.hero-buttons{

flex-direction:column;

}

}