.depoimentos__slide {
  position: relative;
}

.depoimentos__card {
  align-items: center;
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  margin: 0 auto;
  width: 100%;
  padding: 40px 48px;
  height: 100%;
}
.depoimentos__card--large {
  grid-template-columns: 1fr;
  justify-items: center;
}

.depoimentos__card__logo {
  background: var(--off-white-color);
  border: 1px solid var(--line-color);
  border-radius: 8px;
  grid-row: 1/-1;
  height: 60px;
  object-fit: contain;
  padding: 8px;
  width: 140px;
}

.depoimentos__card__text {
  grid-column: 2;
  min-width: 0;
}

.depoimentos__card__logo + .depoimentos__card__text {
  border-left: 1px solid var(--line-color);
  padding-left: 16px;
  display: grid;
  gap: 8px;
}

.depoimentos__card__text, .depoimentos__card__text * {
  color: var(--graphite-color);
  font-size: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
}

.depoimentos__card__text p {
  margin: 0;
}

.depoimentos__card__author {
  margin-bottom: 0;
}

.depoimentos__card__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0;
}

.depoimentos__card__name {
  color: var(--graphite-color);
  font-size: var(--text);
  font-weight: 700;
  margin-bottom: 0;
}

.depoimentos__card__role {
  color: var(--support-text-color);
  font-size: var(--text-small);
  margin-bottom: 0;
}

.depoimentos__controls {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.depoimentos__arrow {
  align-items: center;
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: 16px;
  color: var(--graphite-color);
  cursor: pointer;
  display: flex;
  font-size: var(--text);
  font-weight: 600;
  height: 32px;
  justify-content: center;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease;
  width: 32px;
}
.depoimentos__arrow:hover, .depoimentos__arrow:focus {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.depoimentos__arrow.swiper-button-disabled {
  cursor: default;
  opacity: 0.4;
}

.depoimentos__pagination.swiper-pagination {
  align-items: center;
  display: flex;
  gap: 8px;
  position: static;
  width: auto;
}
.depoimentos__pagination.swiper-pagination .swiper-pagination-bullet {
  background: var(--text-on-dark-color);
  height: 6px;
  margin: 0;
  opacity: 0.4;
  width: 6px;
}
.depoimentos__pagination.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

/*# sourceMappingURL=card-testimonial.css.map */
