/* ============================================================
   InnovaBlack — Footer canónico (single source of truth)
   ============================================================
   Cambia este archivo → todas las páginas se actualizan.
   Las variables CSS tienen fallbacks por si la página no las define.
   ============================================================ */

#footer {
  padding: 72px 0 40px;
  background: var(--bg, #060606);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--body, 'DM Sans', system-ui, sans-serif);
  color: rgba(240, 236, 230, 0.85);
}

#footer .sec-inner {
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
  padding: 0 var(--pad-x, 80px);
}

#footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#footer .footer-logo {
  font-family: var(--display, 'Outfit', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--white, #f0ece6);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

#footer .footer-logo span {
  color: var(--gold, #c8a44e);
}

#footer .footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(240, 236, 230, 0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

#footer .footer-tagline strong {
  color: rgba(240, 236, 230, 0.85);
  font-weight: 600;
}

#footer .footer-cities {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  color: rgba(240, 236, 230, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#footer .footer-col-title {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 236, 230, 0.45);
  margin-bottom: 20px;
  font-weight: 500;
}

#footer .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

#footer .footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240, 236, 230, 0.7);
  transition: color 0.2s;
  text-decoration: none;
}

#footer .footer-links a:hover {
  color: var(--gold, #c8a44e);
}

#footer .footer-contact a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(240, 236, 230, 0.7);
  margin-bottom: 8px;
  transition: color 0.2s;
  text-decoration: none;
}

#footer .footer-contact a:hover {
  color: var(--gold, #c8a44e);
}

#footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

#footer .footer-copy {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  color: rgba(240, 236, 230, 0.35);
  letter-spacing: 0.04em;
  margin: 0;
}

@media (max-width: 1024px) {
  #footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  #footer {
    padding: 48px 0 32px;
  }
  #footer .sec-inner {
    padding: 0 24px;
  }
  #footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
