#bdsp-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.bdsp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

/* 💎 CENTRALIZAÇÃO INFALÍVEL */
.bdsp-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    max-width: 700px;
    z-index: 2;
}

.bdsp-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* botão fechar */
.bdsp-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
    .bdsp-content {
        width: 96%;
        max-width: 96%;
    }
}
