/* Base para modais */
.conteiner_modal{
    position: fixed;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center; 
    align-items: center;
    display: none;
    z-index: 999;
}

.card_modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    background-color: #D9CDBF;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.card_modal_caabecalho{
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: FoundersGrotesk, sans-serif;
}

.modal_card_mesagem{
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    font-family: FoundersGrotesk, sans-serif;
}

.modal_card_mesagem span{
    font-size: 18px;
}

.modal_card_form{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: start;
}

.modal_card_acoes{
    display: flex;
    justify-content: center;
    width: 80%;
    gap: 10px;
    margin: 15px 0;
}

.modal_card_acoes button{
    font-size: 18px;
}

@media (max-width: 764px) {
    .card_modal{
        min-width: 90%;
        max-width: 95%;
    }
}

