/* Variáveis CSS - Cores e medidas do sistema */
:root {
    /* Cores principais */
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary-color: #1976d2;
    --danger-color: #d32f2f;
    
    /* Cores de texto */
    --text-color: #333;
    --text-light: #666;
    --text-white: #ffffff;
    
    /* Cores de fundo */
    --bg-color: #f5f5f5;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    
    /* Sombras */
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-large: 0 8px 16px rgba(0,0,0,0.2);
    
    /* Espaçamentos */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    
    /* Bordas */
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Larguras máximas */
    --max-width-container: 1200px;
    --max-width-card: 350px;
    
    /* Altura de linha */
    --line-height: 1.6;
    
    /* Fontes */
    --font-family-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-mono: 'Courier New', monospace;
}