/* =========================================
   1. VARIÁVEIS GLOBAIS (Design System)
   ========================================= */
:root {
    /* Paleta de Cores Global Tributos */
    --bg-color: #001029;        /* Azul Profundo (Fundo) */
    --card-color: #214d8b;      /* Azul Médio (Seções/Cards) */
    --primary-color: #6ce5e8;   /* Ciano Neon (Destaque/Botões) */
    --secondary-color: #2d8bba; /* Azul Claro (Detalhes) */
    --text-color: #ffffff;      /* Branco (Texto) */
    --text-muted: #e0e0e0;      /* Cinza Claro (Textos secundários) */
    --success-color: #2ecc71;   /* Verde (Economia) */
    --danger-color: #e74c3c;    /* Vermelho (Custo) */
    
    /* Tipografia */
    --font-main: 'Montserrat', sans-serif;
    
    /* Espaçamentos e Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* =========================================
   2. RESET (Limpeza do Navegador)
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   3. TIPOGRAFIA BÁSICA
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Mobile First: Fontes menores para caber na tela */
h1 {
    font-size: 2.2rem; 
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Ajustes para Desktop */
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    p { font-size: 1.1rem; }
}