@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,200;10..48,300&display=swap');

/*
 * RESET E CONFIGURAÇÕES GLOBAIS
 * - Uso de 'box-sizing: border-box' é crucial para responsividade.
 */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box; /* Essencial para responsividade */
}

body{
    background:white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: rgb(29, 92, 32);
    min-height: 100vh;
    font-family: 'Bricolage Grotesque', sans-serif;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

/* =========================================
   HEADER (CABEÇALHO)
   ========================================= */
header {
    padding: 20px 0;
}

.container-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.titulo h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.titulo img {
    width: 40px;
    height: auto;
}


/* =========================================
   NAVBAR (NAVEGAÇÃO)
   ========================================= */
.navbar {
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    position: sticky; /* Menu fixa no topo ao rolar */
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3); /* Fundo sutil */
    backdrop-filter: blur(5px);
}

.menu {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.menu li {
    position: relative;
}

.menu li a {
    display: block;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    color: #fff;
}

.menu li a:hover {
    background-color: #88B04B; /* Verde destaque */
    color: #1A3626;
    border-color: #88B04B;
    transform: translateY(-2px);
}

/* Dropdown (Peixes) */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(20, 66, 28, 0.9);
    min-width: 150px;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 101;
}

.services:hover .dropdown {
    display: block;
}

.dropdown li a {
    background: none;
    border: none;
    text-align: center;
    margin-bottom: 5px;
}

/* Esconde checkbox e ícone no desktop */
#menu-toggle, .menu-icon {
    display: none;
}

/* --- ESTILO DO SEU BANNER ORIGINAL --- */
.container_img_inicial {
    /* Imagem de fundo do banner (Exemplo: Savana) */
    background-image: url('https://img.freepik.com/fotos-gratis/nascer-do-sol-sobre-as-montanhas_23-2152014214.jpg?semt=ais_hybrid&w=740&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh; /* Altura de 80% da tela */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.text_inicial h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    width: 80%;
    margin-left: 4rem;
}

.text_inicial h2 {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    width: 80%;
    margin-left: 4rem;
}



/* Botão estilizado */
.btn-destaque {
    padding: 12px 30px;
    background-color: #2ecc71; /* Verde natureza */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    transition: background 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-destaque:hover {
    background-color: #27ae60;
}

/* --- ESTILO DA NOVA SEÇÃO QUEM SOMOS --- */
.quem-somos {
    padding: 80px 20px;
    background-color: #f4f4f4; /* Fundo cinza bem clarinho */
}

.container-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; /* Aqui está a mágica do lado a lado */
    align-items: center; /* Centraliza verticalmente */
    gap: 50px; /* Espaço entre texto e imagem */
}

/* Configuração do Texto */
.quem-somos-texto {
    flex: 1; /* Ocupa metade do espaço */
}

.quem-somos-texto h2 {
    color: #27ae60;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.quem-somos-texto h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quem-somos-texto p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Configuração da Imagem */
.quem-somos-img {
    flex: 1; /* Ocupa a outra metade */
}

.quem-somos-img img {
    width: 100%;
    border-radius: 15px; /* Bordas arredondadas */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Sombra suave */
    transition: transform 0.3s ease;
}

.quem-somos-img img:hover {
    transform: scale(1.02); /* Leve zoom ao passar o mouse */
}

/* --- RESPONSIVIDADE (Para Celulares) --- */
@media (max-width: 768px) {
    .text_inicial h1 { font-size: 2rem; }
    
    .container-flex {
        flex-direction: column; /* Empilha um embaixo do outro */
    }
    
    .quem-somos-texto, .quem-somos-img {
        width: 100%;
        text-align: center;
    }
}

/* --- ESTILO DA NOVA SEÇÃO EQUIPE (DONO E GERENTE) --- */
.nossa-equipe {
    padding: 60px 20px;
    background-color: #ffffff; /* Fundo branco para destacar */
    text-align: center;
}

.container-equipe {
    max-width: 1200px;
    margin: 0 auto;
}

.nossa-equipe h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 50px;
    border-bottom: 3px solid #2ecc71; /* Linha de destaque verde */
    display: inline-block;
    padding-bottom: 5px;
}

