/* RESET */

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

body{
font-family:Arial, Helvetica, sans-serif;
}

/* HERO */

.hero{
height:100vh;
width:100%;
background:url('../img/hero.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
text-align:center;
color:white;
}

/* OSCURECER IMAGEN */

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
}

/* CONTENIDO HERO */

.hero-content{
position:relative;
z-index:2;
display:flex;
flex-direction:column;
align-items:center;
gap:25px;

/* ESTO SUBE TODO EL BLOQUE */
transform:translateY(-90px);
}

/* LOGO */

.logo{
width:560px;
max-width:90%;
}

/* BOTON */

.boton{
background:#25D366;
color:white;
text-decoration:none;
padding:18px 45px;
font-size:20px;
font-weight:600;
border-radius:8px;
transition:0.3s;
}

.boton:hover{
background:#1ebe5d;
}

/* FOOTER */

.footer{
position:fixed;
bottom:10px;
width:100%;
text-align:center;
font-size:14px;
color:#bbb;
}

.footer a{
color:white;
text-decoration:none;
font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

.hero-content{
transform:translateY(-60px);
gap:18px;
}

.logo{
width:340px;
}

.boton{
font-size:18px;
padding:16px 35px;
}

.footer{
font-size:12px;
}

}