.container-pesquisa {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--kfc-red);
}

.topo-listras-brancas {
    display: flex;
    gap: 65px;
    margin-bottom: 50px;
}

.topo-listra-branca-um,
.topo-listra-branca-dois,
.topo-listra-branca-tres {
    width: 65px;
    height: 90px;
    background-color: #FFFFFF;
}

.container-perguntas-faq {
    min-height: calc(100vh - 100px);
}

h1 {
    font-size: 2rem;
    font-family: 'National 2 Condensed-bold';
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pesquisa {
    width: 250px;
    height: 32px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: #FFFFFF;
    padding: 0 15px;
    margin-bottom: 60px;
}

.pesquisa i {
    font-size: 1rem;
    color: #8c8c8c;
}

.pesquisa input {
    border: none;
    background-color: transparent;
}

.pesquisa input:focus {
    outline: none;
}

.container-categorias {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.categoria {
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 55px;
    padding: 0 10px;
    cursor: pointer;
}

.categoria-selecionada {
    border: 1.52px solid #E4002B;
    background-color: #E4002B4D;
}

.categoria-nao-selecionada {
    border: 1.52px solid #474747;
    background-color: #F5F5F4;
}

.categoria span {
    font-family: Poppins;
    font-size: 18px;
    letter-spacing: 1.5px;
}

.container-perguntas {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 60px;
    padding-bottom: 100px;
}

.pergunta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 0px 4px 0px #00000040;
    padding: 20px;
    cursor: pointer;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.pergunta b {
    font-size: 1.2rem;
    word-wrap: break-word;
    white-space: pre-wrap;
    flex: 1;
    margin-right: 10px;
}

.pergunta i {
    font-size: 1.2rem;
    color: var(--kfc-red);
}

.resposta {
    display: none;
}

.resposta p {
    font-size: 1rem;
    padding: 0 20px;
    flex-wrap: wrap;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.no-results {
    text-align: center;
    color: red;
    font-weight: bold;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .topo-listras-brancas {
        gap: 35px;
        margin-bottom: 40px;
    }

    .topo-listra-branca-um,
    .topo-listra-branca-dois,
    .topo-listra-branca-tres {
        width: 35px;
        height: 50px;
    }

    .container-perguntas-faq {
        min-height: calc(100vh - 80px);
    }

    .container-perguntas {
        padding-top: 30px;
    }

    .container-categorias {
        margin-top: 30px;
    }
}