/* ═══════════════════════════════════════════════
   FOOTER.CSS — Footer & Cursor
   ReaperTech © 2026
═══════════════════════════════════════════════ */

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease), height .2s var(--ease), opacity .2s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,241,53,.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .1s linear;
}

/* ── FOOTER ── */
footer {
  background: var(--ink2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 48px 36px;
}

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

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}

/* ── LOGO EN FOOTER (hereda de nav.css) ── */
/* Los estilos de .nav-logo y .nav-logo-img están en nav.css */

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 260px;
  margin-top: 14px;
}

/* ── FOOTER LINKS ── */
.footer-links-col { }

.footer-col-titulo {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--cream); }

/* ── FOOTER STATUS ── */
.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--accent);
  margin-top: 14px;
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseGlow 2s ease-in-out infinite;
}

/* ── FOOTER BOTTOM ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 11px;
  color: var(--dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-legal a {
  font-size: 11px;
  color: var(--dim);
  text-decoration: none;
  transition: color .2s;
}

.footer-legal a:hover { color: var(--muted); }

/* ── RESPONSIVE ── */
@media (min-width: 1400px) {
  footer { padding: 64px 80px 48px; }
  .footer-inner { max-width: 1280px; }
}
@media (max-width: 900px) {
  .cursor, .cursor-ring { display: none; }
  footer { padding: 40px 24px 28px; }
  .footer-top { gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  footer { padding: 32px 16px 24px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-tagline { max-width: 100%; }
}
