.sectionFeedbacks {
  height: 800px;
  background-image: url("/img/Taxi2.png");
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: darken;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 40px;

  .container {
    padding: 20px;
  }

  .row {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .sobTitle {
    font-size: 16px;
    text-align: center;
  }

  .title {
    color: var(--color-white);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }

  .text {
    color: var(--color-white);
    width: 60%;
    align-items: center;
    text-align: center;
  }

  .img-client {
    width: 100px; /* Tamanho desejado */
    height: 100px;
    border-radius: 50%; /* Deixa a imagem redonda */
    object-fit: cover; /* Garante que a imagem preencha sem distorcer */
    border: 2px solid #ccc; /* Borda opcional */
  }

  .card-header {
    display: flex;
    padding: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .card {
    border-radius: 16px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
  }

  .avaliacoes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .avaliacao {
    padding: 20px;
    color: var(--color-cinza);
  }

  .name-client {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
  }

  .perfil-client {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: var(--color-green2);
  }

  .footer-card {
    padding: 20px 0px;
  }
}

@media (max-width: 992px) {
  .sectionFeedbacks .avaliacoes {
    flex-direction: column;
    align-items: center;
  }

  .sectionFeedbacks .card {
    width: 90%;
    margin-bottom: 30px;
  }

  .sectionFeedbacks .text {
    width: 80%;
  }

  .sectionFeedbacks .title {
    font-size: 28px;
  }

  .sectionFeedbacks .sobTitle {
    font-size: 14px;
  }

  .sectionFeedbacks .name-client {
    font-size: 20px;
  }

  .sectionFeedbacks .perfil-client {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .sectionFeedbacks {
    padding: 20px;
    height: auto;
  }

  .sectionFeedbacks .row {
    flex-direction: column;
    align-items: center;
  }

  .sectionFeedbacks .text {
    width: 100%;
    font-size: 14px;
  }

  .sectionFeedbacks .card-header {
    flex-direction: column;
    gap: 10px;
  }

  .sectionFeedbacks .img-client {
    width: 80px;
    height: 80px;
  }

  .sectionFeedbacks .title {
    font-size: 22px;
  }

  .sectionFeedbacks .avaliacao {
    font-size: 14px;
  }
}
