/* ===========================================================
   Video Popup - midiacursos.com.br
   =========================================================== */

.vp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00543c;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.vp-btn:hover {
    background: #007a58;
}

.vp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.vp-overlay.vp-aberto {
    display: flex;
}

.vp-caixa {
    position: relative;
    width: 800px;
    max-width: 95vw;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.vp-caixa iframe {
    display: block;
    width: 100%;
    height: 450px;
    max-height: 80vh;
    border: none;
}

.vp-fechar {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}
