/* CSS Custom Properties - Decorcolors */
/* Design System Variables */

:root {
  /* === COLORS === */

  /* Primary Palette */
  --color-primary: #00897b;
  --color-primary-hover: #00796b;
  --color-primary-light: #26a69a;
  --color-primary-dark: #00695c;

  /* Accent Colors */
  --color-accent: #b7151a;
  --color-accent-hover: #a01317;

  /* Text Colors */
  --color-text-primary: #3f3f40;
  --color-text-secondary: #666666;
  --color-text-tertiary: #999999;
  --color-text-light: #ffffff;

  /* Background Colors */
  --color-bg: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-bg-gray: #fafafa;
  --color-bg-dark: #2c2c2c;

  /* Border Colors */
  --color-border: #e3e4e6;
  --color-border-light: #f0f0f0;
  --color-border-dark: #cacbcc;

  /* Badge Gradient (MAIS VENDIDOS) */
  --gradient-badge: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);

  /* State Colors */
  --color-success: #4caf50;
  --color-error: #f44336;
  --color-warning: #ff9800;
  --color-info: #2196f3;

  /* Star Rating */
  --color-star: #ffc107;
  --color-star-empty: #e0e0e0;

  /* === TYPOGRAPHY === */

  /* Font Families */
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-md: 1.125rem;     /* 18px */
  --font-size-lg: 1.25rem;      /* 20px */
  --font-size-xl: 1.5rem;       /* 24px */
  --font-size-2xl: 2rem;        /* 32px */
  --font-size-3xl: 2.5rem;      /* 40px */
  --font-size-4xl: 3rem;        /* 48px */

  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* === SPACING === */

  /* Base spacing unit: 4px */
  --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 */

  /* Container Padding */
  --container-padding-mobile: var(--space-4);
  --container-padding-tablet: var(--space-6);
  --container-padding-desktop: var(--space-8);

  /* === LAYOUT === */

  /* Container Max-Width */
  --container-max: 1366px;
  --container-max-wide: 1600px;
  --container-max-narrow: 1200px;

  /* Header */
  --header-height-mobile: 56px;
  --header-height-desktop: 72px;
  --top-bar-height: 36px;

  /* === 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 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* === TRANSITIONS === */

  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* === Z-INDEX === */

  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;

  /* === BREAKPOINTS (for reference) === */
  /* Use in media queries: @media (min-width: 768px) {} */

  /* --breakpoint-sm: 640px; */
  /* --breakpoint-md: 768px; */
  /* --breakpoint-lg: 1024px; */
  /* --breakpoint-xl: 1366px; */
}

/* === DARK MODE SUPPORT (future) === */
@media (prefers-color-scheme: dark) {
  :root {
    /* Can add dark mode overrides here */
  }
}
