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

.modal-content {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    font-family: "Lato", Sans-serif;
    color: #282828;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.modal-content h2 {
    color: #0082C0;
    margin-top: 0;
    font-family: "Lato", Sans-serif;
    font-weight: 900;
}

.radio-group {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
}

#btn-confirmar-doacao {
    background: #0082C0;
    color: #FFF;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 11px;
    font-size: 20px;
    cursor: pointer;
    font-family: "Lato", Sans-serif;
    font-weight: bold;
}

#btn-confirmar-doacao:hover {
    background: #006b9e;
}
