/** Shopify CDN: Minification failed

Line 375:1 Expected "}" to go with "{"

**/
/* Flickity */
.testimonials .flickity-slider {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.testimonials .flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.testimonials .flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.testimonials .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

testimonials-component {
  display: block;
  --block-width: 16rem;
}

@media screen and (min-width: 750px) {
  testimonials-component {
    --block-width: 18rem;
  }
}

@media screen and (max-width: 480px) {
  testimonials-component {
    --block-width: 14rem;
  }
}

testimonials-component[data-slider=false] .testimonial__list {
  max-width: 100%;
}

.testimonial__list-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: calc(var(--block-count) * var(--block-width) + calc(var(--block-width) / 2) + 4rem);
}

@media screen and (min-width: 750px) {
  .testimonial__list-wrapper {
    padding: 0 2rem;
  }
}

.testimonial__list {
  padding: 4rem 0;
  position: static;
  overflow: visible;
  display: flex;
  justify-content: center;
}

.testimonial__list::before,
.testimonial__list::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  z-index: 2;
  height: 100%;
  width: 20%;
  pointer-events: none;
}

.testimonial__list::before {
  left: -3.2rem;
  background-image: linear-gradient(to left, rgba(var(--color-background), 0) 0, rgba(var(--color-background), 0.5) 30%);
}

.testimonial__list::after {
  right: -3.2rem;
  background-image: linear-gradient(to right, rgba(var(--color-background), 0) 0, rgba(var(--color-background), 0.5) 30%);
}

@media screen and (max-width: 480px) {
  .testimonial__list::before,
  .testimonial__list::after {
    pointer-events: none;
    width: 30%;
  }

  .testimonial__list::before {
    left: 0;
  }

  .testimonial__list::after {
    right: 0;
  }
}

.testimonial__list .flickity-viewport {
  flex: 0 0 100%;
  width: 100%;
  min-height: 5rem;
  overflow: visible;
}

.testimonials .flickity-button {
  display: none;
}

@media screen and (min-width: 750px) {
  .testimonials .flickity-button {
    padding: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    z-index: 5;
    opacity: 0;
    color: rgb(var(--color-foreground));
    background-color: transparent;
    transition: opacity var(--duration-default) ease;
  }

  .testimonials .flickity-button.previous {
    left: 0;
    justify-content: flex-start;
  }
  
  .testimonials .flickity-button.next {
    right: 0;
    justify-content: flex-end;
  }

  .testimonials .flickity-prev-next-button .flickity-button-icon {
    width: 1.6rem;
    height: 1.6rem;
    position: static;
  }
  
  @media screen and (hover: hover) {
    testimonials-component:hover .flickity-button {
      opacity: 1;
    }
  }
}

.testimonial__item {
  width: var(--block-width);
}

.testimonial__image {
  border-radius: 1rem;
  max-width: 5rem;
  margin: auto;
  overflow: visible;
}

.testimonial__image .media {
  border-radius: 1rem;
  box-shadow: 0 1rem 1.5rem 0 rgba(var(--color-foreground), 0.06), 0 0.8rem 2.5rem 0 rgba(var(--color-foreground), 0.1);
  cursor: pointer;
  transition: transform var(--duration-default) ease;
  -webkit-clip-path: url(#testimonial-clip-path);
  clip-path: url(#testimonial-clip-path);
}

.testimonial__item.is-selected .testimonial__image .media {
  transform: scale(2);
}

.testimonial__item.is-next .testimonial__image .media,
.testimonial__item.is-previous .testimonial__image .media {
  transform: scale(1.2);
}

@media screen and (min-width: 750px) {
  .testimonial__item.is-selected .testimonial__image .media {
    transform: scale(2.4);
  }
  
  .testimonial__item.is-next .testimonial__image .media,
  .testimonial__item.is-previous .testimonial__image .media {
    transform: scale(1.4);
  }
}

.testimonial__item.is-selected {
  pointer-events: none;
}

.no-js .testimonial__item.is-selected .testimonial__image .media,
.no-js .testimonial__item.is-next .testimonial__image .media,
.no-js .testimonial__item.is-previous .testimonial__image .media {
  transform: none;
}

.testimonial__preview {
  left: 0;
  width: 100%;
}

.testimonial__preview.is-selected .testimonial__blockquote {
  transition: opacity var(--duration-default) ease var(--duration-long);
  animation: appear-up var(--duration-long) ease;
}

.testimonial__blockquote {
  padding: 0;
  margin: auto;
  border: none;
  font-style: normal;
  max-width: 72rem;
  text-align: center;
    opacity: 1 !important;

}

.testimonial__blockquote:empty {
  display: none;
}

.testimonial__blockquote .quote-icon {
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial__blockquote .icon-quote {
  width: 3rem;
  height: 3rem;
}

.testimonial__blockquote .rating {
  margin-bottom: 1rem;
}

.testimonial__blockquote {
  --letter-spacing: 0.2;
  --font-size: 1.8;
}

.testimonial__author {
  font-style: normal;
  display: block;
  margin-top: 1.5rem;
  font-style: italic;
}

.testimonial__author::before {
  content: '\2013 \0020';
}

.testimonial__author:empty {
  display: none;
}

.testimonial__previews {
  margin: 0 auto;
  max-width: calc(var(--block-count) * var(--block-width) + calc(var(--block-width) / 2) + 4rem);
  margin-top: 2rem;
  justify-items: center;
          min-width: fit-content;
}

@media screen and (min-width: 750px) {
  .testimonial__previews {
    margin-top: 4rem;
    padding: 0 2rem;
  }
}

@media screen and (min-width: 750px) {
  testimonials-component {
    --block-width: 100%;
  }

  .testimonial__item {
    width: 100% !important;
    max-width: none;
    padding: 2rem 4rem;
    box-sizing: border-box;
  }

  .testimonial__list {
    justify-content: center;
  }

  .testimonial__blockquote {
    max-width: 60rem;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .testimonial__author {
  display: block;
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(var(--color-foreground), 0.7);
  text-align: center; /* <- esto centra el texto */
}

  @media screen and (min-width: 750px) {
  .testimonial__author {
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.testimonial__rating-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.rating {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}



.testimonial__stars {
  display: flex !important;
  justify-content: center !important;
  gap: 0.2rem !important;
  margin: 1rem 0 !important;
  font-size: 1.4rem !important;
}

.testimonial__stars .star {
  color: #f5c518 !important;
  font-family: inherit !important;
  line-height: 1 !important;
}

  @media screen and (max-width: 749px) {
  .star {
    justify-content: center !important;
    margin-bottom: 1rem !important;
    text-align: center;
        font-size: 1.2rem; /* ligeramente más pequeño en móvil */

  }

  .testimonial__stars .star {
  }
}
  @media screen and (max-width: 749px) {
  .testimonial__blockquote {
    margin-top: 1rem;
  }
}




 