.a-depoimentos { background-color: #f5f5dc; }
    .a-depoimentos h2 { 
        font-family: 'Times New Roman', Times, serif; 
        font-size: 25px; 
        font-style: italic; 
        color: #ce5c30; 
        padding-top: 30px;
        padding-bottom: 0;
        text-align: center;
    }

.testimonial-carousel {
    position: relative;
    width: 75%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    text-align: center;
    padding: 0;
    padding-bottom: 30px;
  }
   .testimonial-carousel .btn { margin: 1rem;}
  
  .carousel-container {
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .testimonial {
    flex: 0 0 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .testimonial p {
    font-size: 1.1em;
    font-style: italic;
    font-weight: normal;
    line-height: 1.6;
    padding: 0 15px;
    text-align: center;
  }
  
  .testimonial h4 {
    margin-top: 10px;
    font-weight: normal;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
  }
  
  /* Botões */
  button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 5px 9px;
    cursor: pointer;
    z-index: 1;
  }
  
  button.prev {
    left: -5px;
  }
  
  button.next {
    right: -5px;
  }
  
  /* Responsivo para telas menores */
  @media (max-width: 600px) {
    
    .testimonial-carousel {
        width: 100%;
    }
    .testimonial p {
      font-size: 1em;
    }
  
    .testimonial h4 {
      font-size: 1.1em;
    }
  
    button.prev, button.next {
      font-size: 1rem;
      padding: 6px 10px;
    }
  }