.alerta-golpe-modal {
    align-items: center;
    background: rgba(0, 0, 0, 0.72);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 9999;
}

.alerta-golpe-modal.is-open {
    display: flex;
}

.alerta-golpe-dialog {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    max-height: calc(100vh - 48px);
    max-width: min(92vw, 620px);
    overflow: hidden;
    position: relative;
}

.alerta-golpe-fechar {
    align-items: center;
    background: #e50000;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 24px;
    font-weight: 700;
    height: 42px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 42px;
    z-index: 1;
}

.alerta-golpe-fechar:hover,
.alerta-golpe-fechar:focus {
    background: #b90000;
    outline: 3px solid rgba(229, 0, 0, 0.25);
}

.alerta-golpe-imagem {
    display: block;
    height: auto;
    max-height: calc(100vh - 48px);
    max-width: 100%;
    width: auto;
}

@media (max-width: 576px) {
    .alerta-golpe-modal {
        padding: 12px;
    }

    .alerta-golpe-dialog {
        max-height: calc(100vh - 24px);
        max-width: 100%;
    }

    .alerta-golpe-fechar {
        height: 38px;
        right: 10px;
        top: 10px;
        width: 38px;
    }

    .alerta-golpe-imagem {
        max-height: calc(100vh - 24px);
    }
}
