/* ===== POPUP OVERLAY ===== */
#bz-popup-off-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#bz-popup-off-overlay.bz-popup-off-visible {
    display: flex;
    animation: bzOffFadeIn 0.3s ease;
}

@keyframes bzOffFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ===== POPUP BOX ===== */
#bz-popup-off-box {
    position: relative;
    max-width: 480px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: bzOffSlideUp 0.3s ease;
}

@keyframes bzOffSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* ===== IMAGEM ===== */
#bz-popup-off-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== BOTÃO FECHAR ===== */
#bz-popup-off-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease;
}

#bz-popup-off-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
    #bz-popup-off-box {
        max-width: 340px;
        border-radius: 12px;
    }
}
