/* =======================================================
   🔧 1. RESET E CONFIGURAÇÕES GERAIS
======================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* =======================================================
   🟣 2. CABEÇALHO (HEADER)
======================================================= */
header {
    background: #5a2a6e;
    color: white;
    padding: 20px;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.logo {
    width: 200px;
}

.titulo-area h1 {
    font-size: 50px;
}
.titulo-area p {
    margin-left: 120px; /* empurra para a direita */
}

/* =======================================================
   🧭 3. MENU DE NAVEGAÇÃO
======================================================= */
.menu {
    background: #3d1c4f;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.menu a {
    color: white;
    padding: 12px 18px;
    text-decoration: none;
}

.menu a:hover {
    background: #7b3fa1;
}

/* Estilo dos links da navbar Bootstrap */
.navbar-nav .nav-link {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =======================================================
   🌄 4. SEÇÃO HERO (IMAGEM PRINCIPAL)
======================================================= */
.hero {
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url('hero.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

/* =======================================================
   📄 5. CONTEÚDO PADRÃO DAS SEÇÕES
======================================================= */
.content {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}

.dark {
    background: #f4f0f7;
}

/* =======================================================
   🧩 6. CARDS DE PROJETOS
======================================================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* =======================================================
   📊 7. SEÇÃO IMPACTO / NÚMEROS
======================================================= */
.impacto {
    background: #5a2a6e;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.numeros {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* =======================================================
   🖼 8. GALERIA DE FOTOS
======================================================= */
.galeria {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.grid-galeria img {
    width: 100%;
    border-radius: 8px;
}

/* =======================================================
   💜 9. SEÇÃO DOAÇÃO
======================================================= */
.doacao {
    background: #7b3fa1;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.botao-doacao {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: #7b3fa1;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* =======================================================
   ⚫ 10. RODAPÉ
======================================================= */
footer {
    text-align: center;
    padding: 20px;
    background: #3d1c4f;
    color: white;
}

/* =======================================================
   📱 11. RESPONSIVIDADE (CELULAR)
======================================================= */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 70px;
    }

    .titulo-area h1 {
        font-size: 18px;
    }

    .hero {
        padding: 50px 15px;
    }
}
