:root {
  /* === PALETA IXALI === */
  --basalto: #161513;
  --cuarzo: #EDEAE4;
  --ceniza: #8C877E;
  --ambar: #B5651D;

  /* Variaciones */
  --basalto-90: rgba(22, 21, 19, 0.9);
  --basalto-50: rgba(22, 21, 19, 0.5);
  --basalto-20: rgba(22, 21, 19, 0.2);
  --cuarzo-80: rgba(237, 234, 228, 0.8);
  --ceniza-40: rgba(140, 135, 126, 0.4);
  --ambar-10: rgba(181, 101, 29, 0.1);

  /* === TIPOGRAFÍA === */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --tracking-wide: 0.25em;
  --tracking-normal: 0.02em;

  /* === ESPACIADO === */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* === BORDES === */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* === TRANSICIONES === */
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  color: var(--basalto);
  background-color: var(--cuarzo);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cuarzo);
}

::-webkit-scrollbar-thumb {
  background: var(--ceniza);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--basalto);
}

/* === SELECCIÓN === */
::selection {
  background: var(--ambar);
  color: var(--cuarzo);
}
