/* CSS do Componente */
.testimonial-section {
  padding: 30px;
  background-color: #f9f9f9;
  text-align: center;
}

.titulo-depoimentos {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

#testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.depoimento {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.depoimento p {
  font-style: italic;
  color: #555;
}

.depoimento span {
  display: block;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}
