<style>
    #carrusel_reseñas {
      max-width: 1366px;
      margin: 80px auto;
      padding: 0 40px;
      font-family: 'Poppins', sans-serif;
    }

    /* TÍTULO Y RATING */
    #carrusel_reseñas .carousel-main-title {
      font-size: 50px;
      font-weight: 300;
      color: #001C33;
      text-align: center;
      margin-bottom: 20px;
      line-height: 1.26;
    }

    #carrusel_reseñas .carousel-main-title span {
      font-weight: 600;
    }

    #carrusel_reseñas .rating-container {
      margin-bottom: 50px;
      text-align: center;
    }

    #carrusel_reseñas .rating-wrapper {
      display: inline-flex;
      align-items: center;
      gap: 20px;
    }

    #carrusel_reseñas .rating-img {
      max-width: 240px;
      height: auto;
    }

    #carrusel_reseñas .rating-text {
      font-size: 18px;
      font-weight: 300;
      color: #000;
      text-align: left;
      line-height: 1.2;
      margin: 0;
    }

    /* WRAPPER DEL CARRUSEL */
    #carrusel_reseñas .carousel-wrapper {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none; /* Firefox */
      padding: 10px 0 40px;
    }

    #carrusel_reseñas .carousel-wrapper::-webkit-scrollbar {
      display: none; /* Chrome/Safari */
    }

    /* TARJETAS */
    #carrusel_reseñas .carousel-card {
      flex: 0 0 calc(33.33% - 16px);
      min-width: 350px;
      min-height: 600px;
      border-radius: 24px;
      padding: 35px;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      color: #fff;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    #carrusel_reseñas .card-light { background: #0277D9; }
    #carrusel_reseñas .card-dark { background: #001C33; }

    /* CONTENEDOR DE VIDEO */
    #carrusel_reseñas .carousel-video {
      width: 100%;
      margin-bottom: 24px;
      border-radius: 16px;
      overflow: hidden;
    }

    #carrusel_reseñas .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 ratio */
      height: 0;
      background: #000;
    }

    #carrusel_reseñas .video-container iframe,
    #carrusel_reseñas .video-poster {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: 0;
      object-fit: cover;
    }

    /* TEXTOS INTERNOS */
    #carrusel_reseñas .carousel-role {
      font-size: 18px;
      font-weight: 300;
      display: block;
      margin-bottom: 8px;
      color: #FFFFFF;
    }

#carrusel_reseñas .carousel-name {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 16px 0; /* Aseguramos que solo tenga margen inferior */
  color: #FFFFFF;
  line-height: 1.2;    /* Ajuste de línea para párrafos */
  display: block;      /* Se comporta como bloque igual que el h3 */
}

    #carrusel_reseñas .carousel-text {
      font-size: 16px;
      font-weight: 300;
      font-style: italic;
      line-height: 1.5;
      margin-bottom: 24px;
      flex-grow: 1;
      color: #FFFFFF;
    }

    #carrusel_reseñas .carousel-stars {
      width: 140px;
      margin-top: auto;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      #carrusel_reseñas .carousel-card { flex: 0 0 45%; }
      #carrusel_reseñas .carousel-main-title { font-size: 36px; }
    }

    @media (max-width: 768px) {
      #carrusel_reseñas { padding: 0 20px; }
      #carrusel_reseñas .rating-wrapper { flex-direction: column; gap: 10px; }
      #carrusel_reseñas .rating-text { text-align: center; }
      #carrusel_reseñas .carousel-card { flex: 0 0 85%; min-width: 280px; padding: 25px;}
      #carrusel_reseñas .carousel-main-title { font-size: 28px; }
    }
  </style>