/* Container centralizado e espaçado */
.container_donate {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
}

/* Quadrados de doação */
.square_donate {
    background-color: #1e1e1e;
    border: 2px solid #00bfff;
    border-radius: 12px;
    width: 300px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    margin-bottom: 00px;
    margin-top: 00px;
}

/* Efeito hover */
.square_donate:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.7);
}

/* Texto dentro dos quadrados */
.TXT_doacao_botao {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}


.donate_image {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}