/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background: linear-gradient(135deg, var(--teal-muy-oscuro) 0%, var(--teal-oscuro) 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 2rem 2rem;
  text-align: center;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

/* Línea de acento arriba */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--lima) 50%, var(--cian) 100%);
  opacity: 0.6;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.site-footer h3 {
  font-family: var(--fuente-display);
  color: var(--blanco);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.site-footer p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.site-footer .copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(68, 220, 241, 0.15);
  font-size: 0.8rem;
  opacity: 0.5;
}
