/* ==========================================
   EVVO Testimonios
   ========================================== */

.evvo-testimonios-simple {
	padding: 20px 10px;
	background: #fff;
}

.evvo-testimonios-container {
	max-width: 1200px;
	margin: 0 auto;
}

.evvo-testimonios-header {
	text-align: center;
	margin-bottom: 50px;
}

.evvo-testimonios-header h2 {
	font-size: 2rem;
	color: #1a3c1a;
	margin-bottom: 10px;
}

.evvo-testimonios-header p {
	color: #666;
	font-size: 1.1rem;
}

.evvo-testimonios-wrapper {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.evvo-testimonio-item {
	background: #f9f9f9;
	border-radius: 15px;
	overflow: hidden;
	transition: opacity .3s ease;
	opacity: 1;
}

.evvo-testimonio-imagen {
	height: 300px;
	overflow: hidden;
}

.evvo-testimonio-imagen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.evvo-testimonio-contenido {
	padding: 25px;
}

.evvo-stars {
	color: #ffc107;
	font-size: 1.5rem;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.evvo-testimonio-info {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.evvo-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.evvo-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.evvo-info-text {
	flex: 1;
}

.evvo-info-text h4 {
	margin: 0 0 5px 0;
	font-size: 1.2rem;
	color: #333;
}

.evvo-verified {
	background: #2e7d32;
	color: white;
	padding: 3px 10px;
	border-radius: 10px;
	font-size: .8rem;
	font-weight: 600;
	margin-right: 10px;
}

.evvo-country {
	font-size: 1.2rem;
}

.evvo-testimonio-text {
	font-size: .975rem;
	line-height: 1.5;
	color: #444;
	margin-bottom: 10px;
}

.evvo-testimonio-likes {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #e91e63;
}

.evvo-like-icon {
	font-size: .75rem;
}

.evvo-like-count {
	font-weight: 600;
}

.evvo-testimonios-dots {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 15px;
}

.evvo-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	background: #ddd;
	cursor: pointer;
	padding: 0;
	transition: all .3s;
}

.evvo-dot:hover {
	background: #bbb;
}

.evvo-dot-active {
	background: #2e7d32;
	transform: scale(1.2);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Desktop: Grid 3 columnas */
@media (min-width: 1024px) {
	.evvo-testimonios-wrapper {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
		max-width: 100%;
	}
	
	.evvo-testimonio-item {
		display: block;
		opacity: 1;
	}
	
	.evvo-testimonios-dots {
		display: none;
	}
}

/* Mobile/Tablet: Carrusel */
@media (max-width: 1023px) {
	.evvo-testimonio-item {
		display: none;
		opacity: 0;
	}
	
	.evvo-testimonio-item.evvo-testimonio-active {
		display: block;
		opacity: 1;
	}
}

/* Tablet: Imagen más alta */
@media (max-width: 1023px) and (min-width: 768px) {
	.evvo-testimonio-imagen {
		height: 550px;
	}
}

/* Mobile general */
@media (max-width: 768px) {
	.template-product .evvo-testimonios-simple {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding-left: 5px;
		padding-right: 5px;
		box-sizing: border-box;
	}
	
	.evvo-testimonios-container {
		max-width: 100%;
	}
	
	.evvo-testimonios-header h2 {
		font-size: 1.5rem;
	}
	
	.evvo-testimonio-imagen {
		height: 400px;
	}
	
	.evvo-testimonio-contenido {
		padding: 10px;
	}
	
	.evvo-avatar {
		width: 40px;
		height: 40px;
	}
	
	.evvo-info-text h4 {
		font-size: 1rem;
	}
	
	.evvo-testimonio-text {
		font-size: .975rem;
	}
}

/* Mobile pequeño */
@media (max-width: 480px) {
	.evvo-testimonios-header h2 {
		font-size: 1.3rem;
	}
	
	.evvo-testimonio-imagen {
		height: 350px;
	}
	
	.evvo-testimonio-text {
		font-size: .975rem;
	}
}