/* ══ FOOTER MODULE ════════════════════ */
#ftr {
  background: var(--white);
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
}

/* ── Topo: logo + nav ─────────────────── */
.ftr-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

/* ── Logo e tagline ───────────────────── */
.ftr-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.ftr-logo {
  width: 200px;
  height: auto;
  display: block;
}

.ftr-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ── Navegação em colunas ─────────────── */
.ftr-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.ftr-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.ftr-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.ftr-link {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  transition: color .2s;
}

.ftr-link:hover { color: var(--orange); }

.ftr-link--cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .02em;
}

.ftr-link--cta:hover { color: var(--orange-d); }

/* ── Rodapé inferior ──────────────────── */
.ftr-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.ftr-copy {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}
