:root {
  /* -----------------------------------
     🎨 PALETA PRINCIPAL (Premium Motors)
  ----------------------------------- */
  --color-primary: #121212;        /* Negro profundo */
  --color-primary-light: #1F1F1F;
  --color-primary-dark: #0A0A0A;

  --color-secondary: #5E6166;      /* Gris grafito */
  --color-secondary-light: #8A8D91;
  --color-secondary-dark: #2F3236;

  --color-accent: #B08D57;         /* Bronce metálico */
  --color-accent-light: #C9AB7A;
  --color-accent-dark: #8C6C3F;

  --color-success: #4CAF50;
  --color-warning: #D4A017;
  --color-error:   #C0392B;

  --color-white: #FFFFFF;
  --color-black: #000000;

  /* -----------------------------------
     🧱 FONDOS
  ----------------------------------- */
  --color-bg: #0F0F0F;             /* Fondo principal oscuro */
  --color-bg-light: #161616;       /* Secciones */
  --color-bg-card: #1C1C1C;        /* Cards / fichas de vehículos */
  --color-bg-hover: #232323;

  --navbar-bg: rgba(15, 15, 15, 0.92);

  /* -----------------------------------
     📝 TEXTO
  ----------------------------------- */
  --color-text: #EDEDED;           /* Texto principal */
  --color-text-muted: #9A9A9A;
  --color-text-dark: #CFCFCF;

  /* -----------------------------------
     🔥 GRADIENTES (automotriz)
  ----------------------------------- */
  --gradient-primary: linear-gradient(
    180deg,
    #121212 0%,
    #0A0A0A 100%
  );

  --gradient-accent: linear-gradient(
    135deg,
    #C9AB7A 0%,
    #B08D57 100%
  );

  --gradient-dark: linear-gradient(
    180deg,
    #1A1A1A 0%,
    #000000 100%
  );

  /* -----------------------------------
     ✨ SOMBRAS (luxury / depth)
  ----------------------------------- */
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.35);
  --shadow-medium: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 20px 48px rgba(0, 0, 0, 0.65);

  --shadow-glow-primary: 0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-glow-accent: 0 0 12px rgba(176, 141, 87, 0.35);
  --shadow-glow-secondary: none;

  /* -----------------------------------
     🟦 RADIOS
  ----------------------------------- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-full: 999px;

  /* -----------------------------------
     📏 SPACING
  ----------------------------------- */
  --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-16: 64px;

  /* -----------------------------------
     🔢 TIPOGRAFÍAS
  ----------------------------------- */
  --font-title: "Sora", sans-serif;       /* Ideal para nombres de modelos */
  --font-text: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  /* -----------------------------------
     ⚡ ANIMACIONES / TRANSICIONES
  ----------------------------------- */
  --transition-fast: 120ms ease;
  --transition-normal: 220ms ease;
  --transition-slow: 360ms ease;

  /* -----------------------------------
     🧱 BORDES
  ----------------------------------- */
  --border-light: 1px solid rgba(255, 255, 255, 0.08);
  --border-strong: 1px solid rgba(255, 255, 255, 0.16);

  /* -----------------------------------
     🔥 OPACIDADES
  ----------------------------------- */
  --opacity-10: 0.1;
  --opacity-20: 0.2;
  --opacity-40: 0.4;
  --opacity-70: 0.7;
  --opacity-90: 0.9;

  /* -----------------------------------
     🧱 CONTENEDORES
  ----------------------------------- */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-2xl: 1320px;

  /* -----------------------------------
     📱 BREAKPOINTS
  ----------------------------------- */
  --bp-xs: 480px;
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
  --bp-2xl: 1536px;

  /* -----------------------------------
     🔝 Z-INDEX
  ----------------------------------- */
  --z-back: -1;
  --z-normal: 1;
  --z-dropdown: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  --z-max: 9999;
}
