/* ══════════════════════════════════════════════════
   CADIMEP — Variables de diseño
   ══════════════════════════════════════════════════ */

:root {
  /* Colores primarios */
  --navy:      #0b1120;
  --navy-mid:  #111827;
  --navy-light:#1a2540;
  --navy-card: #141e35;

  /* Acento dorado */
  --gold:      #c9a96e;
  --gold-light:#e8c98a;
  --gold-dim:  #a07840;

  /* Acento azul eléctrico */
  --electric:  #3b82f6;
  --electric-dim: #1d4ed8;

  /* Texto */
  --text-primary:   #f0ece4;
  --text-secondary: #9ba3af;
  --text-muted:     #6b7280;

  /* Bordes */
  --border:    rgba(201, 169, 110, 0.18);
  --border-light: rgba(255,255,255,0.07);

  /* Tipografía */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Espaciado */
  --section-pad: 7rem 0;
  --container:   1200px;
  --radius:      0.75rem;
  --radius-lg:   1.25rem;

  /* Sombras */
  --shadow-card: 0 4px 32px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 40px rgba(201,169,110,0.12);

  /* Transición */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
