/* Estilos para a seção de depoimentos */
.testimonials {
  padding: 5rem 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><text x="0" y="15" font-family="Arial" font-size="20" fill="rgba(0,0,0,0.03)">"</text></svg>');
  background-repeat: repeat;
  opacity: 0.5;
  z-index: 0;
}

.testimonials-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  margin-top: 2.5rem;
}

.testimonial-content {
  position: relative;
  padding-left: 2rem;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -1rem;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: Georgia, serif;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--primary-color);
}

.testimonial-position {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.testimonial-company {
  font-weight: 500;
}

.testimonial-rating {
  display: flex;
  margin-top: 0.5rem;
}

.testimonial-rating i {
  color: #FFD700;
  margin-right: 0.2rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-color);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-arrow:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.testimonial-prev {
  left: 10px;
}

.testimonial-next {
  right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-content {
    padding-left: 1.5rem;
  }
  
  .testimonial-arrow {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  
  .testimonial-content::before {
    font-size: 3rem;
  }
}
