/* ========================================
   SISTEMA DE DESIGN - DEVOCIONAL PROJECT
   ======================================== */

:root {
  /* *** PALETA DE CORES *** */
  --bg-primary: #000000;
  --bg-secondary: #121212;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --accent-yellow: #ffff00;
  --accent-yellow-dark: #e6e600;
  --border-color: #333333;
  --border-light: #444444;

  /* *** TIPOGRAFIA *** */
  --font-family: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-sm: 0.75rem; /* 12px */
  --font-size-base: 1rem; /* 16px */
  --font-size-md: 1.125rem; /* 18px */
  --font-size-lg: 1.5rem; /* 24px */
  --font-size-xl: 2rem; /* 32px */
  --font-size-2xl: 2.5rem; /* 40px */

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* *** ESPAÇAMENTO (Escala 4px) *** */
  --space-xs: 0.25rem; /* 4px */
  --space-sm: 0.5rem; /* 8px */
  --space-base: 1rem; /* 16px */
  --space-md: 1.5rem; /* 24px */
  --space-lg: 2rem; /* 32px */
  --space-xl: 3rem; /* 48px */
  --space-2xl: 4rem; /* 64px */

  /* *** BORDER RADIUS *** */
  --radius-sm: 0.25rem; /* 4px */
  --radius-md: 0.5rem; /* 8px */
  --radius-lg: 1rem; /* 16px */
  --radius-full: 9999px;

  /* *** SOMBRAS *** */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.7);

  /* *** TRANSIÇÕES *** */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* *** HEADER *** */
  --header-height: 64px;
  --header-bg: var(--bg-secondary);
  --header-border: var(--border-color);

  /* *** Z-INDEX *** */
  --z-header: 1000;
  --z-modal: 1100;
  --z-tooltip: 999;
}

/* Suporte a temas futuro (Light Mode, etc.) */
@media (prefers-color-scheme: light) {
  :root.theme-light {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --text-primary: #000000;
    --text-secondary: #666666;
    --border-color: #cccccc;
  }
}
