/**
 * Testimonio Luma 360 - Estilos
 * Custom Luma Plugin
 * Título, logos, tarjetas de testimonios con estrellas
 * UX mobile: cards apiladas
 */

/* === CONTENEDOR === */
.testimonioluma360 {
	background: #f8f8f8;
	padding: 56px 24px;
}

.testimonioluma360__inner {
	max-width: 1100px;
	margin: 0 auto;
}

/* === TÍTULO === */
.testimonioluma360__title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	line-height: 1.2; 
	color: #1a1a1a;
	text-align: center;
	margin: 0 0 40px 0;
}

/* === LOGOS === */
.testimonioluma360__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 48px;
}

.testimonioluma360__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 120px;
	height: 48px;
}

.testimonioluma360__logo img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
}

.testimonioluma360__logo img:hover {
	opacity: 1;
}

/* === CARDS === */
.testimonioluma360__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.testimonioluma360__card {
	background: #fff;
	border-radius: 12px;
	padding: 28px 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
}

/* === ESTRELLAS === */
.testimonioluma360__stars {
	margin-bottom: 16px;
}

.testimonioluma360__star {
	color: #fbbf24;
	font-size: 18px;
	line-height: 1;
}

/* === TEXTO === */
.testimonioluma360__text {
	font-size: 15px;
	line-height: 1.6;
	color: #4a5568;
	margin: 0 0 20px 0;
	flex: 1;
}

/* === NOMBRE === */
.testimonioluma360__name {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a; 
	margin: 0 0 4px 0;
}

/* === CARGO / EMPRESA === */
.testimonioluma360__meta {
	font-size: 13px;
	color: #718096;
	margin: 0;
}

/* === RESPONSIVE: TABLET === */
@media (max-width: 1024px) {
	.testimonioluma360__cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
} 

/* === RESPONSIVE: MÓVIL === */
@media (max-width: 768px) {
	.testimonioluma360 {
		padding: 40px 16px;
	}

	.testimonioluma360__title {
		margin-bottom: 32px;
	}

	.testimonioluma360__logos {
		gap: 24px;
		margin-bottom: 36px;
	}

	.testimonioluma360__logo {
		max-width: 90px;
		height: 40px;
	}

	.testimonioluma360__cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.testimonioluma360__card {
		padding: 24px 20px;
	}
}

/* === MÓVIL PEQUEÑO === */
@media (max-width: 480px) {
	.testimonioluma360 {
		padding: 32px 12px;
	}

	.testimonioluma360__logos {
		gap: 16px;
		margin-bottom: 28px;
	}
}
