.testimonials {
  background-color: transparent;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.container-test {
  height: 700px;
  width: 60%;
  text-align: end;
  padding: 70px 0px 70px 0px;
}

.blur-back {
  background: #f28705;
  border-radius: 50%;
  opacity: 0.5;
  width: 300px;
  height: 628px;
  position: absolute; /* Alterado para absolute */
  top: -35%; /* Centraliza verticalmente */
  left: 50%; /* Centraliza horizontalmente */
  transform: translate(-50%, -50%); /* Ajusta para centralização perfeita */
  filter: blur(51.85px);
  z-index: -1; /* Garante que fique atrás do conteúdo */
}

.titulo-test {
  align-items: end;
  text-align: end;
  white-space: nowrap;
  color: white;
}

.description-test {
  color: #ffffff;
  text-align: right;
  font-size: 20px;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.agrupa-blocos {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas de tamanho igual */
  gap: 20px; /* Espaçamento entre os blocos */
  max-width: 100%;
  margin-top: 30px;
}

.titulo-test img {
  width: 65px; /* Ajusta o tamanho do ícone */
}

.test1 {
  grid-column: 1; /* Primeira coluna */
  grid-row: 1 / span 3; /* Ocupa duas linhas */
  height: 460px;
  background: #fade8a;
  border-radius: 10px;
  padding: 15px;
}

.test2 {
  grid-column: 2; /* Segunda coluna */
  grid-row: 1; /* Primeira linha */
  height: 235px;
  background: #fade8a;
  border-radius: 10px;
  padding: 15px;
}

.test3 {
  grid-column: 3; /* Segunda coluna */
  grid-row: 1; /* Segunda linha */
  height: 235px;
  background: #fade8a;
  border-radius: 10px;
  padding: 15px;
}

.test4 {
  grid-column: span 2; /* Ocupa as duas colunas */
  grid-row: 2; /* Terceira linha */
  height: 175px;
  background: #fade8a;
  border-radius: 10px;
  padding: 15px;
}

.t1_tit, .t2_tit, .t3_tit, .t4_tit {
  color: #f28705;
  font-family: "Roboto-Bold", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px; /* Espaço entre título e descrição */
  text-align: center;
  padding: 5px;
}

.t1_desc, .t2_desc, .t3_desc, .t4_desc {
  color: #f28705;
  font-family: "Roboto-Medium", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-align: center;
  padding: 5px;
}

@media screen and (max-width: 1241px) {
  .container-test {
    width: 90%;
    text-align: center;
    padding: 50px 0;
    height: 700px;
  }

  .titulo-test {
    font-size: 90px;
  }

  .titulo-test img {
    width: 65px; /* Ajusta o tamanho do ícone */
  }

  .titulo-test, .description-test {
    text-align: center;
  }

  .agrupa-blocos {
    grid-template-columns: 1fr; /* Apenas uma coluna */
    gap: 15px; /* Reduzindo o espaçamento */
  }

  .test1, .test2, .test3, .test4 {
    grid-column: auto;
    grid-row: auto;
    height: auto; /* Ajusta a altura automaticamente */
    padding: 20px; /* Espaçamento interno */
  }
}

@media screen and (max-width: 855px) {
  .container-test {
    width: 90%;
    padding: 30px 10px;
  }

  .titulo-test {
    font-size: 40px;
  }

  .titulo-test img {
    width: 30px; /* Ajusta o tamanho do ícone */
  }

  .description-test {
    font-size: 16px;
  }

  .t1_tit, .t2_tit, .t3_tit, .t4_tit {
    font-size: 20px;
  }

  .t1_desc, .t2_desc, .t3_desc, .t4_desc {
    font-size: 16px;
  }

  #benefitsroll {
    font-size: 42px; 
    white-space: nowrap; 
    display: flex;
    align-items: center;
    gap: 10px; 
  }
}
