/* RESET */

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

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


/* HERO */

.hero{
background:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
background:#111;
background-size:cover;
background-position:center;
padding:120px 20px;
text-align:center;
}

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

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


/* BOTONES */

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

.btn{
background:white;
color:black;
padding:12px 28px;
border-radius:6px;
text-decoration:none;
font-weight:500;
}

.btn-outline{
border:2px solid white;
color:white;
padding:10px 26px;
border-radius:6px;
text-decoration:none;
transition:0.3s;
}

.btn-outline:hover{
background:white;
color:black;
transform:translateY(-3px);
}


/* SECCIONES */

section{
padding:80px 20px;
max-width:1100px;
margin:auto;
}

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


/* SERVICIOS */

.servicios-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.servicio{
background:#1b1b1b;
padding:25px;
border-radius:10px;
text-align:center;
transition:0.3s;
cursor:pointer;
}

.servicio:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.5);
}

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


/* MARCAS */

.marcas-grid{
display:flex;
flex-wrap:wrap;
gap:20px;
justify-content:center;
font-size:20px;
}

.marcas-grid span{
background:#1b1b1b;
padding:12px 20px;
border-radius:8px;
}


/* UBICACION */

.ubicacion{
text-align:center;
}

.ubicacion p{
margin-bottom:20px;
font-size:18px;
}


/* FOOTER */

footer{
text-align:center;
padding:30px;
background:#111;
margin-top:60px;
}

/* HERO */

.hero{
position:relative;
overflow:hidden;
}

/* MOTO ANIMADA */

.moto-animada{
position:absolute;
bottom:30px;
left:-100px;
font-size:40px;
color:white;
animation:motoMover 8s linear infinite;
}

@keyframes motoMover{

0%{
left:-120px;
transform:rotate(-10deg);
}

10%{
transform:rotate(0deg);
}

90%{
transform:rotate(0deg);
}

100%{
left:110%;
transform:rotate(5deg);
}

}
/* HERO */

.hero{
position:relative;
overflow:hidden;
}

/* MOTO ANIMADA */

.moto-animada{
position:absolute;
bottom:30px;
left:-100px;
font-size:40px;
color:white;
animation:motoMover 8s linear infinite;
}

@keyframes motoMover{

0%{
left:-100px;
}

100%{
left:110%;
}

}
