.content-faq h1 {
  margin: 60px 0 25px 0;
}
.content-faq p {
  margin: 0 0 70px 0;
}
.content-faq .perguntas-frequentes {
  margin-bottom: 100px;
}
.content-faq .perguntas-frequentes li {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.content-faq .perguntas-frequentes li h3 {
  display: block;
  margin-bottom: 5px;
  padding: 20px 0 20px 30px;
  background: #f6f6f6;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .content-faq .perguntas-frequentes li h3 {
    padding: 20px 35px 20px 30px;
  }
}
.content-faq .perguntas-frequentes li h3 i {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 21px;
  right: 20px;
  background: url(../assets/icons/arrow-down.png) no-repeat center center;
  transition: all 0.3s ease;
}
.content-faq .perguntas-frequentes li.active h3 i {
  transform: rotate(-180deg);
}
.content-faq .perguntas-frequentes li .resposta {
  display: none;
  background: #f6f6f6;
  padding: 25px 30px 15px 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 500px) {
  .content-faq .perguntas-frequentes li .resposta {
    padding: 25px 20px 15px 30px;
  }
}
