/* ============================================================
   CACHETAS — Footer Global
   /css/footer.css
   ============================================================ */
footer.site-footer {
  background: #0f0f14;
  color: rgba(255,255,255,.6);
  padding: 64px 0 28px;
}
footer.site-footer .footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
footer.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer.site-footer .footer-col h4 {
  color: white; font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 16px;
}
footer.site-footer .footer-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
footer.site-footer .footer-col ul a {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
footer.site-footer .footer-col ul a:hover { color: #FF5C2B; }

footer.site-footer .footer-bottom {
  max-width: 1180px; margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: .78rem;
}
footer.site-footer .footer-bottom a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
footer.site-footer .footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* Botón guías */
footer.site-footer .footer-guias-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF5C2B; color: white;
  font-weight: 600; font-size: .9rem;
  padding: 12px 22px; border-radius: 10px;
  text-decoration: none; transition: background .2s;
  margin-top: 8px;
}
footer.site-footer .footer-guias-btn:hover {
  background: #e04520;
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  footer.site-footer .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  footer.site-footer .footer-inner { grid-template-columns: 1fr; }
  footer.site-footer .footer-bottom { flex-direction: column; text-align: center; }
}