/* ── Footer redesign ── */
#footer {
  background: #1a1548;
  padding: 64px 28px 0;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* Grid de 3 colunas */
.footer-cols {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Coluna da marca */
.footer-brand {}

.footer-logo {
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: .85;
  transition: opacity .2s;
}
.footer-logo-img:hover {
  opacity: 1;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

/* Redes sociais */
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,0,.08);
}

/* Colunas de links */
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-nav a:hover {
  color: #fff;
}

/* Barra inferior */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 28px;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.2);
}

.footer-credits {
  font-size: 12px;
  color: rgba(255,255,255,.2);
}
.footer-credits a {
  color: rgba(255,255,255,.4);
  font-weight: 600;
  transition: color .2s;
}
.footer-credits a:hover {
  color: var(--orange);
}

@media(max-width:780px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-tagline { max-width: 100%; }
}
