/* JDServer-Webs v6.1 — modules/footer/footer.css
   Estilo Apple: minimalista, centrado, elegante
*/

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 28px 0 32px;
}

footer .container {
  text-align: center;
  font: 500 13px/1.6 system-ui, -apple-system, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  color: var(--muted);
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

footer .footer-text p {
  margin: 4px 0;
  color: var(--muted);
}

footer .footer-text b {
  color: var(--text);
  font-weight: 600;
}

/* Icono correo flotante */
.mail-link {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--muted);
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mail-link:hover {
  opacity: 1;
  transform: scale(1.1);
}
.mail-icon {
  width: 22px;
  height: 22px;
}
