/* ==========================================================================
   Depoimentos — widget Elementor "Depoimentos (Slider)".
   ========================================================================== */

.sm-testimonials {
	width: 100%;
}

.sm-testimonials__item {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 10px 0;
}

.sm-testimonials__image {
	flex: 0 0 42%;
	max-width: 42%;
}

.sm-testimonials__image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
}

.sm-testimonials__content {
	flex: 1;
	min-width: 0;
}

.sm-testimonials__quote {
	display: block;
	line-height: 0.4;
	color: #FFC300;
	font-family: 'Nunito', 'Roboto', sans-serif;
	font-weight: 800;
}

.sm-testimonials__quote::before {
	content: "\201C";
}

.sm-testimonials__text {
	color: #fff;
	font-family: 'Work Sans', sans-serif;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 16px;
}

.sm-testimonials__text p {
	margin: 0;
	padding: 0;
}

.sm-testimonials__user {
	margin: 0 0 4px;
	color: #FFFFFF;
	font-family: 'Inter', 'Nunito', sans-serif;
	font-size: clamp(18px, 2vw, 25px);
	font-weight: 700;
	line-height: 1.3;
}

.sm-testimonials__company {
	margin: 0;
	color: rgba(255,255,255,0.85);
	font-family: 'Inter', 'Roboto', sans-serif;
	font-size: clamp(15px, 1.5vw, 20px);
	font-style: italic;
	line-height: 1.4;
}

/* Setas */
.sm-testimonials .sm-carousel__arrow {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sm-testimonials .sm-carousel__arrow:hover {
	background-color: #fdc500;
}

.sm-testimonials .sm-carousel__dots {
	margin-top: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
	.sm-testimonials__item {
		gap: 20px;
	}
	.sm-testimonials__image {
		flex: 0 0 45%;
		max-width: 45%;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.sm-testimonials__item {
		flex-direction: column;
		text-align: center;
		gap: 16px;
		padding: 0 0 40px;
	}

	.sm-testimonials__image {
		flex: none;
		max-width: 100%;
		width: 100%;
		position: relative;
		padding-bottom: 50px;
	}

	.sm-testimonials__image img {
		width: 100%;
		border-radius: 16px;
	}

	.sm-testimonials__text {
		font-size: 17px;
		line-height: 1.5;
		margin-bottom: 12px;
	}

	.sm-testimonials__user {
		font-size: 18px;
	}

	.sm-testimonials__company {
		font-size: 14px;
	}

	/* Setas espaçadas abaixo da imagem */
	.sm-testimonials .sm-carousel__arrow {
		top: auto;
		bottom: 0;
		width: 36px;
		height: 36px;
		transform: none;
		background: rgba(255,255,255,0.95);
		position: absolute;
	}

	.sm-testimonials .sm-carousel__arrow--prev {
		left: calc(50% - 46px);
	}

	.sm-testimonials .sm-carousel__arrow--next {
		left: calc(50% + 10px);
		right: auto;
	}

	.sm-testimonials .sm-carousel__dots {
		margin-top: 8px;
	}
}
