/* === SEÇÃO FAQ === */
.section-faq {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: #1C2944;
}

/* === FUNDO COM OPACIDADE === */
.faq-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../image/frame_7/img_fundo_FAQ.jpg") center/cover no-repeat;
    opacity: 0.45;
    z-index: 0;
}



/* === ACORDEÃO FAQ === */
.accordion {
    background: transparent;
    border: none;
}

/* Estilo do cabeçalho da pergunta */
.accordion-button {
    font-size: 22px;
    font-weight: 600;
    background: #14213D;
    color: #FFF;
    border: none;
    padding: 20px;
    text-align: left;
}

.accordion-button:hover {
    background: #233254;
    color: #FCA311;
}

.accordion-button:not(.collapsed) {
    background: #FCA311;
    color: #FFF;
}

.accordion-body {
    background: none;
    color:233254;
    font-size: 18px;
    padding: 20px;
    text-align: left;
}

/* === BOTÃO DE CONTATO === */
.faq-button-container {
    margin-top: 30px;
}

.btn-faq {
    background: none;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: 3px solid #FCA311;
    border-radius: 50px;
    padding: 15px 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-faq:hover {
    background: #FCA311;
    color: #FFF;
}

/* === RESPONSIVIDADE === */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 40px;
    }

    .accordion-button {
        font-size: 20px;
        padding: 15px;
    }

    .accordion-body {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 32px;
    }

    .accordion-button {
        font-size: 18px;
        padding: 12px;
    }

    .btn-faq {
        width: 100%;
    }
}
