.video-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Desktop */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}


/* Ajuste para móviles */
@media (max-width: 768px) {
    .video-section {
        height: auto;
        /* Deja que el video ajuste su altura */
    }

    .video-section video {
        position: relative;
        height: auto;
        object-fit: contain;
        /* Muestra el video completo */
    }
}