.carousel-container {
  background-color: #eef5ff;
  display: flex;
  justify-content: center;
}
.carousel {
  position: relative;
  width: 90%;
  max-width: 950px;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}
.carousel-card {
  flex: 0 0 100%; /* <=== ESSENCIAL */
  min-height: 380px; /* ajuste conforme necessário */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
.testimonial-text p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6.4em; /* 4 linhas x 1.6em (ou ajuste se a fonte for diferente) */
}

.testimonial-text.expanded p {
  -webkit-line-clamp: unset;
  max-height: none;
  overflow: visible;
}

.show-more-btn {
  background: none;
  border: none;
  color: #e65c00;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  padding: 0;
  display: inline;
}


.quote-stars-wrapper {
  display: flex;
  justify-content: space-between; /* separa um para cada lado */
  align-items: center;
  margin-bottom: 5px; /* opcional */
}


.quote-icon svg {
  width: 40px;
  height: 40px;
  color: #fcbca1;
}
.carousel-card p {
  font-style: italic;
  margin: 5px 20px;
  color: #333;
  line-height: 1.6;
  font-size: 18px;
}
.stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.stars span {
  color: #ffcc00;
}
.stars small {
  background: #dbeafe;
  color: #d95f00;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 10px;
}
.profile {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.profile img {
  width: 48px;
  height: 48px;
  border-radius: 99px!important;
  margin-right: 12px;
}
.profile-name {
  font-size: 14px;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0;
  gap: 15px;
}
.carousel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 18px;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: #000; /* ou outra cor */
  transition: stroke 0.3s ease;
}

.carousel-btn:hover {
  background-color: #e65c00;
}
.carousel-btn:hover svg {
  stroke: white;
}

.carousel-btn:hover .icon {
  stroke: white;
}

.carousel-dots {
  display: flex;
  justify-content: center;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}
.carousel-dot.active {
  background: #f97316;
}
@media (max-width: 768px) {
  .carousel-card {
    padding: 16px 12px;
    font-size: 16px;
  }

  .carousel-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .profile-name {
    font-size: 13px;
  }

  .quote-icon svg {
    width: 28px;
    height: 28px;
  }
}