/**
 * Estilos para o Swiper de Depoimentos
 * 
 * @package OneMoving
 * @since 1.0.0
 */

/* Container principal do Swiper */
.testimonial-card {
  background: #FEF9F9;
  padding: 24px;
  border-radius: 16px;
}

.testimonial-card .testimonial-header {   
  margin-bottom: 16px;
}

.testimonial-card .testimonial-header .testimonial-service {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--e-global-color-text);
}

.testimonial-card .testimonial-body .testimonial-title h2 {
  font-size: 2rem;
  font-weight: 700;
}

.testimonial-card .testimonial-body .testimonial-role {
  font-size: 1rem;
  color: var(--e-global-color-text);
}

.testimonial-card .testimonial-body .testimonial-rate {
  margin-top: 24px;
  margin-bottom: 24px;
}

.testimonial-card .testimonial-body .testimonial-content {
  font-size: 1.25rem;
  color: var(--e-global-color-text);
}

/* ── Swiper Testimonials Styles ───────────────────────────── */
.testimonials-swiper-container {
  position: relative;
  width: 100%;
  padding: 0 20px;
}

.testimonials-swiper {
  width: 100%;
  height: auto;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonials-swiper .testimonial-card {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Navegação do Swiper */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  width: 36px;
  height: 36px;
  background: #000000;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
  transition: all 0.3s ease;
  bottom: 0px;
  top: inherit;
}

.testimonials-swiper .swiper-button-prev {
  left: inherit;
  right: 92px;
}

.testimonials-swiper .swiper-button-next {
  left: inherit;
  right: 40px;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: #000000;
  transform: scale(1);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
}

/* Paginação do Swiper */
.testimonials-swiper .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #cccccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #FFFFFF;
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .testimonials-swiper-container {
    padding: 0 10px;
  }
  
  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .testimonials-swiper .swiper-button-next::after,
  .testimonials-swiper .swiper-button-prev::after {
    font-size: 16px;
  }
}