/* ── base.css ── Global styles ── */
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: var(--section-pad);
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  color: var(--indigo-light);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-ui);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 10px;
}
.section-header p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
}

/* Gradient text utility — tricolor oficial del brand book */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
