 .btn-ajuda-maxima{
        background-color: #0987D2;
        color: white;
        align-items: center;
        cursor: pointer;
        border: 1px solid white;
        border-radius: 10px;
        padding: 5px;
        width: 100%;
        font-weight: bold;
        
    }

    .valor-total-doado{
    		    color: #11c811;
    		    font-weight: 700;
    		}
    		
    		.pulse {
        display: inline-block;
        animation: pulse-animation 1.5s infinite;
        transition: transform 0.3s ease-in-out;
    }
    
    @keyframes pulse-animation {
        0% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.7;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
/* Estilização do Botão Fechar */
		.fechar-modal {
        position: absolute;
        top: 10px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: white;
    }
    
    .fechar-modal:hover {
        color: white;
    }


		  /* Overlay preto */
		  #overlay-doador {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
			z-index: 9;
			font-family: 'Poppins';

        }

        /* Estilização do Modal */
        #modal-doador {
            background: white;
            width: 90%;
            max-width: 400px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            font-family: Arial, sans-serif;
        }

        /* Ícone do coração */
        .icon {
            font-size: 5px;
            color: red;
        }

        /* Texto do modal */
        .modal-text {
            font-size: 16px;
            margin: 15px 0;
			font-family: "Poppins";
        }

        .bold {
            font-weight: bold;
        }

        .highlight {
            font-weight: bold;
            font-size: 18px;
        }

        /* Botões */
        .btn {
            display: block;
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            font-size: 16px;
            margin-top: 10px;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: #10c44c;
            color: white;
        }

        .btn-secondary {
            color: #10c44c;
            text-decoration: underline;
            background: none;
        }
#notifications-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  z-index: 9999;
}

.notification {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 25px;
  padding: 10px 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: slideIn 0.4s ease, fadeOut 0.5s ease 3.5s forwards;
  font-family: sans-serif;
  border: 1px solid #e2e2e2;
}

.notification img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
}

.notification .text {
  display: flex;
  flex-direction: column;
}

.notification .text .name {
  color: #1abc9c;
  font-weight: bold;
}

.notification .text .message {
  font-size: 14px;
  color: #333;
}

@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateX(-20%); }
}
    .gerando-contribuicao {
        position: fixed; /* Fixa a div em relação à viewport */
        top: 0; /* Alinha ao topo da viewport */
        left: 0; /* Alinha à esquerda da viewport */
        width: 100%; /* Largura total */
        height: 100vh; /* Altura total da viewport */
        margin: 0px;
        display: none; /* Inicia oculta */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: white;
        z-index: 1000; /* Garante que esteja no topo */
    }

    .spinner-loading {
        border: 16px solid #f3f3f3; /* Cor de fundo */
        border-top: 16px solid #0987D2; /* Cor do spinner */
        border-radius: 50%;
        width: 80px;
        height: 80px;
        animation: spin 2s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .gerando-contribuicao h3 {
        font-size: 15pt;
        text-align: center;
        color: #0987D2;
        margin-top: 20px; /* Espaço entre o spinner e o texto */
    }

    .img-logo {
        width: 100px;
        margin-top: 50px;
    }

    .logo-div {
        display: flex;
        justify-content: center; /* Centraliza a logo horizontalmente */
        width: 100%; /* Faz a div ocupar a largura toda */
    }
    .donation-buttons button.elementoGeracao {
    display: block;
    background: #0987D2;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 0;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
    border: none;
    width: 100%;
    cursor: pointer;
}

.donation-buttons button.elementoGeracao:hover {
    background: #24CA68;
}
