:root {
    /* Marca */
    --color-primary: #30246f;
    --color-primary-dark: #20184f;
    --color-primary-light: #eeeafd;
    --color-accent: #4054a4;

    /* Neutros */
    --color-background: #ffffff;
    --color-surface: #f7f7f9;
    --color-surface-alt: #eeeeF3;

    --color-text: #17171b;
    --color-text-muted: #686873;

    --color-border: #dedee6;
    --color-border-strong: #c7c7d2;

    /* Estados */
    --color-success: #19733c;
    --color-success-bg: #eaf7ef;

    --color-warning: #8a5a00;
    --color-warning-bg: #fff6df;

    --color-danger: #a42626;
    --color-danger-bg: #fff0f0;

    /* Tipografia */
    --font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    /* Layout */
    --container-width: 1240px;

    /* Espaçamento */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;

    /* Bordas */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    /* Sombras */
    --shadow-sm:
        0 1px 3px rgba(0, 0, 0, 0.08);

    --shadow-md:
        0 6px 20px rgba(0, 0, 0, 0.08);

    /* Transições */
    --transition-fast: 160ms ease;
}