/* =========================
   TIPOGRAFÍA GLOBAL
========================= */

:root {
  --font-primary: "Inter", system-ui, -apple-system, Arial, sans-serif;

  --text-xs: 0.8rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.2rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.8rem;
}

/* Base */
body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
}

/* Headings */
h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

h3 {
  font-size: var(--text-lg);
  font-weight: 600;
}

p {
  font-size: var(--text-base);
  color: #E8E8E8;
}

/* Links */
a {
  text-decoration: none;
  transition: var(--transition);
}