@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');


/* FUNDO ALFA MODAL */
.modal-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* CAIXA MODAL BACKGROUND */
.modal-info-background {
    background: #fff;
    border-radius: 16px;
    //width: 360px;
    //height: 200.0010070800781;
    padding: 12px 20px;
    padding-top: 0px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CONTAINER BTN FECHAR */
.modal-info-header-btn-fechar {
    text-align: right;
}

/* BTN FECHAR  */
.modal-info-btn-fechar {
    font-size: 20px;
    cursor: pointer;
    color: #4F70A6;
}

/* ICONE DO MODAL */
.modal-info-icon {
    width: 50px;
    height: 50px;

}



/* CONTAINER BTN OK */
.modal-info-footer-btn-ok {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

/* BOTAO OK */
.modal-info-btn-ok {
    background-color: #4F70A6;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 80px;
    /* limita o tamanho máximo */
    height: auto;
    padding: 8px 12px;
    /* controla altura automaticamente */
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    /* responsivo */
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.modal-info-btn-ok:hover {
    background-color: #283853;

}



/* MENSAGEM DO MODAL */
.modal-info-mensagem {
    color: #666;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/* POP UP MODAL PERGUNTA */
.icon-pergunta-popup {
    width: 112px;
    height: 112px;
}

.texto-popup-pergunta-msg{
    font-size: 20px;
}


