/* ===========================
   BASE / TIPOGRAFIA — IKP Redesign
   =========================== */

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--off-white);
  line-height: 1.7;
}

/* ── Títulos ── */
h1,
.h1 {
  font-family: var(--font-display);
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h2,
.h2 {
  font-family: var(--font-display);
  font-size: var(--h2-size);
  font-weight: 600;
  line-height: 1.2;
}

h3,
.h3 {
  font-family: var(--font-body);
  font-size: var(--h3-size);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Labels / Captions ── */
.label {
  font-family: var(--font-body);
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ── Parágrafos ── */
p {
  margin-bottom: var(--gap-md);
  color: var(--warm-gray);
}

p:last-child {
  margin-bottom: 0;
}

/* ── Links ── */
a {
  transition: var(--transition);
}

/* ── Linha decorativa dourada ── */
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--gold-primary);
  margin-bottom: var(--gap-lg);
}

/* ── Seção label (acima do título) ── */
.section__label {
  font-family: var(--font-body);
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--gap-md);
  display: block;
}

/* ── Seção título ── */
.section__title {
  font-family: var(--font-display);
  font-size: var(--h2-size);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--gap-lg);
}

/* ── Seção subtítulo ── */
.section__subtitle {
  font-size: var(--body-size);
  color: var(--warm-gray);
  max-width: 640px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section__title {
    margin-bottom: var(--gap-md);
  }

  .section__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Blockquote com barra dourada ── */
blockquote {
  border-left: 3px solid var(--gold-primary);
  padding-left: var(--gap-lg);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: var(--gap-lg) 0;
}

/* ── Seleção de texto ── */
::selection {
  background-color: var(--gold-light);
  color: var(--charcoal);
}