.menu-fixed:is(.active) {
    background-color: transparent !important;
}

/*Empresas section*/


.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.video-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.video-popup-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 20px;
}

.video-popup-content {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
}

.video-popup-close:hover {
    background: #fff;
    transform: scale(1.1);
}

.video-popup-close svg {
    width: 20px;
    height: 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-popup-container {
        width: 95%;
        margin: 10px;
    }

    .video-popup-close {
        top: -35px;
        right: 0;
        width: 35px;
        height: 35px;
    }

    .video-popup-close svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .video-popup-container {
        width: 98%;
        margin: 5px;
    }

    .video-popup-close {
        top: -30px;
        width: 30px;
        height: 30px;
    }

    .video-popup-close svg {
        width: 16px;
        height: 16px;
    }
}

/* Prevent body scroll when popup is open */
body.popup-open {
    overflow: hidden;
}

.btn-play {
    cursor: pointer !important;
}