.video-testimonial .swiper-slide {
    display: flex;
  }
  .video-slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }


  .video-frame-9x16 {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
  }
  .has-black-bg { background: #000; }

  /* Fallback si algún navegador no soporta aspect-ratio */
  @supports not (aspect-ratio: 1) {
    .video-frame-9x16 {
      height: 0;
      padding-bottom: calc(16 / 9 * 100%);
    }
  }


  .custom-video-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: contain; 
  }

  .video-caption {
    font-size: 0.95rem;
    line-height: 1.4;
  }

.arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.5rem;
  margin-top: 40px;
}

.custom-arrow-next-reviews,
.custom-arrow-prev-reviews {
  border-radius: 100px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}