/* ============================================================
   variables.css — Design tokens
   TechZone Guatemala · Desarrollado por Péndulo (penduloabc.com)
   ============================================================ */

:root {

  /* ── Colores ───────────────────────────────────────────── */
  --color-bg:        #0b0c0f;
  --color-bg-2:      #111318;
  --color-bg-3:      #181b22;
  --color-bg-4:      #1e2128;

  --color-border:    #252830;
  --color-border-2:  #2e323d;

  --color-accent:    #f04e00;        /* naranja principal */
  --color-accent-h:  #d94400;        /* hover */
  --color-accent-2:  #ffaa44;        /* precio / highlight */

  --color-text:      #dfe1e8;
  --color-text-2:    #9298a8;
  --color-text-3:    #5a5f6e;

  --color-success:   #22c55e;
  --color-warning:   #f59e0b;
  --color-danger:    #ef4444;
  --color-info:      #3b82f6;
  --color-purple:    #a855f7;

  --color-wa:        #25d366;
  --color-wa-h:      #1cb958;

  /* ── Tipografía ────────────────────────────────────────── */
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-black:   800;

  --ls-tight:  -0.02em;
  --ls-normal:  0;
  --ls-wide:    0.05em;
  --ls-wider:   0.10em;
  --ls-widest:  0.15em;

  /* ── Escala tipográfica ────────────────────────────────── */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.8125rem;  /* 13px */
  --text-base: 0.9375rem;  /* 15px */
  --text-md:   1rem;       /* 16px */
  --text-lg:   1.0625rem;  /* 17px */
  --text-xl:   1.125rem;   /* 18px */
  --text-2xl:  1.375rem;   /* 22px */
  --text-3xl:  1.75rem;    /* 28px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  4rem;       /* 64px */

  /* ── Espaciado ─────────────────────────────────────────── */
  --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;
  --space-20:  80px;
  --space-24:  96px;

  /* ── Bordes y radios ───────────────────────────────────── */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  /* ── Sombras ───────────────────────────────────────────── */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.35);
  --shadow-md:  0 4px 20px rgba(0,0,0,.5);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.65);
  --shadow-accent: 0 0 24px rgba(240,78,0,.25);

  /* ── Transiciones ──────────────────────────────────────── */
  --ease:       cubic-bezier(.4,0,.2,1);
  --duration:   200ms;
  --duration-lg: 350ms;

  /* ── Layout ────────────────────────────────────────────── */
  --max-width:  1300px;
  --header-h:   66px;
  --nav-h:      44px;
}
