.depoimentos-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.depoimentos-carousel {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.depoimentos-slide {
  flex: 0 0 33.333%;
  min-width: 33.333%;
  padding: 20px;
}

.depoimentos-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.nav-button {
  background: #707362;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background: #5a5c4e;
}

.nav-button svg {
  width: 20px;
  height: 20px;
}

.depoimento-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.depoimento-nome {
  font-size: 1.2em;
  color: #707362;
  margin-bottom: 10px;
  font-weight: 600;
}

.depoimento-stars {
  color: #707362;
  margin-bottom: 15px;
}

.depoimento-texto {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .depoimentos-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
} 