.quote {
    overflow: hidden;
}

.quote .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
    max-width: 728px;
    width: 100%;
    padding: 40px 16px 16px;
    box-sizing: border-box;
  }
  .quote .container > .text {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .quote .container > .text .c-title {
    text-align: center;
    font-size: 40px;
    line-height: 48px;
  }

@media (max-width: 480px) {
    .quote .container > .text .c-title {
        font-size: 20px; /* Tamanho da fonte para dispositivos móveis */
        line-height: 28px; /* Ajustando o line-height conforme necessário */
    }
}
  .quote .container > .text .c-title.-white {
    color: white;
  }
  .quote .container > .text .c-title.-blue {
    color: rgba(18, 30, 72, 0.9);
  }
  .quote .container > .text .c-minhoco {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
  }
  .quote .carrousel {
    width: 100%;
    height: 400px;
    overflow: visible;
    position: relative;
    cursor: grab;
    margin-bottom: 40px;
  }
  .quote .carrousel.-static {
    margin: 0 auto 40px;
    max-width: 728px;
    padding: 0 16px;
    cursor: unset;
  }
  .quote .carrousel .slider-container {
    width: 200%;
    display: flex;
    gap: 16px;
  }
  .quote .carrousel .slider-container.qty-3 {
    animation: carrossel-animation 60s linear infinite;
    width: 3804px;
  }
  .quote .carrousel .slider-container.qty-4 {
    animation: carrossel-animation 80s linear infinite;
    width: 5072px;
  }
  .quote .carrousel .slider-container.qty-5 {
    animation: carrossel-animation 100s linear infinite;
    width: 6340px;
  }
  .quote .carrousel .slider-container.qty-6 {
    animation: carrossel-animation 120s linear infinite;
    width: 7608px;
  }
  .quote .carrousel .slider-container:hover {
    animation-play-state: paused;
  }
  .quote .carrousel .slider-container .card {
    flex: 1;
    flex-shrink: 1;
    flex-grow: 1;
  }
  @keyframes carrossel-animation {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .quote .carrousel .card-container {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .quote .carrousel .card-container .slick-track {
    display: flex;
    gap: 16px;
  }
  .quote .carrousel .card {
    background-color: #940DFF;
    box-shadow: 0 25px 100px 0 rgba(24, 50, 115, 0.06);
    height: 400px;
    border-radius: 8px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    box-sizing: border-box;
    position: relative;
    max-width: 280px;
    flex: 1;
  }
  .quote .carrousel .card.-white .description {
    color: rgba(255, 255, 255, 0.9);
  }
  .quote .carrousel .card.-white .name {
    color: white;
  }
  .quote .carrousel .card.-white .company {
    color: rgba(255, 255, 255, 0.7);
  }
  .quote .carrousel .card.-blue .description {
    color: rgba(18, 30, 72, 0.9);
  }
  .quote .carrousel .card.-blue .name {
    color: #121e48;
  }
  .quote .carrousel .card.-blue .company {
    color: rgba(18, 30, 72, 0.7);
  }
  .quote .carrousel .card .quote-icon {
    transform: scaleX(-1);
    width: 60px;
    opacity: 0.2;
    color: #940dff;
    font-size: 128px;
    font-weight: bold;
    letter-spacing: 0;
    text-shadow: 0 25px 100px rgba(24, 50, 115, 0.14);
    position: absolute;
    top: 12px;
    right: 22px;
    margin: 0;
    line-height: 140px;
  }
  .quote .carrousel .card .description {
    font-size: 16px;
    letter-spacing: 0;
    z-index: 1;
  }
  .quote .carrousel .card .profile {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .quote .carrousel .card .profile .photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .quote .carrousel .card .profile .photo > img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
.quote .carrousel .card .profile .text {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}
  }
  .quote .carrousel .card .profile .text .name {
    font-size: 16px;
    line-height: 21px;
    margin: 0;
  }
  .quote .carrousel .card .profile .text .company {
    font-size: 16px;
    margin: 0;
  }
  @media (min-width: 481px) {
    .quote .container {
      padding: 80px 16px 40px;
      gap: 80px;
    }
    .quote .container > .text .c-title {
      font-size: 32px !important;
      line-height: 40px;
    }
    .quote .carrousel {
      margin-bottom: 80px;
    }
    .quote .carrousel.-static {
      margin: 0 auto 80px;
      padding: 0;
    }
  }
  @media (min-width: 1024px) {
    .quote .container {
      max-width: 1280px;
    }
    .quote .carrousel {
      height: 328px;
      cursor: unset;
      overflow: visible;
    }
    .quote .carrousel.-static {
      max-width: 1300px;
      padding: 0 16px;
    }
    .quote .carrousel.-static .slider-container {
      animation-play-state: paused;
    }
    .quote .carrousel .card {
      max-width: 634px;
      height: 328px;
    }
    .quote .carrousel .card .description {
      font-size: 20px;
      line-height: 1.3;
      max-width: 484px;
    }
    
    .quote .carrousel .card .profile .photo {
      width: 70px;
      height: 70px;
    }
    .quote .carrousel .card .profile .text .name {
      font-size: 24px;
      line-height: 20px;
    }
    .quote .carrousel .card .profile .text .company {
      font-size: 20px;
      line-height: 26px;
      margin: 0;
    }
    
  }