.depoimentos .container {
  position: relative;
}

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

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

.depoimentos-subtitle {
    text-align:center;
    color: var(--BlueMain);
    font-size: 16px;
    font-weight: 700;
    display: block;
    padding: 10px 26px;
    width: fit-content;
    border-radius: 25px;
    background: var(--foundation-blue-light-hover, #D9F2FB);
    margin:auto;
    margin-bottom: 24px;
}

.depoimentos-title{
    color: var(--dark-green-2, #003B51);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; 
    margin-bottom:30px;
}

.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);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin: 0!important;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.04), 0px 8px 32px 0px rgba(0, 0, 0, 0.08);
}

.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(--foundation-white-dark-hover, #999);
  text-overflow: ellipsis;
  
  /* Body */
  font-family: Gotham;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.64px;
}

.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: 999;
  opacity: 1;
  background-color: #fff;
}

.depoimentos .btn-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.depoimentos .button {
        height: fit-content;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        text-transform: initial;
        transition: .3s ease-in-out;
        color: #fff;
        padding: 16px 24px;
        background-color: var(--BlueMain);
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        border: 2px solid transparent;
        gap: 8px;
}

.depoimentos .button:hover{
        background-color: #fff;
        border: 2px solid var(--BlueMain);
        transition: .3s ease-in-out;
        color: var(--BlueMain);
}


.depoimentos .button:hover svg{
  fill: var(--BlueMain);
}

.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);
  }
}

