.et_pb_section.dvsb-has-vimeo {
    position: relative !important;
    overflow: hidden !important;
    background-color: transparent !important; 
    /* Forzamos fondo transparente por si el usuario puso un color */
}

.dvsb-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Al fondo */
    pointer-events: none; /* CLICK THROUGH: Permite hacer clic en el contenido encima */
    overflow: hidden;
}

.dvsb-video-container iframe {
    position: absolute!important;
    top: 50%!important;
    left: 50%!important;
    width: 100vw!important;
    height: 56.25vw!important; /* 16:9 Aspect Ratio */
    min-height: 100%;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    opacity: 1;
}
.fluid-width-video-wrapper{
    height:100%
}
/* CORRECCIÓN DE Z-INDEX PARA DIVI */
/* Asegura que filas y módulos estén encima del video */
.et_pb_section.dvsb-has-vimeo > .et_pb_row,
.et_pb_section.dvsb-has-vimeo > .et_pb_module {
    position: relative;
    z-index: 2; /* Encima del video */
}

/* CORRECCIÓN PARA EL VISUAL BUILDER */
/* Asegura que los controles de edición de Divi no queden tapados */
.et-fb-root-ancestor .et_pb_section.dvsb-has-vimeo > .et_pb_row {
    z-index: 10 !important;
}