/* base.css - Reset e Estrutura Base */

/* Reset Básico */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Tipografia Padrão do Sistema */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container Centralizador */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Links */
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Títulos */
h1, h2, h3 {
    margin-bottom: 0.8em;
    line-height: 1.2;
    color: var(--heading-color);
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }

p {
    margin-bottom: 1em;
}

/* Botões de Ação (CTA) */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

/* Seções */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--section-bg-color);
}

/* Utilitários */
.section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: var(--text-color-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.content-page {
    padding-top: 120px; /* Espaço para o header fixo */
    min-height: 80vh;
}
