/* Selector de idioma */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #475569;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.lang-switcher__btn:hover {
  color: #6d28d9;
  border-color: #c4b5fd;
  background: #faf5ff;
}

.lang-switcher__code {
  min-width: 1.25rem;
  text-align: center;
}

.lang-switcher__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 80;
  min-width: 10rem;
  padding: 0.35rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.lang-switcher__form {
  margin: 0;
}

.lang-switcher__option {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  color: #334155;
  text-align: left;
}

.lang-switcher__option:hover {
  background: #f8fafc;
  color: #6d28d9;
}

.lang-switcher__option.is-active {
  background: #f5f3ff;
  color: #6d28d9;
  font-weight: 600;
}

.lang-switcher__option-code {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0.7;
  min-width: 1.5rem;
}
