/* Overrides y ajustes puntuales del sitio */

/* Iconos sociales del top header: más contraste y look moderno */
.w3l-top-header .top-headers ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.w3l-top-header .top-headers ul li {
  display: flex;
  align-items: center;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.top-social-link:hover,
.top-social-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  outline: none;
}

.top-social-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.45));
}

