/* ─── RODAPÉ ─────────────────────────────────────────────────────────────── */
.rodape {
  background: #141412;
  padding: 60px 24px;
}
.rodape__marca {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.22);
}
.rodape__marca::before {
  content: '';
  display: block;
  width: clamp(60px, 14vw, 200px);
  height: 2px;
  background: linear-gradient(90deg, rgba(201,168,76,0) 0%, #C9A84C 50%, rgba(201,168,76,0) 100%);
  border-radius: 2px;
  margin-bottom: 36px;
}
.rodape__logo-svg {
  width: clamp(260px, 50vw, 420px);
  height: auto;
}
.rodape__tagline {
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7DC4A0;
  text-align: center;
}
.rodape__linha-dourada {
  width: 60px;
  height: 1.5px;
  background: var(--dourado);
  border-radius: 1px;
  margin: 0 auto;
  opacity: 0.55;
}
.rodape__disclaimer {
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(254,252,249,0.38);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.rodape__lgpd {
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.82rem;
  color: rgba(254,252,249,0.25);
  margin-bottom: 20px;
}
.rodape__links {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.82rem;
  color: rgba(254,252,249,0.25);
  margin-bottom: 18px;
}
.rodape__links a {
  color: rgba(254,252,249,0.40);
  text-decoration: none;
  transition: color 0.2s;
}
.rodape__links a:hover { color: rgba(254,252,249,0.68); }
.rodape__copy {
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.78rem;
  color: rgba(254,252,249,0.18);
}
