.depoimentos .container {
  position: relative;
}

.depoimento-title-container {
    max-width: 625px;
    margin: 0 auto;
    text-align: center;
}

.card-top-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 32px;
    gap: 8px;
}

.user-infos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.swiper-wrapper {
  padding: 40px 0;
}

.depoimentos h3 a {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}

.depoimentos .swiper .card {
  height: 100%;
  padding: 30px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin: 0!important;
  box-shadow: 0 0 44.3px 0 rgba(0, 0, 0, 0.13);
}

.depoimentos .swiper .card .stars {
  display: flex;
  align-items: center;
}

.depoimentos .swiper .card .user {
  align-self: flex-start;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 8px;
}

.depoimentos .swiper .card .user-infos h3 {
  font-size: 18px;
  font-weight: 600;
}

.depoimentos .swiper .card .user-infos p,
.depoimentos .swiper .card .user-infos h3 {
  margin: 0;
}

.depoimentos .swiper .card .user-infos p a {
  color: var(--Foundation-White-Darker, #595959);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.depoimentos .swiper .card > p {
  color: #000;
  line-height: 24px;
  margin: 0;
  text-align: left;
  align-self: flex-start;
}

.depoimentos .swiper .card > p a {
  color: var(--ParagraphDark);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.depoimentos .swiper-prev,
.depoimentos .swiper-next {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 64px);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.04),
    0px 8px 32px 0px rgba(0, 0, 0, 0.08);
  z-index: 7;
  opacity: 1;
  background-color: #fff;
}

.depoimentos .btn-container {
  display: flex;
  justify-content: center;
}

.depoimentos .swiper-prev {
  left: 0;
  transform: translate(-50%, 150%);
}

.depoimentos .swiper-next {
  right: 0;
  transform: translate(50%, 150%);
}

.depoimentos .swiper-button-disabled {
  opacity: 0.7;
}

@media only screen and (max-width: 1200px) {
  .depoimentos .swiper-prev {
    left: 0;
    transform: translate(-50%, 200%);
  }
  
  .depoimentos .swiper-next {
    right: 0;
    transform: translate(50%, 200%);
  }
}

@media only screen and (max-width: 574px) {
  .depoimentos .swiper-prev {
    left: 0;
    transform: translate(-50%, 250%);
  }
  
  .depoimentos .swiper-next {
    right: 0;
    transform: translate(50%, 250%);
  }
}

@media only screen and (max-width: 500px) {

  .depoimentos .swiper .card {
    padding: 36px;
  }

  .depoimentos .swiper-prev {
    transform: translate(-30%, 250%);
    border-bottom: 1px solid var(--Light-Grey, #F1F1F1);
  }

  .depoimentos .swiper-next {
    transform: translate(30%,250%);
    border-bottom: 1px solid var(--Light-Grey, #F1F1F1);
  }
}

