.hero {
    background-image: url(../img/hero-mobile.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50rem;
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-contenido {
   padding: 10rem 0;
   margin-top: -5rem;

}
.hero__subtitulo{
    color: var(--color-turquesa);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
}
.hero__titulo{
    color: var(--color-principal);
    font-size: 3.2rem;
    font-weight: 900;
    margin: 0;
    max-width: 35rem;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(255, 255, 255, 1);
}
.hero__parrafo{
    color: var(--color-parrafos);
    font-size: 1.6rem;
    font-weight: 400;
    margin: 2rem 0 3rem 0;
    max-width: 40rem;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.95);
}
.hero-botones{
    max-width: 20rem;
}
@media (min-width: 768px) {
    .hero {
        background-image: url(../img/hero.jpg);
        min-height: 60rem;
        height: 80vh;
        max-height: 69rem;


    }
    .hero-contenido {
        margin-top: -10rem;
    }
    .hero__titulo{
        font-size: 5rem;
        max-width: 55rem;
    }
    .hero__parrafo{
        font-size: 1.8rem;
        max-width: 50rem;
    }
}

