.feedbacks {
  box-sizing: border-box;
  width: 100%;
  background: #000200;
}

.feedbacks__inner {
  box-sizing: border-box;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 64px 140px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.feedbacks__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

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

.feedbacks__eyebrow {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.28px;
}

.feedbacks__title {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.feedbacks__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 80px;
}

.feedbacks__contact-thumb {
  border-radius: 8px;
  padding: 4px;
  background: #ffffff;
  display: inline-flex;
}

.feedbacks__contact-thumb img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.feedbacks__contact-cta {
  border-radius: 8px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  color: #000200;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.feedbacks__contact-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 99px;
  background: #000200;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.3),
    0 14px 4px rgba(0, 0, 0, 0),
    0 9px 4px rgba(0, 0, 0, 0.03),
    0 5px 3px rgba(0, 0, 0, 0.1),
    0 2px 2px rgba(0, 0, 0, 0.17),
    0 1px 1px rgba(0, 0, 0, 0.2);
}

.feedbacks__hero {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16 / 9;
}

.feedbacks__hero-video {
  position: absolute;
  inset: 0;
}

.feedbacks__hero-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.feedbacks__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  max-width: 720px;
  width: 100%;
  margin-inline: auto;
  align-items: start;
}

/* Proporção 9:16 estável (grid + aspect-ratio quebrava altura em alguns casos) */
.feedback-card {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
}

.feedback-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feedback-card__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.feedbacks__dots {
  display: none;
}

@media (max-width: 1280px) {
  .feedbacks__inner {
    padding: 56px 32px;
  }

  .feedbacks__title {
    font-size: clamp(28px, 3.2vw, 32px);
  }
}

@media (max-width: 980px) {
  .feedbacks__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .feedbacks__list {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .feedbacks__inner {
    padding: 48px 20px;
    gap: 40px;
  }

  .feedbacks__contact {
    width: 100%;
    height: auto;
  }

  .feedbacks__contact-cta {
    flex: 1;
    justify-content: space-between;
    min-width: 0;
  }

  .feedbacks__list {
    display: flex;
    gap: 12px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-inline: 2px;
  }

  .feedbacks__list::-webkit-scrollbar {
    display: none;
  }

  .feedback-card {
    flex: 0 0 min(78vw, 280px);
    width: min(78vw, 280px);
    scroll-snap-align: center;
  }

  .feedbacks__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
  }

  .feedbacks__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: transform 200ms ease, background-color 200ms ease, width 220ms ease;
  }

  .feedbacks__dot.is-active {
    width: 22px;
    background: #ef7c00;
  }

  .feedbacks__dot.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.28);
    transform-origin: left center;
    transform: scaleX(0);
    animation: feedback-dot-fill 3.2s linear forwards;
  }

  .feedbacks__dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }
}

@keyframes feedback-dot-fill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
