/* === CONFIGURAÇÕES GLOBAIS === */
:root {
    --color-yellow: #f1c40f;
    --color-green: #8f9a5b;
    --color-dark-green: #68723b;
    --color-dark-gray: #333333;
    --color-light-gray: #f4f4f4;
    --color-white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--color-dark-gray); line-height: 1.6; }
h2 { font-size: 2.5rem; margin-bottom: 40px; }
.content-section { padding: 80px 20px; text-align: center; }

/* === CABEÇALHO === */
.header { display: flex; justify-content: flex-end; align-items: center; padding: 20px 40px; position: absolute; width: 100%; top: 0; left: 0; z-index: 10; }
.menu-icon span { display: block; width: 30px; height: 3px; background-color: var(--color-white); margin: 5px 0; }

/* === SEÇÃO HERO === */
.hero-section { height: 100vh; background-size: cover; background-position: center; display: flex; justify-content: center; align-items: center; text-align: center; color: var(--color-white); position: relative; }
.hero-section::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); }
.hero-content { z-index: 5; padding: 80px 20px; width: 100%; max-width: 900px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
.hero-logo { width: 100%; max-width: 450px; transform: translateY(-80px); }
.hero-subtitle { font-size: 1.8rem; font-weight: 700; margin-bottom: 30px; color: var(--color-white); }
#hero { background-image: url('imagens/bg-hero.jpg'); }
.btn { display: inline-block; padding: 12px 28px; text-decoration: none; font-weight: 500; background-color: var(--color-green); color: var(--color-white); border: none; cursor: pointer; transition: transform 0.2s; border-radius: 5px;}
.btn:hover { transform: scale(1.05); }
.btn.dark { background-color: var(--color-dark-green); }

/* === SEÇÕES DE CONTEÚDO (SOBRE, NÚMEROS, CLIENTES) === */
.yellow-bg { background-color: var(--color-yellow); }
.green-bg { background-color: var(--color-green); }
.green-bg h2 { color: var(--color-white); }
.dark-green-bg { background-color: var(--color-dark-green); }
.dark-bg { background-color: var(--color-dark-gray); }
.dark-bg h2, .dark-bg p { color: var(--color-light-gray); }
.section-intro { display: block; font-size: 1.1rem; max-width: 750px; margin: -20px auto 40px; }

/* Ajuste específico para a seção Sobre */
#sobre {
    text-align: center; /* Centraliza TUDO na seção */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
#sobre p {
    font-size: 1.1rem; /* UNIFORMIZA o tamanho da fonte para todos os parágrafos */
    margin-bottom: 25px; /* Adiciona um espaço entre os parágrafos */
}
#sobre strong {
    font-weight: 700; /* Garante o negrito */
    color: var(--color-dark-green); /* DÁ O DESTAQUE na cor verde-escura */
}

/* Seção Números */
.yellow-text { color: var(--color-yellow); font-weight: 700; }
.numeros-grid { display: grid; grid-template-columns: 1fr; gap: 15px; max-width: 600px; margin-left: auto; margin-right: auto; }
.numero-item { background-color: var(--color-dark-green); color: var(--color-white); border-radius: 15px; padding: 25px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 15px; }
.numero-icon { height: 60px; display: flex; justify-content: center; align-items: center; }
.numero-icon img { width: 45px; height: auto; }
.numero-circulo { background-color: var(--color-yellow); color: var(--color-dark-green); width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; font-weight: 700; }
.numero-text { font-size: 1.2rem; line-height: 1.4; }

/* Seção Clientes */
#clientes h2 { color: var(--color-dark-gray); }
.logos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 40px; align-items: center; max-width: 1000px; margin-left: auto; margin-right: auto; }
.logo-item img { max-width: 100%; height: auto; transition: transform 0.3s ease; }
.logo-item img:hover { transform: scale(1.1); }

/* SEÇÃO ATUAÇÃO (SEGMENTOS E SERVIÇOS) */
.atuacao-container { display: flex; max-width: 1000px; margin: 0 auto; gap: 60px; text-align: left; }
.atuacao-column { flex: 1; }
.atuacao-container h2 { color: var(--color-white); border-bottom: 2px solid var(--color-yellow); padding-bottom: 10px; margin-bottom: 30px; font-size: 2rem; }
.atuacao-list { list-style: none; padding: 0; }
.atuacao-list li { font-size: 1.1rem; color: var(--color-white); padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

/* === SEÇÃO SÓCIOS === */
#socios h2 { color: var(--color-dark-gray); }
.socios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.socio-item { padding: 20px; }
.socio-item img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; }
.socio-item h3 { margin-bottom: 15px; }
.linkedin-link { display: inline-block; font-weight: 600; color: var(--color-dark-green); text-decoration: none; border-bottom: 2px solid var(--color-green); padding-bottom: 2px; }
.linkedin-link:hover { color: var(--color-green); }

/* === SEÇÃO CONTATO === */
#contato a { color: var(--color-light-gray); text-decoration: none; border-bottom: 1px solid var(--color-yellow); }
#contato a:hover { color: var(--color-yellow); }

/* === RODAPÉ === */
.footer { background-color: #222; color: #aaa; text-align: center; padding: 20px; font-size: 0.9rem; }

/* === AJUSTES PARA CELULAR === */
@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    .header { padding: 15px 20px; }
    .hero-content { justify-content: space-between; padding-top: 100px; padding-bottom: 60px; }
    .hero-logo { max-width: 320px; transform: translateY(0); }
    #sobre { text-align: center; } /* <<< A CORREÇÃO ESTÁ AQUI */
    .atuacao-container { flex-direction: column; gap: 40px; }
    .socios-grid { grid-template-columns: 1fr; }
}
