
/* Seção principal com padding */
.depoimentos-section {
  width: 100%;
  padding: 80px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}


/* Título */
.depoimentos-title h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1.85em;
  color: #273034;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.depoimentos-title h2 small {
  display: block;
  font-weight: 100;
  font-size: 65%;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
  text-transform: none;
}

/* Ícone quadrado */
.square {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: #273034;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* Carrossel */
.depoimentos-carousel {
  position: relative;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}


.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%; /* ou 200% se estiver deslizando manualmente */
}


/* Slide com 2 itens */
.carousel-slide {
  display: flex;
  flex: 0 0 100%;
  justify-content: space-between;
  gap: 20px;
}

.carousel-slide:not(.active) {
  display: none;
}

/* Item de depoimento */
.depoimento-item {
  width: calc(65% -50px);
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
}



/* Avatar */
.depoimento-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}


/* Conteúdo textual */
.depoimento-conteudo {
  flex: 1;
}


.depoimento-nome {
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #273034;
}

.depoimento-texto {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #565656;
  line-height: 1.714em;
}



/* Dots de navegação */
.indicators {
  text-align: center;
  margin-top: 30px;
  position: absolute;
  z-index: 2;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #eeae1e;
}

/* Responsivo */
@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
  }

    .depoimento-item {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .depoimento-avatar {
    margin-bottom: 15px;
  }






}