/* ==================================================
   FAQ
================================================== */

.faq{

    padding:70px 20px;
    background:#050505;

}

.faq-container{

    max-width:1200px;
    margin:auto;

}

.faq-subtitle{

    max-width:700px;
    margin:25px auto 70px;

    text-align:center;

    font-size:18px;
    line-height:1.8;
    color:#A5A5A5;

}

.section-title{

    margin-bottom: 40px;
}
/* ==================================================
   LISTA
================================================== */

.faq-list{

    display:flex;
    flex-direction:column;
    gap:18px;

}


/* ==================================================
   ITEM
================================================== */

.faq-item{

    background:#0B0B0B;

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    overflow:hidden;

    transition:.30s ease;

}

.faq-item:hover{

    transform:translateY(-2px);

    border-color:rgba(0,218,0,.18);

}


/* ==================================================
   PERGUNTA
================================================== */

.faq-question{

    width:100%;

    background:none;
    border:none;

    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:30px 35px;

    text-align:left;

}

.faq-question span{

    font-size:22px;
    font-weight:600;

    color:#FFFFFF;

    font-family:'Poppins',sans-serif;

}


/* ==================================================
   ÍCONE
================================================== */

.faq-icon{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

}

.faq-icon span{

    font-family:'Anton',sans-serif;

    font-size:44px;

    color:#00DA00;

    transition:.30s ease;

}


/* ==================================================
   RESPOSTA
================================================== */

.faq-answer{

    max-height:0;

    overflow:hidden;

    padding:0 35px;

    transition:
        max-height .45s ease,
        padding .35s ease;

}

.faq-answer p{

    color:#BDBDBD;

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

}

.faq-answer p:last-child{

    margin-bottom:6;

}

.faq-answer ul{

    margin-left:22px;
    margin-bottom:18px;

}

.faq-answer li{

    color:#BDBDBD;

    line-height:2;

    margin-bottom:6px;

}


/* ==================================================
   ITEM ABERTO
================================================== */

.faq-item.active{

    border-color:rgba(0,218,0,.22);

    box-shadow:

    0 0 35px rgba(0,218,0,.06);

}


.faq-item.active .faq-icon span{

    transform:rotate(45deg);

}