.Portinho__language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 14px 20px;
  background-color: #ffffff;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}

.Portinho__lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a3c6e;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: opacity 0.2s ease;
}

.Portinho__lang-btn:hover {
  opacity: 0.65;
}

.Portinho__lang-btn img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

/* Idioma ativo (página atual) */
.Portinho__lang-btn.active {
  color: #1a3c6e;
  font-weight: 700;
}

/* Mobile: esconde os textos, mostra só as bandeiras */
@media only screen and (max-width: 991px) {
  .Portinho__language-switcher {
    gap: 20px;
    padding: 10px 16px;
  }

  .Portinho__lang-btn span {
    display: none;
  }

  .Portinho__lang-btn img {
    width: 30px;
    height: 30px;
  }
}