/* Cartão base da modal */
.popup-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    position: relative;
}

/* Botão fechar posicionado */
.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    filter: invert(0);
    opacity: 0.8;
}

.popup-close:hover {
    opacity: 1;
}

/* Título e descrição */
.popup-title {
    font-weight: 800;
    line-height: 1.15;
}

.popup-desc {
    font-size: 1.05rem;
    color: #333333;
}

/* Lado da imagem */
.popup-media {
    min-height: 320px;
    background: #f6f7f9;
}

.popup-placeholder {
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #f0f2f5,
        #f0f2f5 10px,
        #e9ecf1 10px,
        #e9ecf1 20px
    );
    color: #7a838f;
    font-weight: 600;
}

/* Botão principal */
.popup-btn {
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Ajustes responsivos */
@media (max-width: 991.98px) {
    .popup-card {
        border-radius: 16px;
    }

    .popup-media {
        min-height: 200px;
    }
}
