/* Estilos Básicos e Responsividade Global */
:root {
    --primary-color: #003366; /* Azul escuro elegante */
    --secondary-color: #d4af37; /* Dourado/Mostarda */
    --text-color: #333333;
    --bg-color: #f8f9fa;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
body {
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: var(--primary-color);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Cabeçalho e Navegação */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1200px;
    margin: auto;
}

/* AQUI ESTÃO OS NOVOS ESTILOS PARA A LOGO */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-image {
    max-height: 50px; /* Um tamanho bom para o cabeçalho fixo */
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-links li a {
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links li a:hover {
    color: var(--secondary-color);
}

/* Seção Principal (Hero) */
.hero {
    /* AQUI ESTÁ A MUDANÇA: Usando o arquivo local hero.jpg */
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('hero.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

/* Seções de Conteúdo */
section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: auto;
}
h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.2rem;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}
.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Destaque Doações */
.donate-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 50px 20px;
    margin-top: 40px;
}
.donate-section h2 {
    color: white;
}

/* Rodapé */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}
.social-links {
    margin-top: 20px;
}
.social-links a {
    color: var(--secondary-color);
    margin: 0 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2rem;
    }
}
/* Seletor de Idiomas (Bandeiras) */
.lang-switcher {
    display: flex;
    gap: 15px;
    font-size: 1.5rem; /* Deixa as bandeiras maiores */
    margin-left: 20px;
}
.lang-switcher a {
    text-decoration: none;
    transition: transform 0.2s;
}
.lang-switcher a:hover {
    transform: scale(1.2); /* Efeito de crescer ao passar o mouse */
}