.accordion {
  display: none;
}
@media (max-width: 700px) {
  main .promise .itensPromise {
    display: grid;
  }
}
.accordion .dt {
  border-top: 1px solid #10b3f0;
  padding: 6px 10px 10px;
  font-size: 22px;
  color: #0c426d;
  font-weight: 500;
  align-items: center;
  display: flex;
  cursor: pointer;
  justify-content: space-between;
}
.accordion .dt::after {
  content: "+";
}
.accordion .dt.ativo {
  background: #10b3f0;
  color: #fff;
}
.accordion .dt.ativo::after {
  content: "-";
  font-size: 30px;
}
.details {
  background: #f8fdff;
}

.details .area_tabs {
  background: #f8fdff;
}

.accordion .dd section {
  transition: all 0.8;
}

.accordion .dd.ativo,
.accordion .dd.ativo section {
  display: block !important;
  padding: 10px 0 30px 0;
  animation: show 0.8s forwards;
}
@keyframes show {
  from {
    transform: translateX(-40px);
  }
  to {
    transform: translateX(0);
  }
}
