.reviews-slider {
	width: 100%;
	max-width: 650px;
	margin: 40px auto;
	padding: 100px 40px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Flechas */
.arrow {
	font-size: 28px;
	color: #666;
	cursor: pointer;
	user-select: none;
	transition: 0.3s;
}

	.arrow:hover {
		color: #000;
	}

 .reviews-wrapper {
	flex: 1;
	position: relative;
	height: 150px; 
}

 .review {
	position: absolute;
	width: 100%;
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.5s ease;
	text-align: center;
}

	.review.active {
		opacity: 1;
		transform: translateX(0);
	}

.text {
	font-size: 1.15rem;
	line-height: 1.5;
	margin-bottom: 10px;
	color: #333;
}

.author {
	font-weight: bold;
	color: #555;
	margin-top: 5px;
}

.stars {
	color: #FFD700;
	font-size: 20px;
	margin-top: 5px;
}
