body{
font-family: Arial, Helvetica, sans-serif;
}

/* HERO */

.hero{
height:500px;
background:url("../img/carwash.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.hero::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
color:white;
max-width:700px;
}

.hero h2{
color:#ffd600;
font-weight:bold;
}

/* SERVICIOS */

.card{
border-radius:10px;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

/* IMAGEN SERVICIO */

.servicio-img{
border-radius:12px;
transition:0.3s;
}

.servicio-img:hover{
transform:scale(1.05);
}

/* FOOTER */

footer{
padding:20px;
margin-top:30px;
}