@charset "UTF-8";

/* ===========================
   CORE — VARIABLES + RESET
   =========================== */

:root {
  /* Tipografía — Neue Haas Grotesk (Adobe Fonts) */
  --font-main:     "neue-haas-grotesk-text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display:  "neue-haas-grotesk-display", "neue-haas-grotesk-text", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Pesos */
  --weight-regular:   400;
  --weight-semibold:  600;
  --weight-bold:      700;

  /* Colores */
  --black:        #080808;
  --black-soft:   #0f0f0f;
  --surface:      #141414;
  --surface-2:    #1c1c1c;
  --border:       rgba(255,255,255,0.08);
  --border-mid:   rgba(255,255,255,0.14);
  --white:        #f4efe6;
  --muted:        rgba(244,239,230,0.45);
  --accent:       #6a20e6;
  --accent-dim:   rgba(106,32,230,0.10);
  --accent-hover: #8b45ff;

  /* Sombras */
  --shadow:    0 0 40px rgba(0,0,0,0.6);
  --shadow-sm: 0 0 20px rgba(0,0,0,0.4);

  /* Bordes */
  --radius:    3px;
  --radius-lg: 8px;

  /* Spacing */
  --space-xs:  6px;
  --space-sm:  12px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 130px;
}

/* RESET */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-weight: var(--weight-regular);
  background: var(--black); /* FIX: era background:(--black) sin var() */
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { width: 100%; display: block; }
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
