/* ==============================================
   GET School Global — Design Tokens
   All values from design-system-get-school.md v1.0
   ============================================== */

:root {
  /* ==================== */
  /* CORES               */
  /* ==================== */

  /* Base */
  --color-white: #FFFFFF;
  --color-cream: #F5F3EF;
  --color-cream-light: #FAF9F7;
  --color-black: #1A1A1A;

  /* Gray Scale */
  --color-gray-900: #2D2D2D;
  --color-gray-700: #4A4A4A;
  --color-gray-500: #6B6B6B;
  --color-gray-300: #9E9E9E;
  --color-gray-100: #E5E5E5;
  --color-gray-50: #F5F5F5;

  /* Accent (Golden Yellow) */
  --color-accent: #F5C518;
  --color-accent-light: #FDF4D3;
  --color-accent-dark: #D4A900;
  --color-accent-hover: #E5B800;

  /* Semantic */
  --color-success: #22C55E;
  --color-success-light: #DCFCE7;
  --color-error: #EF4444;
  --color-error-light: #FEE2E2;
  --color-warning: #F59E0B;
  --color-warning-light: #FEF3C7;
  --color-info: #3B82F6;
  --color-info-light: #DBEAFE;

  /* ==================== */
  /* TIPOGRAFIA           */
  /* ==================== */

  --font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizes */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 2rem;
  /* 32px */
  --text-4xl: 2.5rem;
  /* 40px */
  --text-5xl: 3rem;
  /* 48px */
  --text-6xl: 4rem;
  /* 64px */
  --text-7xl: 4.5rem;
  /* 72px */

  /* Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.2;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* ==================== */
  /* ESPAÇAMENTOS         */
  /* ==================== */

  --space-0: 0;
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */
  --space-32: 8rem;
  /* 128px */

  /* ==================== */
  /* LAYOUT               */
  /* ==================== */

  --container-max: 1200px;
  --container-padding: 1.5rem;
  /* 24px mobile */

  /* Breakpoints (reference) */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;

  /* ==================== */
  /* BORDAS E SOMBRAS     */
  /* ==================== */

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-bg-hover: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-blur: 12px;
  --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
  --glass-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);

  /* ==================== */
  /* TRANSIÇÕES           */
  /* ==================== */

  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
}

/* Responsive container padding */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
    /* 32px tablet */
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 4rem;
    /* 64px desktop */
  }
}