/**
 * Portal UI Framework — design tokens (base + default palette)
 * Default theme: verde-laranja (#15a362 + #E86C2D)
 * Override palette via portal-themes.css (body[data-portal-theme] or .portal-theme-*)
 * Version: 1.1.0
 */

:root,
body.portal-ui,
body.app-with-sidebar {
    /* Primary — nav, active states, success actions, form focus */
    --portal-primary: #15a362;
    --portal-primary-dark: #12814d;
    --portal-primary-light: #edfdf6;
    --portal-primary-tint: rgba(237, 253, 246, 0.72);
    --portal-primary-tint-child: rgba(237, 253, 246, 0.28);
    --portal-primary-tint-strong: rgba(237, 253, 246, 0.88);
    --portal-primary-rgb: 21, 163, 98;

    /* Accent — CTAs, calendar, card borders, Pendente badge, tabs */
    --portal-accent: #E86C2D;
    --portal-accent-dark: #c85a24;
    --portal-accent-soft: #fff4ee;
    --portal-accent-rgb: 232, 108, 45;

    /* Utility palette roles */
    --portal-slate: #747f94;
    --portal-slate-rgb: 116, 127, 148;
    --portal-success-badge: #5cb377;

    /* Derived alpha helpers (theme presets may override) */
    --portal-primary-border-subtle: rgba(var(--portal-primary-rgb), 0.1);
    --portal-primary-border-medium: rgba(var(--portal-primary-rgb), 0.28);
    --portal-primary-border-strong: rgba(var(--portal-primary-rgb), 0.45);
    --portal-primary-focus-ring: 0 0 0 0.2rem rgba(var(--portal-primary-rgb), 0.2);
    --portal-accent-border-soft: rgba(var(--portal-accent-rgb), 0.35);
    --portal-accent-focus-ring: 0 0 0 0.2rem rgba(var(--portal-accent-rgb), 0.2);
    --portal-slate-focus-ring: 0 0 0 0.2rem rgba(var(--portal-slate-rgb), 0.2);

    /* Neutrals — shared across themes */
    --portal-text: #252930;
    --portal-text-muted: #5d6778;
    --portal-text-light: #9fa7b5;
    --portal-border: #e7e9ed;
    --portal-border-bs: #dee2e6;
    --portal-bg: #f5f6fa;
    --portal-white: #fff;

    /* Typography */
    --portal-font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --portal-font-size-base: 0.9375rem;
    --portal-font-size-table: 0.875rem;
    --portal-font-size-table-child: 0.8125rem;
    --portal-font-size-badge: 0.78rem;

    /* Spacing & shape */
    --portal-radius: 0.375rem;
    --portal-radius-pill: 999px;
}
