/*
 * variables.css — Design tokens
 * Gennaro Cibelli · Dark luxury theme
 */

:root {

  /* ── Fondos ── */
  --color-bg:           #0A0A0A;   /* negro puro — nuevo */
  --color-bg-subtle:    #111111;
  --color-bg-card:      #141414;
  --color-bg-elevated:  #1A1A1A;

  /* ── Bordes ── */
  --color-border:       rgba(255, 255, 255, 0.07);
  --color-border-hi:    rgba(255, 255, 255, 0.13);

  /* ── Texto ── */
  --color-text:         #F0EDE8;
  --color-text-muted:   rgba(240, 237, 232, 0.55);
  --color-text-hint:    rgba(240, 237, 232, 0.30);

  /* ── Acento principal (gold) ── */
  --color-accent:       #C9A96E;
  --color-accent-hi:    #DFC08A;
  --color-accent-dim:   rgba(201, 169, 110, 0.14);
  --color-accent-glow:  rgba(201, 169, 110, 0.07);

  /* ── WhatsApp / Telegram ── */
  --color-wa:           #25D366;
  --color-wa-hover:     #20BD5A;
  --color-wa-glow:      rgba(37, 211, 102, 0.28);
  --color-tg:           #229ED9;
  --color-tg-hover:     #1E8EC4;
  --color-tg-glow:      rgba(34, 158, 217, 0.28);

  /* ── Tipografía ── */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, -apple-system, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-md:   1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;

  /* ── Espaciado ── */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;

  /* ── Radios ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* ── Transiciones ── */
  --transition:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Sombras ── */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.5), 0 8px 28px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 32px rgba(201, 169, 110, 0.10);

  /* ── Layout ── */
  --container-max: 1120px;
  --nav-height:    68px;
}
