/* ==========================================================================
   1. VARIÁVEIS GLOBAIS E RESET
   ========================================================================== */
:root {
    --verde-principal: #10a33e;
    --verde-escuro: #0a6927;
    --texto-escuro: #333333;
    --texto-claro: #ffffff;
    --fundo-cinza: #f4f4f4;
    --fundo-escuro: #071a0f;
    --fonte-principal: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fonte-principal);
}

body {
    color: var(--texto-escuro);
    line-height: 1.6;
}

/* ==========================================================================
   2. CLASSES UTILITÁRIAS
   ========================================================================== */

/* Textos */
.texto-branco { color: var(--texto-claro); }
.texto-centralizado { text-align: center; }

.titulo-secao {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--verde-escuro);
}

/* Estrutura */
.secao {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.fundo-cinza {
    background-color: var(--fundo-cinza);
    max-width: 100%;
    padding: 80px 10%;
}

/* Efeito Visual */
.bg-parallax {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}