/* --- GERAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #f9f9f9;
    color: #3a3a3a;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- HEADER --- */
header {
    background-color: white;
    padding: 1rem 0;
    border-bottom: 1px solid #dfdfdf;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    background-color: transparent;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO --- */
.hero {
    text-align: center;
    padding: 2rem 0;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #282828;
    margin-bottom: 0.5rem;
}

.campaign-author, .campaign-date {
    color: #8a8a8a;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.btn-doar-principal {
    display: inline-block;
    background-color: #24ca68;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
}

.btn-doar-principal:hover {
    background-color: #009d4e;
}

/* --- HISTÓRIA --- */
.historia {
    padding: 2rem 0;
    border-top: 1px solid #dfdfdf;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #282828;
    margin-bottom: 1rem;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #282828;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.historia p, .historia ul {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.historia ul {
    list-style-position: inside;
}

/* --- DOAÇÃO --- */
.doacao {
    padding: 2rem 0;
    border-top: 1px solid #dfdfdf;
}

.progresso {
    text-align: center;
    margin-bottom: 2rem;
}

.barra-progresso {
    background-color: #dfdfdf;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progresso-atual {
    background-color: #24ca68;
    height: 100%;
}

.valores-rapidos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.valor-btn {
    background-color: #f1f0f0;
    border: 2px solid #dfdfdf;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.valor-btn:hover {
    border-color: #24ca68;
}

.valor-btn.active {
    background-color: #009d4e;
    color: white;
    border-color: #009d4e;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input[type="number"], input[type="text"], textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-group input {
    margin-right: 0.5rem;
}

.btn-doar-final {
    width: 100%;
    background-color: #24ca68;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-doar-final:hover {
    background-color: #009d4e;
}

.pagamento-seguro {
    text-align: center;
    font-size: 0.8rem;
    color: #8a8a8a;
    margin-top: 1rem;
}

/* --- FOOTER --- */
footer {
    background-color: #3a3a3a;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem;
    }

    .valores-rapidos {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* --- BOTÃO DE DOAÇÃO NA SEÇÃO --- */
.btn-doar-secao {
    display: inline-block;
    width: 100%;
    background-color: #24ca68 !important;
    color: white !important;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    text-align: center;
    margin: 1.5rem 0;
    transition: background-color 0.3s;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-doar-secao:hover {
    background-color: #009d4e !important;
    text-decoration: none !important;
}

.btn-doar-secao:visited {
    color: white !important;
    text-decoration: none !important;
}

/* Remover estilos padrão de links */
a {
    color: inherit;
    text-decoration: inherit;
}

/* --- RODÁPÉ --- */
footer {
    background-color: #1a2332;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    display: none;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    background-color: transparent;
}

.footer-message {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

.footer-bottom {
    background-color: #1a2332;
    color: #8a8a8a;
    text-align: center;
    padding: 0;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
} 
);    }
}
