/** Shopify CDN: Minification failed

Line 147:0 Unexpected "<"
Line 153:13 Expected identifier but found whitespace
Line 153:15 Unexpected "{"
Line 153:24 Expected ":"
Line 181:13 Expected identifier but found whitespace
Line 181:15 Unexpected "{"
Line 181:24 Expected ":"
Line 246:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

  .carrossel-wrapper {
    position: relative;
    overflow: hidden;
  }

  .carrossel-videos {
    font-family: 'Poppins', sans-serif;
    padding: 2rem 0 1rem;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .video-card {
    min-width: 140px;
    max-width: 180px;
    background: #000;
    color: white;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    flex: 0 0 auto;
  }

  .video-card video {
    width: 100%;
    height: auto;
    display: block;
  }

  .video-card .info {
    padding: 0.5rem;
    background: rgba(0,0,0,0.6);
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .video-card .info .title {
    font-size: 0.6rem;
    font-weight: 600;
    max-height: 1.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .video-card .info .price {
    margin: 0.0rem 0;
    font-size: 0.69rem;
  }

  .video-card button {
    width: 100%;
    padding: 0.0rem 0.3rem;
    font-size: 0.6rem;
    background: white;
    color: black;
    border: none;
    border-radius: 4px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s;
  }

  .video-card button:hover {
    background: #ddd;
  }

  @media (min-width: 768px) {
    .carrossel-videos {
      gap: 3rem;
    }
    .video-card {
      min-width: 220px;
      max-width: 260px;
    }
    .video-card .info .title {
      font-size: 0.85rem;
      max-height: 2.8em;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .video-card .info .price {
      font-size: 0.8rem;
    }
    .video-card button {
      font-size: 0.75rem;
    }
  }

  /* Setas laterais */
  .carrossel-seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }

  .carrossel-seta:hover {
    background: rgba(0,0,0,0.7);
  }

  .carrossel-seta.esquerda {
    left: 10px;
  }

  .carrossel-seta.direita {
    right: 10px;
  }
<style>
/* Importando fonte Michroma */
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* ===== Estrutura Geral ===== */
.testimonials-section {
  background: {{ section.settings.background_color }};
  padding: 40px 20px 50px;
  font-family: sans-serif; /* Fonte padrão para textos */
}

.testimonials-section .testimonials-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 30px;
  text-align: center;
  font-family: 'Michroma', sans-serif !important; /* Fonte só no título */
}

/* ===== Carrossel ===== */
.testimonials-section .testimonials-carousel {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 18px;
}

/* ===== Card ===== */
.testimonials-section .testimonial-card {
  flex: 0 0 50%;
  max-width: 260px;
  background: {{ section.settings.card_background }};
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  scroll-snap-align: center;
  margin: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.testimonials-section .testimonial-card img.product {
  display: block;
  width: 100%;
  height: 160px; /* Ajustável */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: 0;
}

/* Conteúdo interno com padding */
.testimonials-section .testimonial-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Estrelas + texto */
.testimonials-section .testimonial-stars {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.testimonials-section .testimonial-text {
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 12px;
}

/* Rodapé */
.testimonials-section .testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
}
.testimonials-section .testimonial-footer img.person {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.testimonials-section .testimonial-footer span {
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== Desktop ===== */
@media (min-width: 769px) {
  .testimonials-section .testimonial-card {
    flex: 0 0 22%;
    max-width: 260px;
  }
}
</style>