body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

/* 🔤 Jerarquía real */
h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
}

h2 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

h3 {
  font-size: var(--text-xl);
}

/* 📦 Layout consistente */
section {
  padding: var(--space-xl) var(--space-md);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* 🔘 Botones base */
.button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Variante secundaria */
.button-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}