:root {
    /* Cores */
    --app-primary: #1e3a8a;
    --app-primary-600: #1d4ed8;
    --app-secondary: #0f172a;
    --app-surface: #ffffff;
    --app-surface-soft: #f8fafc;
    --app-surface-muted: #eef2f7;
    --app-border: #dbe3ef;
    --app-text: #1f2937;
    --app-text-muted: #667085;

    /* Raios e sombras */
    --app-radius-sm: 0.5rem;
    --app-radius-md: 0.875rem;
    --app-radius-lg: 1.1rem;
    --app-shadow-sm: 0 3px 10px rgba(15, 23, 42, 0.06);
    --app-shadow-md: 0 10px 24px rgba(15, 23, 42, 0.09);
    --app-shadow-lg: 0 20px 42px rgba(15, 23, 42, 0.12);

    --app-transition: all .22s ease;
}

body {
    background: radial-gradient(circle at top right, #eef4ff 0%, #f5f7fb 36%, #f8fafc 100%);
    color: var(--app-text);
}

.page-subtitle {
    color: var(--app-text-muted);
}

