/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 22:13 Expected identifier but found whitespace
Line 22:15 Unexpected "{"
Line 22:24 Expected ":"
Line 50:13 Expected identifier but found whitespace
Line 50:15 Unexpected "{"
Line 50:24 Expected ":"
Line 115:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<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>