/* ===== CONTAINER GERAL ===== */
.zp-testemunhos-container {
  width: 100%;
  overflow: hidden;
}


.zp-testemunho-subtitulo {
  font-size: 15px;
  text-transform: uppercase;
  color: #5e5141;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
}

.zp-testemunhos-container .zp-custom-pagination-container {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 40px !important;
  margin-top:0px !important;
  position: relative !important; /* mantém no fluxo */
}

.zp-testemunhos-container .zp-custom-pagination-container .swiper-button-next {
    background-image: url(/wp-content/uploads/2025/10/arrow-right-marrom.svg) !important;
}

.zp-testemunhos-container .zp-custom-pagination-container .swiper-button-prev {
    background-image: url(/wp-content/uploads/2025/10/arrow-left-marrom.svg) !important;
}

.zp-testemunhos-container .zp-custom-pagination-container .swiper-button-next:after,
.zp-testemunhos-container .zp-custom-pagination-container .swiper-button-prev:after {
    display:none;
}

.zp-testemunho-titulo {
  font-size: 64px;
  margin: 10px 0;
  color: #5B4C39 !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.zp-testemunho-linha {
  width: 340px;
  height: 1px;
  background-color: #5B4C39;
  border-radius: 2px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

/* ===== SWIPER ===== */
.zp-testemunhos-swiper {
  width: 100%;
}

.zp-testemunho-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ===== LADO ESQUERDO (Texto) ===== */
.zp-testemunho-left {
  flex: 1 1 45%;
  max-width: 550px;
}

.zp-testemunho-nome {
  font-weight: 600;
  color: #3b2f23;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
}

.zp-testemunho-estrelas {
  margin-bottom: 15px;
}

.zp-testemunho-estrelas .estrela {
  font-size: 18px;
  color: #c0a472;
  margin-right: 4px;
  transition: transform 0.3s ease;
}

.zp-testemunho-estrelas .estrela.ativa {
  color: #8b7357;
}

.zp-testemunho-estrelas .estrela.ativa:hover {
  transform: scale(1.2);
}

.zp-testemunho-texto {
  font-size: 15px;
  line-height: 1.8;
  color: #5e5141;
  font-weight: 400;
  margin-top: 15px;
  max-width: 480px;
  font-family: 'Montserrat', sans-serif;
}

/* ===== LADO DIREITO (Imagens) ===== */
.zp-testemunho-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.zp-testemunho-right .imagem-grande img,
.zp-testemunho-right .imagem-pequena img {
  height: auto;
}

/* ===== NAVEGAÇÃO E BULLETS ===== */
.zp-testemunhos-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.zp-testemunhos-nav .swiper-button-prev,
.zp-testemunhos-nav .swiper-button-next {
  position: static;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zp-testemunhos-nav .swiper-button-prev:hover,
.zp-testemunhos-nav .swiper-button-next:hover {
  opacity: 1;
}

.zp-testemunhos-nav .swiper-button-prev {
  background-image: url("/wp-content/uploads/2025/10/arrow-left.svg");
}

.zp-testemunhos-nav .swiper-button-next {
  background-image: url("/wp-content/uploads/2025/10/arrow-right.svg");
}

.zp-testemunhos-nav .swiper-button-prev::after,
.zp-testemunhos-nav .swiper-button-next::after {
  display: none;
}

/* Bullets */
.zp-testemunhos-nav .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.zp-testemunhos-nav .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #8b7357;
  background: transparent;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.zp-testemunhos-nav .swiper-pagination-bullet-active {
  background: #8b7357;
  opacity: 1;
}

/* Garante que o header fique fixo e estável durante o fade */
.zp-testemunho-header {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  margin-bottom:25px;
}



/* ===== TRANSIÇÃO DE FADE ===== */
.swiper-fade .swiper-slide {
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.swiper-fade .swiper-slide-active {
  opacity: 1 !important;
}

.swiper-fade .swiper-slide-prev,
.swiper-fade .swiper-slide-next {
  opacity: 0 !important;
}

/* ===== ANIMAÇÕES DE ENTRADA (direções opostas) ===== */

/* Textos entram da esquerda → direita */
.zp-testemunho-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s ease;
}

/* Imagens entram da direita → esquerda */
.zp-testemunho-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s ease;
}

/* Quando o slide está ativo */
.swiper-slide-active .zp-testemunho-left.fade-in {
  opacity: 1;
  transform: translateX(0);
}

.swiper-slide-active .zp-testemunho-right.fade-in {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s; /* pequeno atraso pra imagem aparecer depois */
}

@media (max-width: 1600px) {
.zp-testemunho-titulo {
  font-size: 42px;
}
}
/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .zp-testemunho-slide {
    flex-direction: column-reverse;
    text-align: left;
    gap: 40px;
  }

  .zp-testemunho-header {
    text-align: left;
  }

  .zp-testemunho-left {
    max-width: 100%;
  }

  .zp-testemunho-right {
    flex-direction: row;
    gap: 15px;
  }

  .zp-testemunho-right .imagem-pequena img {
    transform: none;
  }

.zp-testemunho-linha {
        margin: 0px;
    
}
  
  .zp-testemunhos-container .zp-custom-pagination-container {
      display: flex !important;
      align-items: center !important;
          margin-top: 30px !important;
      justify-content: center !important;
      gap: 40px !important;
      position: relative !important; /* mantém no fluxo */
}

}

@media (max-width: 600px) {
  .zp-testemunho-titulo {
    font-size: 36px;
  }

  .zp-testemunho-texto {
    font-size: 14px;
  }

  .zp-testemunhos-nav {
    gap: 40px;
  }

  .zp-testemunhos-nav .swiper-button-prev,
  .zp-testemunhos-nav .swiper-button-next {
    width: 20px;
    height: 20px;
  }
}
