/* Adicionando a barra de progresso e outros estilos */
.barra-progresso {
    margin-top: 30px;
    text-align: center;
}

.progress-container {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 10px;
    height: 30px;
    margin: 10px 0;
}

.progress-bar {
    height: 100%;
    background-color: #ff69b4;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.progresso-texto {
    font-size: 1.2rem;
    font-weight: bold;
}

.progresso-texto span {
    margin: 0 10px;
}

/* Estilo adicional para o resto da página */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Alterado para Poppins */
    
    background: linear-gradient(45deg, #8a2be2, #ff69b4);
    color: #fff;
    min-height: 100vh;
}

.container {
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

h1 {
    font-family: 'Dancing Script', cursive; /* Alterado para Dancing Script */
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 600; /* Ajustado para um estilo mais elegante */
}

.subtitulo {
    font-size: 1.2rem;
    font-weight: 400;
}

.total-arrecadado, .ultimas-contribuicoes {
    margin: 20px 0;
}

.valor {
    font-size: 4.5rem;
    font-weight: bold;
    color: #ffd700;
}

button {
    background-color: #ff69b4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

button:hover {
    background-color: #8a2be2;
}

footer {
    margin-top: 40px;
}

footer input {
    padding: 10px;
    margin-right: 10px;
    border-radius: 5px;
    border: none;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

form input {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    width: 300px;
}

form button {
    padding: 12px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    background-color: #8a2be2;
    border: none;
    color: white;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

form button:hover {
    background-color: #ff69b4;
}

.contribuicao {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
}

.nome {
    font-weight: bold;
}

.descricao, .valor, .data {
    font-style: italic;
}


.valorp {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}
