/** Shopify CDN: Minification failed

Line 273:14 Expected identifier but found whitespace
Line 273:15 Unexpected "'Flawsome'"
Line 295:17 Expected identifier but found whitespace
Line 295:27 Unexpected ";"
Line 304:2 Unexpected "/"
Line 328:3 Unexpected "/"

**/
.testimonials {
  overflow: hidden;
  padding-top: 100px;
}

.testimonials__slider {
  display: grid;
  grid-template-columns: minmax(0, 40px) minmax(0, 1fr) minmax(0, 40px);
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s linear;
  max-width: 1200px;
}
@media screen and (min-width: 990px) {
  .testimonials__slider {
    grid-template-columns: minmax(0, 100px) minmax(0, 1fr) minmax(0, 100px);
  }
}
@media screen and (min-width: 1330px) {
  .testimonials__slider {
    padding: 0 0.5rem;
    margin-bottom: 2rem;
  }
}

.testimonials__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  transition: all 0.2s ease-in;
  grid-column: 2/3;
  grid-row: 1/2;
}

.testimonials__text {
  margin-bottom: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 990px) {
  .testimonials__text {
/*     margin-bottom: 4.8rem; */
    margin-bottom: 2.8rem
  }
}

.testimonials__button {
  flex: none;
  margin-bottom: 8.2rem;
  padding: 0;
  width: 6.2rem;
  height: 3rem;
  color: rgba(var(--color-foreground-title), 1);
  background: none;
  border: none;
  transition: var(--duration-default);
  transform: scale(1);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .testimonials__button {
    margin-bottom: 7rem;
  }
}

.testimonials__slide-text {
  margin: 0 auto;
  max-width: 90rem;
  opacity: 0;
}
.testimonials__slide-text.visible {
  opacity: 1;
}
.testimonials__slide-text .line {
  overflow: hidden;
}
.testimonials__slide-text .line > * {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}
@media screen and (max-width: 990px) {
  
  .testimonials__slide-text {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  .testimonials__slide-text {
    font-size: 24px;
  }
}

.testimonials__slider .is-selected .line > * {
  animation: slide-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: forwards;
}

@keyframes slide-in {
  from {
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.testimonials__slide-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: left;
  margin-top: 4.8rem;
  font-size: 1.2rem;
}

.testimonials__slide-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.testimonials__slide-name {
  color: rgba(var(--color-foreground));
}

.testimonials_placeholder,
.testimonials__slide-image {
  flex: none;
  width: 4.2rem;
  height: 4.2rem;
  background-color: #fefefe;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials_placeholder path {
  transform: scale(2);
  transform-origin: 50% 50%;
}

@media screen and (max-width: 768px) {
  .testimonials__button {
    width: 3rem;
  }
  .testimonials__slide-meta {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 360px) {
  .testimonials__slide-meta {
    flex-direction: column;
    align-items: center;
  }
}
.testimonials__button--prev {
  grid-row: 1/2;
  grid-column: 1/2;
}

.testimonials__button--next {
  grid-row: 1/2;
  grid-column: 3/4;
  justify-self: flex-end;
}

.testimonials__slide {
  width: 100%;
  text-align: center;
  grid-column: 1/2;
  grid-row: 1/2;
  opacity: 0;
  transition: all 0.3s linear;
  visibility: hidden;
  z-index: 1;
}

.testimonials__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.testimonials__slide .line {
  overflow: hidden;
}

.testimonials__slide .line > * {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}

.testimonials__slide.active .line > * {
  animation: slide-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: forwards;
}

@keyframes slide-in {
  from {
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* Asegúrate de que el contenedor principal del texto tenga posicionamiento relativo */
.testimonials__text {
  position: relative; /* CLAVE: Permite posicionar absolutamente a sus hijos */
  text-align: center; /* Mantenemos centrado el contenido */
  /* padding-top: 50px; */ /* Podrías necesitar un padding superior para el contenido del texto si la imagen se superpone mucho al título */
  /* margin-top: 50px; */ /* Puedes ajustar los márgenes de testimonials__text si es necesario */
}

.testimonials__heading-image-wrapper {
  position: absolute; /* CLAVE: Posicionamiento absoluto respecto a .testimonials__text */
  top: -110px; /* Ajusta este valor para mover la imagen más arriba o más abajo */
  left: 50%; /* Centra horizontalmente */
  transform: translateX(-50%); /* Ajuste fino para centrar realmente */
  z-index: 1; /* Asegura que esté por encima del texto del subtítulo */
  /* Eliminamos text-align: center de aquí porque el posicionamiento absoluto se encarga */
}

.testimonials__heading-image {
  width: 350px;
  height: auto;
}

.subtitle {
  position: relative; /* CLAVE: Para que el z-index lo ponga por encima o por debajo de la imagen */
  z-index: 2; /* Asegura que el texto del subtítulo esté por encima de la imagen */
  margin-top: 40px; /* Ejemplo: Puedes ajustar este valor si la imagen se solapa mucho con el texto RECENSIONI */
  color: #C0A145; /* Color del texto "RECENSIONI" según tu imagen de referencia */
  font-family: 'Roboto', sans-serif; /* Ajusta la fuente si es diferente */
  font-size: 1.1em; /* Ajusta el tamaño de la fuente */
  letter-spacing: 4px; /* Espaciado de letras */
  text-transform: uppercase; /* Convertir a mayúsculas */
}


@media (max-width: 768px) {
  .testimonials__heading-image {
    max-width: 250px; /* Más pequeña en móviles */
  }
  .subtitle {
    margin-top: 30px; /* Ajuste de margen para móviles */
  }
  .testimonials__slide-text {
    font-size: 1.8em;
    padding: 0 15px;
  }

  .subtitle {
    font-size: 0.9em;
  }
}

/* /* Resto de tu CSS para .testimonials__slide-text, etc. */
/* .testimonials__slide-text {
  color: #404040; /* Color del texto de la cita */
  font-family: 'Flawsome', sans-serif; /* O la fuente que uses para la cita */
  font-size: 2.5em; /* Ajusta el tamaño de la cita */
  line-height: 1.3;
  max-width: 800px; /* Controla el ancho de la cita */
} */

.testimonials__slide-meta {
  display: flex;
  flex-direction: column; /* Apila la imagen de perfil y el nombre */
  align-items: center; /* Centra horizontalmente */
  gap: 10px; /* Espacio entre imagen y nombre */
}

.testimonials__slide-image {
  border-radius: 50%; /* Para hacer la imagen redonda */
  object-fit: cover; /* Asegura que la imagen de perfil no se deforme */
}

/* .testimonials__slide-name {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: #404040; /* Color del nombre */
  text-transform: uppercase;
  font-size: 1em;
}

.testimonials__slide-position { /* Si tienes posición, aunque en la imagen no se ve */
  font-family: 'Roboto', sans-serif;
  color: #666;
  font-size: 0.9em;
}
 */

/* Media Queries (ajusta según necesites, aquí algunos ejemplos) */
@media (max-width: 768px) {
  .testimonials__heading-image-wrapper {
    top: -20px; /* Ajuste para móviles */
 
  }
  .testimonials__heading-image {
    max-width: 100px; /* Más pequeña en móviles */
  }
  .subtitle {
    margin-top: 30px; /* Ajuste de margen para móviles */
  }
  .testimonials__slide-text {
    font-size: 1.8em;
    padding: 0 15px; /* Añadir padding horizontal para texto en móviles */
  }
}

@media (max-width: 480px) {
  .testimonials__slide-text {
    font-size: 1.3em;
  }
} */