/* RESET */

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

body{
font-family: 'Inter', sans-serif;
background:#0f0f0f;
color:white;
line-height:1.6;
}


/* HERO */

.hero{
background:#111;
padding:120px 20px;
text-align:center;
}

.hero h1{
font-size:48px;
font-family:'Poppins',sans-serif;
margin-bottom:10px;
}

.hero p{
font-size:18px;
color:#ccc;
margin-bottom:30px;
}

.hero-botones{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}


/* BOTONES */

.btn{
background:#ffffff;
color:#000;
padding:12px 24px;
text-decoration:none;
border-radius:6px;
font-weight:500;
transition:0.3s;
}

.btn:hover{
background:#e4e4e4;
}

.btn-outline{
border:1px solid white;
padding:12px 24px;
text-decoration:none;
border-radius:6px;
color:white;
}

.btn-outline:hover{
background:white;
color:black;
}


/* SECCIONES */

section{
padding:80px 20px;
text-align:center;
}

section h2{
font-size:32px;
margin-bottom:40px;
font-family:'Poppins',sans-serif;
}


/* SERVICIOS */

.servicios-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1000px;
margin:auto;
}

.servicio{
background:#1a1a1a;
padding:30px;
border-radius:10px;
}

.servicio h3{
margin-bottom:10px;
font-size:20px;
}


/* COCHES */

.coches-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.coche{
background:#1a1a1a;
border-radius:10px;
overflow:hidden;
text-align:left;
}

.coche img{
width:100%;
max-height:420px;
object-fit:contain;
background:#111;
}
.coche h3{
padding:15px;
font-size:20px;
}

.coche p{
padding:0 15px 20px 15px;
color:#ccc;
}

.coche .btn{
display:block;
margin:15px;
text-align:center;
}


/* BOTON VER COCHES */

.btn-ver-coches{
display:inline-block;
margin-top:40px;
background:white;
color:black;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
}


/* UBICACION */

.ubicacion p{
margin-bottom:20px;
color:#ccc;
}


/* FOOTER */

footer{
background:#000;
padding:30px;
text-align:center;
color:#aaa;
font-size:14px;
}


/* HEADER SIMPLE */

.header-simple{
background:#111;
padding:40px;
text-align:center;
}

.header-simple a{
display:inline-block;
margin-top:10px;
color:white;
text-decoration:none;
}