/* Paleta de cores para um design rústico e elegante */
:root { /* Define variáveis de cor (atalhos) para facilitar a manutenção */
    --primary-color: #556B5C; /* Verde Oliva Escuro */
    --secondary-color: #FAF5E8; /* Bege Claro Quente */
    --accent-color: #AD7D66; /* Marrom Terracota (para CTAs) */
    --text-color: #3C3C3C; /* Marrom Escuro Suave */
    --light-text-color: #F9F7F3;
    --background-color: #F0EEE4; 
}

/* RESET e Estrutura Básica */
* { box-sizing: border-box; margin: 0; padding: 0; } /* Reseta margens/paddings */
html { scroll-behavior: smooth; } /* Rolagem suave */
body { 
    font-family: 'Roboto', sans-serif; 
    color: var(--text-color); 
    background-color: var(--background-color); 
    line-height: 1.6; 
}
.container { 
    max-width: 1200px; 
    margin: 0 auto; /* Centraliza */
    padding: 0 20px; 
} 

/* Estilos da Seção Principal (Hero - A primeira dobra) */
.hero {
    background-color: var(--primary-color); 
    background-image: url('capa.png'); /* Imagem de fundo principal */
    background-size: cover; 
    background-position: center; 
    color: var(--light-text-color); 
    height: 100vh; /* Ocupa a altura total da tela */
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    position: relative;
}

/* Estilos da Barra de Navegação */
.navbar { 
    position: absolute; top: 0; left: 0; width: 100%; 
    background: rgba(85, 107, 92, 0.7); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 20px; 
}

/* ESTILO PARA O LOGO (CORRIGIDO!) */
.logo-container { display: flex; align-items: center; }

/* 🏆 CORREÇÃO FINAL: Define o tamanho máximo para o logo para ele não estourar o layout */
.logo-img { 
    height: 70px; /* Tamanho padrão de 70px (pode ajustar se precisar) */
    width: auto;
} 

.logo-text { display: none; } /* Oculta o texto do logo */
.nav-links { list-style: none; display: flex; gap: 20px; } /* Links de navegação */
.nav-links a { color: var(--light-text-color); text-decoration: none; font-weight: 500; }

.hero-content { 
    background: rgba(0, 0, 0, 0.5); 
    padding: 40px; 
    border-radius: 10px; 
    max-width: 90%; 
    margin: 0 auto; 
} 
.hero-title { font-family: 'Playfair Display', serif; } 

/* Estilo para Botões CTA */
.cta-button { 
    background-color: var(--accent-color); 
    border-radius: 50px; 
    font-weight: bold; 
    transition: background-color 0.3s ease; 
}

/* Estilos de Seções Genéricas */
.section { padding: 80px 0; text-align: center; }
.section-title { font-family: 'Playfair Display', serif; color: var(--primary-color); }
.experience-section { background-color: var(--secondary-color); } 

/* Layout de Galeria e Cards */
.image-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.card { 
    border-top: 5px solid var(--accent-color); 
    transition: transform 0.3s ease; 
} 
.card:hover { transform: translateY(-5px); } /* Efeito no hover */

/* Rodapé e Responsividade */
footer { background-color: var(--primary-color); color: var(--light-text-color); } 
@media (max-width: 768px) { /* Estilos específicos para celular */
    .navbar { flex-direction: column; gap: 10px; } 
    .hero-title { font-size: 2em; }
}