section.block-video{
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    position: relative;
}
.block-video .video-grande{
    position: relative;
}
.inner-video .video-texto {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 11;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}
.block-video.video-si .video-texto{
    top: 25%;
}
.inner-video{
    position: relative;
}
.inner-video .texto {
    color: var(--wp--preset--color--white);
    margin: 0;
}
.item-video > img, .inner-video > img {
    border-radius: 0;
    height: 583px;
    object-fit: cover;
    width: 100%;
}

.block-video .icono-abrir-video{
    position: absolute;
    z-index: 10;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    cursor: pointer;
}
.inner-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 583px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
/* Modal */
.modal {
    position: fixed;
    z-index: 20;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal.open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
.modal-bg {
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
.modal-container {
    position: relative;
    z-index: 10;
    background: var(--bg);
    padding: 64px;
    border-radius: 20px;
}
.modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    outline: none;
    appearance: none;
    color: var(--text);
    background: none;
    border: 0px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 920px) {
    .inner-video > img {
        height: 475px;
        object-fit: cover;
    }
    .modal-container, .modal-container iframe {
        width: 100%;
    }
    .modal-container {
        padding: 44px;
    }
    .block-video .icono-abrir-video {
        top: 65%;
    }
    .video-texto h1 {
        padding: 0 20px;
    }
}