/* =============== SOLO MÓVIL =============== */
@media (max-width: 768px) {
    .slider-movil-container {
        display: block;
        width: 100vw;
        height: 80dvh; /* Reducido de 80dvh a 75dvh */
        max-height: 670px; /* Límite máximo */
        top: 100px;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .slider-movil {
        display: flex;
        height: 100%;
        transition: transform 2s ease-in-out;
    }
    .slide-movil {
        width: 100vw;
        height: 100%;
        flex-shrink: 0;
    }
    .slide-movil img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .navigation-movil {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 5px;
        z-index: 10;
        box-sizing: border-box;
    }
    .navigation-movil button {
        background: rgba(0, 0, 0, 0.5);
        border: none;
        color: #fff;
        padding: 10px 16px;
        font-size: 22px;
        cursor: pointer;
        border-radius: 4px;
        transition: background 0.3s ease;
    }
    .navigation-movil button:hover {
        background: rgba(0, 0, 0, 0.8);
    }
}
/* Ocultar en pantallas grandes */
@media (min-width: 769px) {
    .slider-movil-container {
        display: none !important;
    }
}