@charset "UTF-8";

/* Seletor de idioma (login, recuperação de senha, etc.) */
.portal-lang {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portal-lang__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
  align-self: center;
}

.portal-lang__group {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(67, 89, 113, 0.06);
  border: 1px solid rgba(67, 89, 113, 0.1);
}

.dark-style .portal-lang__group {
  background: rgba(105, 108, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.07);
}

.portal-lang__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 1.875rem;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.portal-lang__btn .fi {
  font-size: 1.05rem;
  opacity: 0.5;
  transition: opacity 0.16s ease;
}

.portal-lang__btn:hover .fi,
.portal-lang__btn:focus-visible .fi {
  opacity: 0.92;
}

.portal-lang__btn.is-active {
  background: rgba(105, 108, 255, 0.14);
  border-color: rgba(105, 108, 255, 0.22);
  box-shadow: none;
}

.portal-lang__btn.is-active .fi {
  opacity: 1;
}

.dark-style .portal-lang__btn.is-active {
  background: rgba(105, 108, 255, 0.18);
  border-color: rgba(105, 108, 255, 0.28);
}

.portal-lang__btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(105, 108, 255, 0.35);
}
