/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(192,21,42,.1);
  padding: 2.5rem 5%;
}
.footer-inner {
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { font-size: .9rem; font-weight: 800; color: var(--white); }
.footer-sub   { font-size: .68rem; color: var(--gray); margin-top: .2rem; }
.footer-loc   {
  font-size: .76rem; color: var(--gray);
  display: flex; align-items: flex-start; gap: .4rem; margin-top: .4rem;
}
.footer-loc .material-icons { font-size: .9rem; color: var(--red); margin-top: 1px; }
.footer-copy  {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 1.5rem; padding-top: 1.2rem;
  font-size: .7rem; color: var(--gray);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.footer-nav-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-nav-links a { font-size: .7rem; color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-nav-links a:hover { color: var(--red); }

/* agencia.html uses a centered footer variant */
footer.footer-centered { text-align: center; }
.footer-logo {
  display: flex; align-items: center; gap: .7rem;
  justify-content: center; margin-bottom: 1.2rem; text-decoration: none;
}
.footer-logo img  { height: 36px; border-radius: 7px; }
.footer-logo span { font-size: .85rem; font-weight: 800; color: var(--white); }
.footer-links {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 1rem;
}
.footer-links a { font-size: .8rem; color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy-center { font-size: .75rem; color: rgba(255,255,255,.2); text-align: center; }
