.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0d1b2a;  /* Azul oscuro elegante */
  color: white;
  padding: 15px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  width: 160px;
  height: 40px;
  object-fit: contain;
}

.footer-center {
  flex: 2;
  text-align: center;
  line-height: 1.5;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); /* Iconos en blanco */
  transition: transform 0.2s ease, filter 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  filter: brightness(1) invert(0); /* Color original al pasar mouse */
}
