/**
 * MCPIM Design System - Theme Tokens
 *
 * Design tokens baseados no Figma do Continente
 * Usar este arquivo como ponto de entrada para todos os tokens
 */

/* 1. Base Tokens (primitives) */
@import './tokens/base.css';

/* 2. Semantic Tokens (light theme) */
@import './tokens/theme.light.css';

/* 3. Dark Theme Override */
@import './tokens/theme.dark.css';

/* 4. Typography Tokens */
@import './tokens/typography.css';

/* 5. Spacing Tokens */
@import './tokens/spacing.css';

/* Global Resets */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--text-default);
    background-color: var(--background-default);
    margin: 0;
    padding: 0;
}
