#consentimentoModal {
    display: none;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-family: sans-serif;
}

.modal-content h2 {
    margin-bottom: 1rem;
}

.modal-content input {
    padding: 8px;
    width: 80%;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.modal-content .mensagem {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.modal-content .botoes button {
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.modal-content .botoes button:first-child {
    background-color: #007bff;
    color: white;
}

.modal-content .botoes button:last-child {
    background-color: #dc3545;
    color: white;
}