@charset "utf-8";
.faq {
  display: block;
  width: auto;
  max-width: none;
  margin: -20px 15px 40px 10px !important;
  padding: 20px;
  background-color: rgba(102,102,102,0.01);
  border: 1px solid rgba(102,102,102,0.5);
  border-radius: 5px;
  font-family: 'Roboto-Regular', sans-serif;
  text-align: left;
  float: none;
  clear: both;
  box-sizing: border-box;
}
.faq-item {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(102,102,102,0.4);
  background: transparent;
  text-align: left;
}
.faq-item:last-child { border-bottom: none; }
.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  text-align: left;
  color: #1e1e1e;
  font-family: 'Roboto-Regular', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
.faq-pergunta span:first-child { text-align: left; flex: 1; padding-right: 15px; }
.faq-icone {
  width: 34px; height: 34px; min-width: 34px;
  border-radius: 50%; 
  background: #4a4a4a;
  color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-icone::before { content: '+'; font-size: 20px; font-family: 'Roboto-Regular', sans-serif; }
.faq-item.ativo .faq-icone::before { content: '−'; }
.faq-item.ativo .faq-icone { background: #8a8a8a; transform: rotate(180deg); }
.faq-resposta { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; text-align: left; }
.faq-resposta p {
  margin: 0; padding: 0 0 18px 0;
  color: #5e5e5e;
  line-height: 1.8; font-size: 17px;
  font-family: 'Roboto-Regular', sans-serif; font-weight: 400; text-align: left;
}
.faq-item.ativo .faq-resposta { max-height: 800px; }
@media only screen and (max-width: 767px) {
  .faq { margin: 0px 15px 20px 15px !important; padding: 15px; width: auto !important; }
  .faq-pergunta { font-size: 16px; }
}
@media only screen and (min-width: 768px) {
  .faq {
    margin: -15px 0 20px 15px !important;
    width: calc(100% - 15px) !important;
    max-width: 100% !important;
  }
}
@media only screen and (min-width: 1024px) {
  .faq {
    margin: -15px 0 20px 15px !important;
    width: calc(100% - 15px) !important;
    max-width: 100% !important;
  }
}
