/* Carrossel de Testemunhos */
.testemunhos-cards {
  min-height: 300px;
}
.testemunhos-card {
  background: #F0FAFF;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  transition: box-shadow 0.2s;
  /* NOVO: responsividade */
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
.testemunhos-card svg {
  margin-bottom: 1.5rem;
}
.testemunhos-card hr {
  width: 80%;
  margin: 1.5rem auto 1rem auto;
  border-color: #b3e5fc;
}
.testemunhos-card .nome {
  font-weight: bold;
  color: #222;
}
.testemunhos-card .data {
  color: #888;
  font-size: 0.95rem;
}
.testemunhos-bolinhas button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b3e5fc;
  border: none;
  transition: background 0.2s;
  cursor: pointer;
}
.testemunhos-bolinhas button.active {
  background: #29B6F6;
}
.testemunhos-prev, .testemunhos-next {
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .testemunhos-card {
    min-height: 200px;
    padding: 1.2rem;
    max-width: 95vw;
  }
} 