.reviews {
  background: #f8f8f8;
  padding: 40px 0;
}

.reviews__container {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 16px;
}

.reviews__title {
  margin: 0;
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  color: #171a20;
}

.reviews__label {
  color: #f97316;
  letter-spacing: 1px;
  margin: 0 0 15px;
  text-align: center;
}

/* Carousel */
.reviews .owl-carousel .owl-dots {
  display: none;
}

.reviews .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.reviews .owl-carousel .owl-prev,
.reviews .owl-carousel .owl-next {
  position: absolute;
  transform: translateY(-50%);
  pointer-events: all;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.reviews .owl-carousel .owl-prev:hover,
.reviews .owl-carousel .owl-next:hover {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
}

.reviews .owl-carousel .owl-prev {
  left: -20px;
}

.reviews .owl-carousel .owl-next {
  right: -20px;
}

/* Card */
.reviews .item {
  padding: 8px;
}

.reviews__card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.reviews__stars {
  display: flex;
  gap: 8px;
  color: #f97316;
  font-size: 16px;
  margin-bottom: 16px;
}

.reviews__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #111827;
  flex: 1;
}

.reviews__divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 14px;
  background: #d9d9d9;
}

.reviews__author {
  margin: 0;
}

.reviews__author strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  color: #111827;
}

.reviews__role {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.25;
  color: #6b7280;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .reviews__title {
    font-size: 24px;
    line-height: 1.2;
  }

  .reviews__label {
    font-size: 14px;
  }

  .reviews__card {
    min-height: auto;
    padding: 20px;
  }

  .reviews__text {
    font-size: 14px;
  }

  .reviews__author strong {
    font-size: 15px;
  }

  .reviews__role {
    font-size: 13px;
  }

  .reviews .owl-carousel .owl-prev {
    left: -10px;
  }

  .reviews .owl-carousel .owl-next {
    right: -10px;
  }

  .reviews .owl-carousel .owl-prev,
  .reviews .owl-carousel .owl-next {
    width: 36px;
    height: 36px;
  }
}
