/* Header Section Video */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* móviles */
@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }

    .mobile-video {
        position: absolute;
        display: block;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        position: absolute;
        top: 53%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .cultura {
        top: 71%;
    }

    .gastronomia {
        top:0%;
    }
    
    .naturaleza {
        top: 0%;
    }

    .solyplaya {
        top: 0%;
    }

    .deporte {
        top: 3%;
    }

}

/* escritorio */
@media (min-width: 769px) {
    .desktop-video {
        position: absolute;
        width: 100vw; /* Cambia a 100vw para escalar con el zoom */
        height: 100vh; /* Cambia a 100vh para escalar con el zoom */
        object-fit: cover; /* Para asegurarse de que el video cubra todo el contenedor */
        position: absolute;
        top: 42%; /* Centrará el video verticalmente */
        left: 50%;
        transform: translate(-50%, -50%); 
    }

    .cultura {
        top: 75%;
    }

    .gastronomia {
        top: -29%;
    }

    
    .naturaleza {
        top: -17%;
    }

    .solyplaya {
        top: -20%;
    }
}
