﻿/*=========================================
    FAQ
=========================================*/

.faq-section {
    padding: 120px 0;
    background: #fff;
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: #fff;
    border: 1px solid #ECECF3;
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(25,30,70,.05);
    transition: .3s;
}

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 40px rgba(25,30,70,.08);
    }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    text-align: left;
}

    .faq-question span:first-child {
        flex: 1;
    }

.faq-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #6C3EF4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    transition: .35s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 32px 30px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
}

.faq-contact {
    text-align: center;
    margin-top: 80px;
}

    .faq-contact h3 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .faq-contact p {
        color: #667085;
        font-size: 18px;
        margin-bottom: 35px;
    }

.faq-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/*=========================================
    RESPONSIVO
=========================================*/

@media(max-width:768px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-question {
        padding: 22px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 22px 22px;
    }

        .faq-answer p {
            font-size: 16px;
        }
}
