.faq {
    background-color: #181617;
    background: url(/img/bg-contato.webp) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 10px;
}

.faq-title {
    display: flex;
    color: #ffffff;
    align-items: center;
    max-width: 200px;
    grid-gap: 8px;
    transform: rotate(-90deg);
    position: relative;
    top: 100px;
}
.faq-title span {
    display: block;
    content: "";
    height: 1px;
    width: 100px;
    background-color: #E3312D;
}


.faq-list {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    margin-top: 20px;
}

.faq-list dt{
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.faq-list dd{
    color: #ffffff;
    margin-top: 20px;
    font-style: italic;
    background-color: rgb(192, 192, 192);
    padding: 20px;
    transition: .4s;
}
/*Accordion*/
.js-accordion dd {
    position: absolute;
    overflow: hidden;
    display: none;
    background-color: #E3312D;
  }
  .js-accordion dt {
    cursor: pointer;
    padding: 5px;
  }


  .js-accordion dt::after {
    content: "+";
    width: 30px;
    height: 30px;
    border-radius: 5px;
    margin-left: 15px;
    transition: .4s;
  }

  .js-accordion dt.ativo::after {
    content: "-";
  }

  .js-accordion +   .js-accordion {
    margin-top: 20px;
  }

  .js-accordion dt.ativo {
    padding: 10px;
    border-radius: 5px 5px 0px 0px;
    
  }
  
  .js-accordion dd.ativo {
    margin-top: 0px;
    display: block;
    position: inherit;
    animation: showAccordionDown .4s;
    text-align: center;
    padding-bottom: 20px;
    padding: 10px;
    border-radius: 0px 0px 5px 5px;
  }

  @keyframes showAccordionDown {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @media only screen and (min-width:550px) and (max-width:1005px) {

    .faq-title {
        max-width: 200px;
        grid-gap: 8px;
        transform: rotate(0deg);
        position: inherit;
        margin-left: auto;
        margin-right: auto;
    }
  }
  @media only screen and (min-width:310px) and (max-width:549px) {

    .faq-title {
        max-width: 200px;
        grid-gap: 8px;
        transform: rotate(0deg);
        position: inherit;
        margin-left: auto;
        margin-right: auto;
    }
    .faq-list dt{
        font-size: .9rem;
    }
    
  }
  @media only screen and (min-width:0px) and (max-width:309px) {

    .faq-title {
        max-width: 200px;
        grid-gap: 8px;
        transform: rotate(0deg);
        position: inherit;
        margin-left: auto;
        margin-right: auto;
    }
    .faq-list dt{
        font-size: .9rem;
    }
    .faq-title span {
        width: 50px;
    }
    
  }