/** Shopify CDN: Minification failed

Line 49:0 Unexpected "<"
Line 87:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.icon-boxes {
  text-align: center;
  padding: 40px 0;
  margin: 40px 0;
}

.icon-box {
  display: inline-block;
  margin: 0 20px;
  padding: 20px;
  border-radius: 4px;
  border: 0;
}


.icon-box .icon {
  width: 100px; /* Ajusta el ancho como sea necesario */
  height: 100px; /* Ajusta la altura como sea necesario */
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box .icon img {
  max-width: 100%; /* Asegura que el icono sea responsive y no exceda el tamaño de su contenedor */
  height: auto;
}

.icon-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333; /* Cambia el color del título si es necesario */
}

.icon-box p {
  font-size: 14px;
  color: #666; /* Cambia el color del texto si es necesario */
}
<style>
.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.testimonial {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  transition: box-shadow 0.3s ease;
}
.testimonial:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-content {
  flex: 1;
}
.testimonial-name {
  font-weight: bold;
}
.testimonial-location {
  color: #666;
  font-size: 0.9em;
}
.testimonial-stars {
  color: gold;
  margin-bottom: 0.5rem;
}
</style>