/* ============================================
   Design Tokens — Zulunity Proposal
   Monitoreo Digital Multicliente
   ============================================ */

:root {
  /* --- Zulunity Brand (fixed — never change) --- */
  --green-primary: #009A6A;
  --green-dark: #007A54;
  --green-medium: #60C6A4;
  --green-light: #D9F7EB;
  --green-very-light: #EEFFF7;
  --dark-text: #040816;
  --white: #FFFFFF;
  --gray-100: #F7F8FA;
  --gray-200: #E8ECF1;
  --gray-300: #CDD5DF;
  --gray-500: #6B7A90;
  --gray-700: #3D4A5C;

  /* --- Module Colors --- */
  --mod-admin-bg: #E3F2FD;
  --mod-admin-border: #1565C0;
  --mod-admin-text: #0D47A1;

  --mod-ingesta-bg: #E0F2F1;
  --mod-ingesta-border: #00897B;
  --mod-ingesta-text: #004D40;

  --mod-conectores-bg: #E8EAF6;
  --mod-conectores-border: #283593;
  --mod-conectores-text: #1A237E;

  --mod-matching-bg: #F3E5F5;
  --mod-matching-border: #7B1FA2;
  --mod-matching-text: #4A148C;

  --mod-telegram-bg: #FFF8E1;
  --mod-telegram-border: #F9A825;
  --mod-telegram-text: #E65100;

  --mod-export-bg: #FBE9E7;
  --mod-export-border: #E64A19;
  --mod-export-text: #BF360C;

  /* --- Phase Colors (Gantt) --- */
  --phase-1: #455A64;
  --phase-2: #1565C0;
  --phase-3: #F9A825;
  --phase-4: #7B1FA2;
  --phase-5: #009A6A;
  --phase-6: #E64A19;

  /* --- Typography (fixed) --- */
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  --leading-tight: 1.25;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* --- Spacing (fixed) --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* --- Layout (fixed) --- */
  --sidebar-width: 260px;
  --content-max: 860px;
  --page-padding: 2rem;

  /* --- Borders (fixed) --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* --- Shadows (fixed) --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

  /* --- Transitions (fixed) --- */
  --ease-default: 200ms ease;
}

/* --- Module Card Top Bars --- */
.module-card--admin::before { background: var(--mod-admin-border); }
.module-card--ingesta::before { background: var(--mod-ingesta-border); }
.module-card--conectores::before { background: var(--mod-conectores-border); }
.module-card--matching::before { background: var(--mod-matching-border); }
.module-card--telegram::before { background: var(--mod-telegram-border); }
.module-card--export::before { background: var(--mod-export-border); }

/* --- Gantt Phase Bars --- */
.gantt-bar--phase1 { background: var(--phase-1); }
.gantt-bar--phase2 { background: var(--phase-2); }
.gantt-bar--phase3 { background: var(--phase-3); }
.gantt-bar--phase4 { background: var(--phase-4); }
.gantt-bar--phase5 { background: var(--phase-5); }
.gantt-bar--phase6 { background: var(--phase-6); }
