  .carousel {
    width: 100%;
    height: var(--height);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
    margin: 20px 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .carousel:hover .carousel__item {
    -webkit-animation-play-state: paused !important;
    animation-play-state: paused !important;
  }

  .carousel__list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity) * 1.5);
    position: relative;
    align-items: center;
  }

  .carousel__item {
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    text-align: center;
    font-size: 45px;
    -webkit-animation: slide var(--duration) linear infinite;
    animation: slide var(--duration) linear infinite;
    -webkit-animation-delay: calc((var(--duration) / var(--quantity)) * (var(--position) - var(--quantity))) !important;
    animation-delay: calc((var(--duration) / var(--quantity)) * (var(--position) - var(--quantity))) !important;
    transition: all 0.3s ease;
    filter: grayscale(20%);
    opacity: 0.8;
    margin: 0 5px;
  }

  .carousel__item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }

  [reverse=true] .carousel__item {
    -webkit-animation: slideReverse var(--duration) linear infinite;
    animation: slideReverse var(--duration) linear infinite;
  }

  /* Melhorar a responsividade */
  @media (max-width: 768px) {
    .carousel {
      --width: 80px;
      --height: 40px;
    }

    .carousel__item {
      max-height: 36px !important;
      margin: 0 3px;
    }
  }

  @media (max-width: 480px) {
    .carousel {
      --width: 70px;
      --height: 35px;
    }

    .carousel__item {
      max-height: 32px !important;
      margin: 0 2px;
    }
  }

  @-webkit-keyframes slide {
    from {
      left: 100%;
    }

    to {
      left: calc(var(--width) * -1.5);
    }
  }

  @keyframes slide {
    from {
      left: 100%;
    }

    to {
      left: calc(var(--width) * -1.5);
    }
  }

  @-webkit-keyframes slideReverse {
    from {
      left: calc(var(--width) * -1.5);
    }

    to {
      left: 100%;
    }
  }

  @keyframes slideReverse {
    from {
      left: calc(var(--width) * -1.5);
    }

    to {
      left: 100%;
    }
  }