.loop-depoimentos {
	border-top: 1px solid rgba(154, 154, 154, 0.2);
	border-bottom: 1px solid rgba(154, 154, 154, 0.2);
}

.loop-depoimentos__container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.loop-depoimentos__heading {
	max-width: 460px;
	text-align: center;
}

.loop-depoimentos__heading>* {
	margin-bottom: 0;
}

.loop-depoimentos__heading :is(h1, h2, h3, h4, h5, h6) {
	font-weight: 700;
	font-size: var(--fs-3);
	line-height: 1.25;
}

.loop-depoimentos__carousel {
	width: 100%;
	position: relative;
	padding: 60px 40px;
}

.loop-depoimentos-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	height: 100%;
	padding: 24px 18px;
	background: var(--cor-branco);
	border-radius: var(--radius-sm, 5px);
	opacity: 0.8;
	transform: scale(0.9);
	transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.swiper-slide-active .loop-depoimentos-card {
	opacity: 1;
	transform: scale(1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.loop-depoimentos-card__avatar {
	flex-shrink: 0;
	width: 71px;
	height: 71px;
	border-radius: 50%;
	overflow: hidden;
	background: rgba(0, 0, 0, .06);
}

.loop-depoimentos-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.loop-depoimentos-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

.loop-depoimentos-card__name {
	font-weight: 700;
	font-size: var(--fs-6);
	color: #2b2b2b;
	margin: 0;
}

.loop-depoimentos-card__text {
	font-size: var(--fs-7);
	line-height: 1.4;
	color: #2b2b2b;
	margin: 0;
}

.loop-depoimentos-empty {
	padding: var(--spacing-lg);
	border: 1px dashed rgba(107, 114, 128, 0.4);
	border-radius: var(--radius-md);
	text-align: center;
	color: #757575;
}

@media (max-width: 767px) {
	.loop-depoimentos__carousel {
		padding: 0 8px;
	}
}