/* ═══════════════════════════════════════════════════════════════
   FOOTER — Contacto y créditos
   Sección 10 de Blindafon Landing Page
   ═══════════════════════════════════════════════════════════════ */

#footer {
  background-color: var(--navy);
  padding: 32px var(--pad-mobile) 28px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ── Contacto ─────────────────────────────────────────────────── */

.footer-contacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-titulo-contacto {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ── Íconos de redes ─────────────────────────────────────────── */

.footer-redes {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-red {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.footer-red:hover {
  color: #ffffff;
  border-color: var(--orange);
  background-color: rgba(241, 139, 59, 0.12);
  transform: translateY(-3px);
}

.footer-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  overflow: visible;
  display: block;
}

/* ── Divider ─────────────────────────────────────────────────── */

.footer-divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

/* ── Créditos ─────────────────────────────────────────────────── */

.footer-creditos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-powered {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-alsai {
  color: var(--orange);
  font-weight: 600;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Desktop
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  #footer {
    padding: 40px var(--pad-desktop) 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESIBILIDAD — reduce motion
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .footer-red {
    transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
  }

  .footer-red:hover {
    transform: none;
  }
}
