/* SECTION DEPOIMENTOS */
.testimonials-section {
   margin: var(--space-xxl) auto;
}

.testimonials-wrapper {
   background: var(--card);
   border-radius: var(--radius-xl);
   padding: var(--space-xl);
   box-shadow: var(--shadow-md);
   border: 1px solid rgba(255,255,255,0.6);
}

/* SLIDER CONTAINER */
.testimonials-slider {
   position: relative;
   overflow: hidden;
   margin: 0 auto;
   max-width: 800px;
}

.testimonials-track {
   display: flex;
   transition: transform 0.5s ease-in-out;
}

/* CARD DE DEPOIMENTO */
.testimonial-card {
   flex: 0 0 100%;
   min-width: 100%;
}

.testimonial-content {
   background: var(--bg);
   border-radius: var(--radius-lg);
   padding: var(--space-xl);
   border: 1px solid rgba(59,102,245,0.1);
   text-align: center;
   position: relative;
}

/* ASPAS DECORATIVAS */
.testimonial-quote {
   margin-bottom: var(--space-md);
}

.testimonial-quote i {
   width: 32px;
   height: 32px;
   opacity: 0.7;
}

/* TEXTO DO DEPOIMENTO - FORMATAÇÃO ELEGANTE */
.testimonial-text {
   font-size: 1.1rem;
   line-height: 1.7;
   color: var(--muted);
   font-style: normal; /* Remove itálico para melhor legibilidade */
   margin-bottom: var(--space-lg);
   position: relative;
   quotes: "“" "”" "‘" "’"; /* Suporte a aspas elegantes */
}

.testimonial-text::before {
   content: "“";
   font-size: 3rem;
   color: var(--primary);
   opacity: 0.3;
   position: absolute;
   left: -20px;
   top: -10px;
   font-family: serif;
}

.testimonial-text::after {
   content: "”";
   font-size: 3rem;
   color: var(--primary);
   opacity: 0.3;
   position: absolute;
   right: -20px;
   bottom: -30px;
   font-family: serif;
}

/* INFORMAÇÕES DO AUTOR */
.testimonial-author {
   border-top: 1px solid rgba(0,0,0,0.05);
   padding-top: var(--space-md);
   margin-top: var(--space-lg);
}

.author-name {
   font-weight: 700;
   color: var(--text);
   margin-bottom: var(--space-xs);
   font-size: 1rem;
}

.author-role {
   font-size: 0.9rem;
   color: var(--primary);
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.05em;
}

/* CONTROLES DO SLIDER */
.testimonials-controls {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: var(--space-md);
   margin-top: var(--space-xl);
}

.testimonial-prev,
.testimonial-next {
   background: var(--primary);
   color: white;
   border: none;
   border-radius: 50%;
   width: 48px;
   height: 48px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: all 0.2s ease;
   box-shadow: var(--shadow-sm);
}

.testimonial-prev:hover,
.testimonial-next:hover {
   background: var(--primary-dark);
   transform: translateY(-2px);
   box-shadow: var(--shadow-md);
}

.testimonials-dots {
   display: flex;
   gap: var(--space-sm);
}

.testimonials-dots .dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--muted-light);
   cursor: pointer;
   transition: all 0.2s ease;
}

.testimonials-dots .dot.active {
   background: var(--primary);
   transform: scale(1.2);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
   .testimonials-wrapper {
      padding: var(--space-lg);
   }
   
   .testimonial-content {
      padding: var(--space-lg);
   }
   
   .testimonial-text {
      font-size: 1rem;
   }
   
   .testimonial-text::before {
      left: -10px;
      top: -5px;
      font-size: 2.5rem;
   }
   
   .testimonial-text::after {
      right: -10px;
      bottom: -25px;
      font-size: 2.5rem;
   }
}

@media (max-width: 480px) {
   .testimonials-wrapper {
      padding: var(--space-md);
   }
   
   .testimonial-content {
      padding: var(--space-md);
   }
   
   .testimonials-controls {
      margin-top: var(--space-lg);
   }
   
   .testimonial-text::before,
   .testimonial-text::after {
      display: none; /* Remove aspas decorativas em mobile muito pequeno */
   }
}