/* Footer Styles */
.site-footer {
  background: var(--acrylic-bg-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 162, 232, 0.25);
  color: var(--text-color);
}

.footer-brand {
  color: var(--highlight-color);
  font-family: var(--font-family-heading);
  letter-spacing: 1px;
}

.footer-heading {
  color: var(--heading-color);
  font-family: var(--font-family-heading);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.footer-text {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Listas de enlaces */
.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact-link,
.footer-credit a,
.footer-bottom a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
  color: var(--link-hover-color);
  padding-left: 4px;
}

.footer-contact-link {
  display: inline-block;
  font-weight: 500;
}

.footer-contact-link:hover,
.footer-credit a:hover,
.footer-bottom a:hover {
  color: var(--link-hover-color);
}

/* Redes sociales */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1.25rem;
  transition: color 0.25s ease;
}

.footer-social a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}

/* Barra inferior */
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-color);
}

.footer-credit {
  color: var(--text-color);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .footer-bottom .container {
    text-align: center;
  }
}
