/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--azul-escuro);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 6% 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}


.nav-logo-footer img {
  height: 170px;
  width: auto;
}


.footer-brand .nav-logo-footer {
  font-size: 1rem;
  display: inline-block;
}

footer h4 {
  color: var(--branco);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }

footer ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

footer ul a:hover { color: var(--vermelho); }

.footer-bottom {
  background: var(--azul-escuro);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.2rem 5%;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ─── RESPONSIVO ─────────────────────────────────── */
@media (max-width: 768px) {
  footer { grid-template-columns: 1fr; gap: 2rem; }
  
  .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  }
  
  .nav-logo-footer img {
  height: 160px;
  }
}