/* ── Braz Turismo · Filtro por Tipo ──────────────── */
.brt-filtro{
	border: 1px solid #E3DFD4;
	border-radius: 16px;
	background: #fff;
	padding: 18px 16px;
}
.brt-filtro--sticky{ position: sticky; top: 24px; }

.brt-filtro__title{
	margin: 0 0 12px;
	padding: 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #8a8275;
}

.brt-filtro__list{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.brt-filtro__item{
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 9px 12px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #3a423d;
	font: inherit;
	font-size: 14px;
	text-align: left;
	cursor: pointer;
	transition: background-color .12s ease, color .12s ease;
}
.brt-filtro__item:hover{ background: #f3f1ea; }

.brt-filtro__dot{
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	border-radius: 50%;
}
.brt-filtro__nome{ flex: 1; }
.brt-filtro__count{
	flex: 0 0 auto;
	min-width: 20px;
	padding: 1px 7px;
	border-radius: 999px;
	background: rgba(0,0,0,0.05);
	color: #8a8275;
	font-size: 11.5px;
	font-weight: 600;
	text-align: center;
}

/* Ativo */
.brt-filtro__item.is-active{
	background: #046929;
	color: #fff;
}
.brt-filtro__item.is-active .brt-filtro__count{
	background: rgba(255,255,255,0.22);
	color: #fff;
}
.brt-filtro__item.is-active:hover{ background: #046929; }

.brt-filtro--vazio{ color: #8a8275; font-size: 13px; text-align: center; }

/* ── Mobile: faixa de chips horizontal ──────────── */
@media (max-width: 768px){
	.brt-filtro--sticky{ position: static; }
	.brt-filtro__list{
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		gap: 8px;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
	}
	.brt-filtro__item{
		width: auto;
		white-space: nowrap;
		border: 1px solid #E3DFD4;
		border-radius: 999px;
		padding: 8px 14px;
	}
	.brt-filtro__item.is-active{ border-color: #046929; }
}
