.card-perguntas{
  display: flex;
  flex-direction: column;
  border-radius: 5px;
background: #008C3B;
}



.icon-perguntas{
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 20px;

  width: 700px;
  height: 60px;

  
}

.card-perguntas button{
  background: transparent;
}

.text{
  border-radius: 5px;
background: #008C3B;
display: none;
transition: max-height 0.3s ease, opacity 0.3s ease;
opacity: 0;
max-height: 0;
overflow: hidden;
width: 700px;

padding: 20px;


}

.icon-perguntas p {
  color: var(--Gray-6, #F2F2F2);
  margin-bottom: 0;
}


.text p {
  color: var(--Gray-6, #F2F2F2);
}


.container-perguntas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); 
  gap: 20px;
  justify-content: center;
  align-items: start;
}


.icon-perguntas button {
  background: transparent;
  width: 40px;   
  height: 40px;  
  display: flex; 
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.icon-perguntas button img {
  width: 24px; 
  height: 24px;
}



@media (max-width: 560px) {

  .icon-perguntas {
    width: 100%;
    padding: 10px 5px;
  }

  .icon-perguntas p, .text p {
    font-size: 12px; /* Diminuição do tamanho da fonte. Ajuste conforme necessário */
  }

  .text {
    width: 100%;
    height: 100%;
    padding: 15px 10px;
  }

  .container-perguntas {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card-perguntas {
    width: 90%;
    margin: 0 auto;
  }

  .icon-perguntas button img {
    width: 18px;  
    height: 18px; 
}

.icon-perguntas {
  gap: 10px;
}




}