/* ============================================================
   Seletor de idioma no topo (header)
   ============================================================ */
.header__container {
	position: relative;
}

.langswitch {
	position: absolute;
	top: 12px;
	right: 16px;
	z-index: 10;
}

.langswitch__list {
	display: flex;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.langswitch__item {
	margin: 0;
}

.langswitch__link {
	display: inline-block;
	padding: 3px 8px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	color: #707B7C;
	border: 1px solid #d0d3d4;
	border-radius: 3px;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.langswitch__link:hover,
.langswitch__link:focus {
	color: #fff;
	background: #707B7C;
	border-color: #707B7C;
}

.langswitch__item--active .langswitch__link {
	color: #fff;
	background: #707B7C;
	border-color: #707B7C;
	cursor: default;
}

/* Em telas pequenas, mantém o seletor visível e acessível */
@media screen and (max-width: 766px) {
	.langswitch {
		top: 8px;
		right: 8px;
	}

	.langswitch__link {
		padding: 2px 6px;
		font-size: 11px;
	}
}
