.botao-comprar {
  background: linear-gradient(90deg, #009966, #33cc99);
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}
.botao-comprar:hover {
  background: #007755;
  transform: scale(1.05);
}
.depoimentos {
  background: #f5f9f7;
  padding: 50px 20px;
  border-radius: 20px;
  text-align: center;
  max-width: 1000px;
  margin: 50px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.depoimentos h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #008060; /* Verde sustentável */
  font-weight: bold;
}

.depoimento {
  margin-bottom: 25px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.depoimento:hover {
  transform: translateY(-5px);
}

.depoimento p {
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}

.depoimento span {
  display: block;
  font-weight: bold;
  color: #008060;
}
