/* Footer padrão do site (fonte única). Standalone = barra escura com fundo
   próprio, usada nas páginas de conteúdo. Na home o footer vive dentro do banner
   .finale (já escuro) e o fundo/topo são sobrescritos em home.css.
   Autossuficiente: não depende de tokens do home.css. */
.site-footer {
  position: relative;
  background: #16171f;
  padding: 72px 48px 40px;
  font-family: "Lexend", "Century Gothic", sans-serif;
}
.site-footer a {
  text-decoration: none;
}
.site-footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-brand span {
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer-copy {
  margin-top: 16px;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: #fff;
  display: inline-flex;
}
.footer-social a:hover {
  color: #dce0ff;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
}
.footer-links a:hover {
  color: #fff;
}
@media screen and (max-width: 860px) {
  .site-footer {
    padding: 56px 24px 32px;
  }
  .site-footer-inner {
    justify-content: flex-start;
  }
  .footer-right {
    align-items: flex-start;
  }
}
