/* INFORMAÇOES E PERGUNTAS FREQUENTES */


.informacoes__perguntas {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.informacoes__perguntas h2 {
    font-family: var(--font-secundaria);
    font-size: 48px;
    text-align: center;
    padding: 1rem 0;
}

.conteudo__perguntas {
    width: 76%;
    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    font-family: var(--font-principal);
    font-size: 20px;
    font-weight: 500;
}

.pergunta {
    padding: 1rem;
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    background: var(--header-bg);
    position: relative;
}

.pergunta::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 32px;
    height: 32px;
    background: url(../assets/pictures/arrow-down.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.conteudo__perguntas.aberto .pergunta::after {
    background: url(../assets/pictures/arrow-up.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.resposta {
    width: 100%;
    display: none;
    line-height: 1.4;
    padding: 1.4rem 1rem;
    background: var(--azul-claro);
}

.conteudo__perguntas.aberto .resposta {
    display: block;
}

.resposta p, .resposta p a, .resposta p strong {
    color: var(--cinza-letras);
}

.resposta p a {
    text-decoration: underline;
}
.resposta p strong {
    font-weight: 700;
}



@media screen and (max-width: 968px) {
    .legenda {
        margin: auto;
        width: auto;
    }

    .pergunta {
        font-size: 28px;
        padding-right: 2.5rem;
    }

    
}

@media screen and (max-width: 840px) {

}

@media screen and (max-width: 690px) {

}

@media screen and (max-width: 580px) {
    .informacoes__perguntas h2 {
        font-size: 40px;
    }

    .conteudo__perguntas {
        width: 90%;
    }

}