/* ===== SELECTOR DE IDIOMA ===== */
.lang-selector {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 30px;
  padding: 6px 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.lang-selector a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.lang-selector a:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.lang-selector a.active {
  color: #ffca00;
  background: rgba(255,202,0,0.15);
  font-weight: 600;
}

.lang-selector .lang-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.lang-selector .lang-flag {
  font-size: 1rem;
  line-height: 1;
}
