/* Estilização da seção de depoimentos */
.testimonial-section {
  padding: 40px 20px;
  background: #f0f2f4;
  color: #1b1c1e;
  text-align: center;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  border-bottom: 2px solid #6dbbaa;
  padding: 20px;
  width: 45%;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.13);
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(31, 31, 31, 0.2);
}

/* Foto do cliente */
.client-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid #6dbbaa;
}

/* Nome do cliente e cargo */
h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.role {
  font-size: 14px;
  color: #6dbbaa;
  display: block;
  margin-bottom: 10px;
}

/* Estrelas */
.stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 12px;
}

.stars i {
  font-size: 20px;
  color: #ffcc00;
  transition: transform 0.3s ease-in-out;
}

/* Efeito de brilho nas estrelas */
.stars i:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px rgba(255, 204, 0, 0.6));
}

/* Texto do depoimento */
.testimonial-text {
  font-size: 14px;
  color: #54575c;
  line-height: 1.4;
  font-style: italic;
}
.testimonial-text span {
  font-size: 14px;
  color: #54575c;
  line-height: 1.4;
}

/* Configuração base do texto oculto */
.more-text {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out,
    transform 0.5s ease-in-out;
  transform: translateY(-5px);
}

/* Quando expandido */
.more-text.show {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

/* Botão Expandir */
.expand-btn {
  background: #6dbbaa;
  color: white;
  border: none;
  padding: 8px 15px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.expand-btn:hover {
  background: #56a191;
  transform: scale(1.05);
}

/* 🎨 Linha Degradê (Separador Sutil) */
.section-separator-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6dbbaa, #1b1c1e);
  margin: 40px 0; /* Espaçamento entre as seções */
  border-radius: 50px;
}
.botao-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #6dbbaa;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  transition: 0.3s;
}
.botao-flutuante:hover {
  background: #487c71;
}
