/* ============================================================
   BASE — t06-pilates
   Estilos globais de corpo, tipografia e layout.
   ============================================================ */

/* ── Corpo ─────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ── Section base ──────────────────────────────────────────── */
.section {
  padding-block: var(--section-py);
}

/* ── Tipografia global ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

/* ── Helpers de texto recorrentes ──────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ── Links inline ───────────────────────────────────────────── */
a:hover {
  color: var(--color-primary);
}
