.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 10px auto;
  padding: 20px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.1rem;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #444;
  padding: 10px;
  z-index: 2;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

.arrow svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 600px) {
  .testimonial {
    font-size: 1rem;
  }
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  padding-top: 25px;
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper {
  width: 100%;
  /*max-width: 410px;*/
  height: 300px;
  overflow: hidden;
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  transform: scale(1.32);
  transform-origin: center;
}

/* Responsivo somente em telas menores */
@media (max-width: 767px) {
  .video-wrapper {
    height: auto;
    padding-bottom: 56.25%; /* Proporção 16:9 */
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transform: none;
  }
}
