.info__slideshowContainer {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5vw;
}

.info__imageSlides {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(0.8);
    /* Inicia con una escala reducida */
    object-fit: contain;
    width: 70%;
}

/* Cuando la imagen es visible */
.info__imageSlides.visible {
    opacity: 1;
    transform: scale(1);
    /* Animación para expandir la imagen */
    transition: opacity 1s ease-in-out, transform 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    /* Efecto elástico */
}

.info__imageSlides:not(.visible) {
    transform: scale(0.5);
    /* Al desaparecer, la imagen se reduce de tamaño */
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.info-description--mobile {
    display: none;
}

#info-footer-mobile {
    display: none;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
    .info__slideshowContainer {
        padding: 0;
        height: 38vh;
    }

    #info-footer-desktop {
        display: none;
    }

    .info-description--mobile {
        display: block !important;

    }

    #info-title--mobile {
        display: flex;
        flex-direction: column;
        gap: 6vw;
    }

    #press-container {
        min-height: calc(100lvh - 13.33333vw - 18.66667vw);

    }

    #press-slider {
        padding: 0
    }

    .flex-1 {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        flex: 1;
    }

    .content__left--store {
        display: flex;
        gap: 6vw;
        align-self: start;
    }

    #info-container-mobile {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        min-height: calc(100lvh - 13.33333vw - 18.66667vw);
    }

    #info-footer-mobile {
        display: flex !important;
        width: 100%;
    }

    #info-footer-mobile div {
        width: 100%;
    }

    .info-description--desktop {
        display: none !important;
    }

    .info__imageSlides {
        width: 100%;
    }
}