/**
 * Indicadores de confianca (Trust Badges) - sutis, sem selo colorido de
 * e-commerce. Reutilizado no rodape, formulario de contato do corretor,
 * modal de Proposta e painel de Agendamento de Visita.
 */

.threeb-trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.threeb-trust__item {
	display: flex;
	align-items: center;
	gap: 7px;
}

.threeb-trust__icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.threeb-trust__item span {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Fundo verde-escuro (rodape, offcanvas nativo do Houzez). */
.threeb-trust--dark {
	border-top: 1px solid rgba(184, 152, 85, 0.14);
	padding: 18px 0;
}
.threeb-trust--dark .threeb-trust__icon {
	stroke: #b89855;
	opacity: 0.9;
}
.threeb-trust--dark .threeb-trust__item span {
	color: rgba(255, 255, 255, 0.6);
}

/* Fundo claro (card de contato no imovel, modal branco de Proposta). */
.threeb-trust--light {
	border-top: 1px solid rgba(28, 58, 39, 0.08);
	padding: 14px 0 2px;
	margin-top: 6px !important;
}
.threeb-trust--light .threeb-trust__icon {
	stroke: #b89855;
}
.threeb-trust--light .threeb-trust__item span {
	color: #8a8f8b;
}

@media (max-width: 767px) {
	.threeb-trust {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
}
