/**
 * ============================================
 * DEPOIMENTOS - SEÇÃO DE TESTEMUNHOS
 * ============================================
 * 
 * Estilos para seção de depoimentos com Swiper
 * Design baseado no bootstrap-app com fundo azul gradiente
 */

/* ============================================
   SEÇÃO PRINCIPAL
   ============================================ */

#reviews-1 {
  background: transparent;
  color: #333;
  padding: 65px 20px;
  position: relative;
}

#reviews-1 .container.text-center {
  margin-bottom: 50px;
}

#reviews-1 h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#reviews-1 .fs-5 {
  font-size: 1.15rem;
  color: #666;
}

/* ============================================
   CARD DE DEPOIMENTO
   ============================================ */

.card-depoimento {
  display: flex;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 25px;
  gap: 20px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-depoimento:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.coluna-esquerda {
  flex: 0 0 200px;
  text-align: center;
}

.logo-empresa img {
  max-width: 100%;
  max-height: 45px;
  object-fit: contain;
}

.divisor-logo {
  width: 80%;
  height: 2px;
  background: #00000052;
  margin: 8px auto 15px auto;
  border-radius: 2px;
}

.info-pessoa {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.foto-pessoa {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.texto-pessoa strong {
  font-size: 17px;
  font-weight: bold;
  color: #000;
  display: block;
}

.texto-pessoa small {
  font-size: 13px;
  color: #666;
  display: block;
}

.avaliacao {
  font-size: 22px;
  background: linear-gradient(45deg, gold, #f7d100);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.5);
  letter-spacing: 3px;
}

.coluna-direita {
  flex: 1;
  position: relative;
}

.icone-aspas {
  position: absolute;
  top: -16px;
  left: -36px;
  font-size: 80px;
  color: rgb(30 186 233 / 25%);
  font-family: serif;
  pointer-events: none;
}

.texto-depoimento {
  font-style: italic;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.texto-depoimento.aspas-laterais {
  padding-left: 20px;
}

/* ============================================
   CONFIGURAÇÕES DO SWIPER
   ============================================ */

.testimonial-swiper {
  padding-bottom: 50px;
  overflow: visible !important;
}

.testimonial-swiper .swiper-slide {
  border-radius: 15px;
  overflow: hidden;
  width: 400px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.testimonial-swiper .swiper-slide-active {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.164);
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullet {
  display: none !important;
}

/* ============================================
   BOTÃO DEIXAR DEPOIMENTO
   ============================================ */

/* Botões movidos para rcs-button.css */

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
  #reviews-1 {
    padding: 50px 20px;
  }

  #reviews-1 h2 {
    font-size: 2.5rem;
  }

  .card-depoimento {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .coluna-esquerda {
    flex: none;
    width: 100%;
  }

  .coluna-direita {
    width: 100%;
    margin-top: 15px;
  }

  .icone-aspas {
    top: -10px;
    left: 10px;
    font-size: 60px;
  }

  .texto-depoimento {
    font-size: 15px;
  }

  .foto-pessoa {
    width: 60px;
    height: 60px;
  }

  .texto-pessoa strong {
    font-size: 16px;
  }

  .texto-pessoa small {
    font-size: 12px;
  }

  .avaliacao {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .testimonial-swiper .swiper-slide {
    width: 90vw !important;
  }

  .botao-deixar-depoimento {
    font-size: 16px;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  #reviews-1 h2 {
    font-size: 2rem;
  }

  .card-depoimento {
    padding: 18px;
  }

  .logo-empresa img {
    max-height: 35px;
  }

  .foto-pessoa {
    width: 50px;
    height: 50px;
  }

  .texto-pessoa strong {
    font-size: 15px;
  }

  .texto-pessoa small {
    font-size: 11px;
  }

  .avaliacao {
    font-size: 16px;
  }

  .icone-aspas {
    font-size: 50px;
    top: -5px;
    left: 5px;
  }

  .texto-depoimento {
    font-size: 14px;
  }
}
