
   .cms-video-wrapper {
    width: 100%;
    background: #000;
    overflow: hidden;
   
    position: relative;
}

/* VIDEO */
.cms-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.cms-video-wrapper.playing .playPauseBtn {
    opacity: 0;
}

.playPauseBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    font-size: 30px;
    color: var(--colorbasetexto);
    background-color: #00000066;
    padding: 24px 30px;
    border-radius: 500px;
}

/* 💻 ESCRITORIO */
@media (min-width: 768px) {
    .cms-video-wrapper {
        aspect-ratio: 16 / 9;
        max-height: none;
    }
}

/* 📱 MÓVIL (REELS STYLE) */
@media (max-width: 767px) {
    .cms-video-wrapper {
        aspect-ratio: 9 / 16;
        max-height: 80vh;
    }
}


    
