 /* FOOTER ESTILOS */



.site-footer {
  
  color:var(--color-texto);
  
}

.site-footer .footer-logo img,
.site-footer .footer-logo .custom-logo {
  max-width: 160px;
  height: auto;
}

.site-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.site-footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.site-footer .social-icon:hover {
  background-color: rgba(255,255,255,0.15);
}

.site-footer .footer-text {
  color: var(--color-texto);
  margin-top: 1rem;
}
.site-footer a,
.site-footer .social-icon {
  text-decoration: none;
}