.membros-wrapper {
    display: flex; /* Layout lado a lado */
    justify-content: center;
    gap: 30px; /* Espaço entre os cards */
    flex-wrap: wrap; 
}

.membro-card {
    flex: 1; /* Distribui o espaço igualitariamente */
    min-width: 280px; 
    max-width: 450px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.membro-card:hover {
    transform: translateY(-5px); /* Efeito de elevação ao passar o mouse */
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.membro-foto {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Foto redonda */
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #2ecc71; /* Borda verde */
}

.membro-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.membro-info .cargo {
    color: #27ae60;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 600;
}

.membro-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* --- RESPONSIVIDADE ADICIONAL (Para Celulares) --- */
@media (max-width: 600px) {
    .membros-wrapper {
        flex-direction: column; /* Empilha os cards em telas pequenas */
        align-items: center;
    }
    .membro-card {
        max-width: 90%;
    }
}

/* --- ESTILO DA NOVA SEÇÃO MISSÃO, VISÃO E VALORES (MVV) --- */
.mvv-section {
    padding: 80px 20px;
    background-color: #f7fff7; /* Um verde/bege bem sutil, de natureza */
    text-align: center;
}

.container-mvv {
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.mvv-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; 
}

.mvv-card {
    flex: 1; /* Ocupa espaço igual */
    min-width: 250px;
    background-color: white;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    text-align: left;
    border-bottom: 5px solid transparent; /* Para o destaque de cor */
}

/* Cores de destaque para cada card */
.mvv-card.missao { border-bottom-color: #2ecc71; }
.mvv-card.visao { border-bottom-color: #3498db; }
.mvv-card.valores { border-bottom-color: #e67e22; }

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-icone {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.mvv-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.mvv-card p, .mvv-lista-valores {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.mvv-lista-valores {
    list-style: none; /* Remove bolinhas padrão */
    padding-left: 0;
    margin-top: 15px;
}

.mvv-lista-valores li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.mvv-lista-valores li::before {
    content: "✅"; /* Novo marcador visual */
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .mvv-wrapper {
        justify-content: center;
    }
    .mvv-card {
        max-width: 45%; /* Dois cards por linha */
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .mvv-wrapper {
        flex-direction: column; /* Um card por linha no celular */
        align-items: center;
    }
    .mvv-card {
        max-width: 90%;
    }
}

/* --- ESTILO DA NOVA SEÇÃO NOSSOS SERVIÇOS (4 CARDS) --- */
.nossos-servicos {
    padding: 80px 20px;
    background-color: #eaf7ed; /* Um verde bem claro e suave */
    text-align: center;
}

.container-servicos {
    max-width: 1200px;
    margin: 0 auto;
}

.nossos-servicos h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.servicos-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; /* Permite quebrar a linha em telas menores */
}

.servico-card {
    flex: 1; /* Garante que cada card ocupe o mesmo espaço */
    min-width: 200px; /* Tamanho mínimo para não achatar */
    max-width: 280px;
    background-color: white;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.servico-card:hover {
    transform: translateY(-8px); /* Card sobe levemente no hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icone-servico {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.servico-card h3 {
    font-size: 1.3rem;
    color: #2ecc71; /* O verde de destaque */
    margin-bottom: 15px;
}

.servico-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* --- RESPONSIVIDADE PARA 4 CARDS --- */
@media (max-width: 992px) {
    .servicos-wrapper {
        justify-content: center; /* Centraliza quando os cards quebram */
    }
    .servico-card {
        min-width: 45%; /* Mostra 2 cards por linha */
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .servicos-wrapper {
        flex-direction: column; /* Empilha 1 card por linha no celular */
        align-items: center;
    }
    .servico-card {
        max-width: 90%;
    }
}
/* --- ESTILO DA NOVA SEÇÃO PARCEIROS E APOIO --- */
.secao-parceiros {
    padding: 80px 20px;
    background-color: #f7f7f7; /* Fundo cinza suave */
    text-align: center;
}

.container-parceiros {
    max-width: 1200px;
    margin: 0 auto;
}

.secao-parceiros h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.parceiros-descricao {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.parceiros-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Garante que os parceiros quebrem a linha */
    gap: 30px;
    margin-bottom: 50px;
}

.parceiro-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
    flex-basis: 200px; /* Define uma base para cada item */
}

.parceiro-link:hover {
    color: #2ecc71; /* Destaca a cor no hover */
    transform: scale(1.05);
}

.parceiro-logo {
    width: 100%;
    max-width: 150px; 
    height: auto;
    object-fit: contain; /* Garante que a imagem se ajuste bem */
    margin-bottom: 10px;
    opacity: 0.8; /* Suaviza o logo */
    transition: opacity 0.3s;
}

.parceiro-link:hover .parceiro-logo {
    opacity: 1; /* Aumenta a opacidade no hover */
}

/* Botão de chamada para ação (CTA) */
.btn-parceiros {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2ecc71;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-parceiros:hover {
    background-color: #27ae60;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .parceiros-wrapper {
        justify-content: center;
    }
    .parceiro-link {
        flex-basis: 40%; /* 2 parceiros por linha no tablet */
        margin-bottom: 20px;
    }
}

/* MANTENHA TODO O SEU CSS ANTERIOR AQUI */
/* (Copiando apenas a parte de doação modificada para o exemplo) */

.secao-doacao {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
    
}

.container-doacao {
    max-width: 900px;
    margin: 0 auto;
}
.container-doacao p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 40px;
}

/* Estilo para destacar o card do Vakinha */
.vakinha-destaque {
    border-top: 5px solid #27ae60 !important;
    margin-bottom: 40px;
    padding: 40px !important;
    background-color: #f0fff4 !important; /* Um verde muito suave de fundo */
    margin-top: 10%;
}

.doacao-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.doacao-metodo {
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

/* Reutilizando seu botão verde */
.btn-destaque {
    padding: 15px 40px;
    background-color: #2ecc71;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px; /* Botão mais arredondado */
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    cursor: pointer;
    
}

.btn-destaque:hover {
    background-color: #27ae60;
    transform: scale(1.05);
}

.espaco-qrcode {
    margin: 20px auto;
    width: 180px;
    height: 180px;
    background-color: #eee;
}

.espaco-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dados-bancarios-lista {
    list-style: none;
    padding: 0;
    text-align: left;
    line-height: 1.8;
}

/* Responsividade para celulares */
@media (max-width: 768px) {
    .doacao-wrapper {
        flex-direction: column;
    }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .doacao-wrapper {
        flex-direction: column; /* Empilha os métodos de doação */
    }
    .doacao-metodo {
        margin-bottom: 30px;
    }
    .bancario {
        text-align: center; /* Centraliza a lista de dados bancários no celular */
    }
    .dados-bancarios-lista li {
        text-align: center;
    }
}

/* =========================================
   FOOTER (RODAPÉ) - Estilo Floresta
   ========================================= */
footer {
    background-color: #2B543C;
    color: #E0D4B8;
    padding: 60px 0 0;
    font-family: 'Lora', serif;
    border-top: 5px solid #88B04B;
    margin-top: 80px;
}

.container-floresta {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.coluna-contato, .coluna-navegacao, .coluna-legal-social {
    flex: 1;
    min-width: 280px;
    
}
.coluna-navegacao li{
    list-style-type: none;
}


footer h4 {
    color: #fff;
    border-bottom: 2px solid #88B04B;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

footer a {
    color: #A4CC68;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.newsletter-signup input[type="email"] {
    padding: 5px;
    border-radius: 5px 5px;
    background-color: #f5f5dc;
    width: 70%;
}
.newsletter-signup textarea {
    padding: 30px;
    border-radius: 5px;
    background-color: #f5f5dc;
    width: 70%;
}

.newsletter-signup button {
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    background-color: #88B04B;
    color: #1A3626;
    font-weight: bold;
    cursor: pointer;
    width: 25%;
}
.newsletter-signup label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.copyright-bar {
    background-color: #1A3626;
    color: #88B04B;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}