/**
 * Style Guide - Variables CSS
 * Maidan Holding - Dark Corporate Theme
 * Generado automaticamente por SpeakSite
 */

:root {
  /* Colores principales */
  --color-primary: #000000;
  --color-primary-light: #1A1A2E;
  --color-primary-dark: #000000;
  --color-secondary: #2D2D44;
  --color-accent: #3941FF;
  --color-accent-light: #6B71FF;
  --color-accent-dark: #2A30CC;

  /* Fondos */
  --color-background: #0A0A0F;
  --color-background-alt: #12121A;
  --color-background-elevated: #1A1A26;

  /* Texto */
  --color-foreground: #F0F0F5;
  --color-foreground-muted: #9CA3AF;

  /* Bordes */
  --color-border: #2A2A3A;

  /* Estados */
  --color-success: #10B981;
  --color-success-light: #D1FAE5;
  --color-warning: #F59E0B;
  --color-warning-light: #FEF3C7;
  --color-error: #EF4444;
  --color-error-light: #FEE2E2;
  --color-info: #3B82F6;

  /* Tipografia */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  --font-size-base: 16px;

  /* Bordes */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.3);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.3);
  --shadow-accent: 0 4px 14px 0 rgb(57 65 255 / 0.25);
  --shadow-accent-lg: 0 10px 30px 0 rgb(57 65 255 / 0.3);

  /* Transiciones */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
  --transition-spring: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index */
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-modal-backdrop: 40;
  --z-modal: 50;
  --z-tooltip: 60;
}

/* Reset basico */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Aplicar fuentes globalmente */
body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-foreground);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-foreground);
}

h1 { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
h4 { font-weight: 600; line-height: 1.35; letter-spacing: -0.005em; }
h5 { font-weight: 600; line-height: 1.4; }
h6 { font-weight: 600; line-height: 1.4; }

/* Enlaces */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* Accesibilidad: reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
