/* ========================================
   ALMAPE - Design Tokens
   Cores, tipografia, spacing, breakpoints
   ======================================== */

:root {
  /* ============ Cores ALMAPE ============ */
  --brand-yellow: #FFC700;
  --brand-yellow-dark: #E6B300;
  --brand-yellow-light: #FFD533;
  --brand-black: #0A0A0A;
  --brand-white: #FFFFFF;
  --brand-gray-light: #F5F5F5;
  --brand-gray-mid: #BBBBBB;
  --brand-gray-dark: #2A2A2A;
  --brand-gray-text: #555555;
  --brand-gray-muted: #888888;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1EBE57;

  /* ============ Tipografia ============ */
  --font-display: 'Gilroy', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Gilroy', 'Inter', system-ui, -apple-system, sans-serif;

  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 48px;
  --text-4xl: 64px;
  --text-display: clamp(48px, 6vw, 96px);

  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-loose: 1.75;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;

  /* ============ Spacing ============ */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* ============ Layout ============ */
  --max-width: 1280px;
  --container-padding: 24px;
  --container-padding-md: 32px;
  --container-padding-lg: 48px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ============ Shadows ============ */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-yellow: 0 8px 24px rgba(255, 199, 0, 0.3);

  /* ============ Z-index ============ */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-header: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-whatsapp: 600;
  --z-cookie: 700;

  /* ============ Transitions ============ */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ============ Breakpoints (uso em @media) ============
   sm: 640px
   md: 768px
   lg: 1024px
   xl: 1280px
   2xl: 1536px
   ============================================= */

/* ============ @font-face Gilroy ============ */
@font-face {
  font-family: 'Gilroy';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('/public/fonts/Gilroy-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/public/fonts/Gilroy-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('/public/fonts/Gilroy-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('/public/fonts/Gilroy-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/public/fonts/Gilroy-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('/public/fonts/Gilroy-ExtraBold.woff2') format('woff2');
}
