.faq-list {
  max-width: 530px;
  width: 100%;
  display: grid;
}

.faq-list dt {
  text-align: center;
  font-size: 1rem;
  background: url(/img/fundo.webp) no-repeat center center;
  background-size: cover;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid;
  border-color: #d9d9d92b;
}

.faq-list dd {
  color: #ffffff;
  margin-top: 20px;
  background-color: rgb(192, 192, 192);
  padding: 20px;
  transition: 0.4s;
}
.faq-list dd a {
  max-width: fit-content;
}
.faq-list dd > span {
  max-width: 60px;
  width: 100%;
  height: 1px;
  display: block;
  content: "";
  background-color: #d9d9d92b;
}
/*Accordion*/
.js-accordion dd {
  position: absolute;
  overflow: hidden;
  display: none;
  background-color: #11170f;
}
.js-accordion dt {
  cursor: pointer;
  /* padding: 5px; */
}

.js-accordion dt::after {
  content: "";
  background-color: #e3312d;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin-left: 15px;
  transition: 0.4s;
}

.js-accordion dt.ativo::after {
  background-color: #f7d21b;
}

.js-accordion + .js-accordion {
  margin-top: 20px;
}

.js-accordion dt.ativo {
  border-radius: 20px 20px 0px 0px;
}

.js-accordion dd.ativo {
  margin-top: 0px;
  display: grid;
  gap: 10px;
  position: inherit;
  animation: showAccordionDown 0.4s;
  text-align: center;
  padding: 40px;
  border-radius: 0px 0px 20px 20px;
}

@keyframes showAccordionDown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
