/* Modal vídeo tamanho fixo 800x800px */
    .modal-video-800 .modal-dialog {
        max-width: 800px;
        width: 100%;
        height: 800px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal-video-800 .modal-content {
        width: 800px;
        height: 800px;
        border-radius: 12px;
        background: #000;
        display: flex;
        flex-direction: column;
    }
    .modal-video-800 .modal-header {
        background: #111;
        color: #fff;
        border-bottom: 1px solid #222;
        padding: 0.5rem 1rem;
    }
    .modal-video-800 .modal-title {
        font-size: 1.1rem;
        color: #fff;
    }
    .modal-video-800 .modal-body {
        flex: 1 1 auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
    }
    .modal-video-800 .video-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal-video-800 iframe {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        background: #000;
    }
@media (max-width: 900px) {
    .modal-video-800 .modal-dialog,
    .modal-video-800 .modal-content {
        max-width: 100vw !important;
        width: 100vw !important;
        height: 80vh !important;
        min-width: 0;
        min-height: 0;
        border-radius: 0 !important;
    }
    .modal-video-800 .modal-header,
    .modal-video-800 .modal-body {
        border-radius: 0 !important;
    }
    .modal-video-800 .video-wrapper {
        height: 60vw;
        min-height: 200px;
        max-height: 60vw;
    }
    .modal-video-800 iframe {
        height: 100%;
        min-height: 200px;
        max-height: 60vw;
    }
}
@media (max-width: 540px) {
    .modal-video-800 .modal-dialog,
    .modal-video-800 .modal-content {
        max-width: 100vw !important;
        width: 100vw !important;
        height: 60vw !important;
    }
    .modal-video-800 .video-wrapper {
        height: 50vw;
        min-height: 160px;
        max-height: 50vw;
    }
    .modal-video-800 iframe {
        height: 100%;
        min-height: 160px;
        max-height: 50vw;
    }
}