.testimonial-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
}

.testimonial-carousel {
  width: 100%;
  background-color: #f9f9f9;
  border-radius: 24px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  /*padding: 64px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.carousel-content {
  display: flex;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.testimonial-text {
  flex: 1;
  padding: 32px;
  font-size: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.testimonial-image {
  /*flex: 1;*/
  display: flex;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff00;
  border: none;
  font-size: 2rem;
  padding: 12px;
  cursor: pointer;
  z-index: 5;
  font-family: cursive;
  color: #fff;
}

.carousel-nav.prev {
  left: -48px;
}

.carousel-nav.next {
  right: -48px;
}

.carousel-dots {
  text-align: center;
  /*margin-top: 24px;*/
  grid-column: 1 / -1;
}

.carousel-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.histories-title {
	font-family: New Order;
	font-style: normal;
	font-weight: 500;
	line-height: 120% !important;
	margin: 0;
	font-size: 32px;
}
.nome-histories {
    font-size: 16px;
    font-weight: 200;
    color: #919EA8;
}

.carousel-dots .dot.active {
  background-color: #333;
}

@media (max-width: 768px) {
  .carousel-content {
    flex-direction: column;
  }

  .testimonial-image {
    display: none;
  }

  .carousel-nav.prev {
    left: -10px;
    color: #000d7d;
  }

  .carousel-nav.next {
    right: -10px;
    color: #000d7d;
  }
  .carousel-slide {
    gap: 8px;
    margin: 0;
    opacity: 1;
    min-width: 100%;
    min-height: 444px;
    padding: 32px 24px 24px;
    border-radius: 16px;
  }
  .testimonial-text {
    display: block;
    /*text-align: center;*/
    font-size: 20px;
    margin-top: 0;
    height: 220px;
    padding: 5px;
  }
  .histories-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
.testimonial-text {
        font-size: 20px;
        position: absolute;
        width: 65%;
        left: 20%;
        margin-top: 10px;
        line-height: 1.4;
    }
}
