/* Seção de Provas Sociais */
.testimonials-section {
    background: linear-gradient(to bottom, #000, #1a1a1a);
  }
  
  .testimonials-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
  }
  
  .testimonials-section .highlight {
    color: #ff0000;
  }
  
  .testimonials-section p {
    color: #fff;
    font-size: 18px;
    text-align: left;
  }
  
  /* Ajuste dos Cards */
  .card {
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  .card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* Responsividade */
  @media (max-width: 768px) { /* Celulares */
    .card-img {
      max-width: 70%; /* Diminui o tamanho da imagem */
      margin: 0 auto;
    }
    
    .carousel-item .row {
      display: flex;
      justify-content: center; /* Centraliza a imagem */
    }
  }