

.parallax {
    min-height: 40em;
    height: 100vh;
    overflow: hidden;
    position: sticky;
    top: 0;
}

.images {
    height: 100vh;
    overflow: hidden;

}

.images img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
}

.img1 {
    z-index: 4;
    filter: drop-shadow(0 0 4em #2c2e13);
}

.img2 {
    z-index: 3;
}

.img3 {
    z-index: 2;
}

.img4 {
    z-index: 1;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.3em;
    position: absolute;
    top: 33%;
    left: 50%;
    width: 90%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    text-align: center;
}





@media screen and (max-width: 600px) {
    .title {
        font-size: 3em;
    }


}

/* Esconde la imagen para móviles en orientación horizontal y muestra la de escritorio */
@media (orientation: landscape) {
    #imgMobile {
        display: none !important;
    }
    #imgDesktop1 {
        display: block !important;
    }
    
}