.perguntas{
    padding: 6em 0 6em 0;
    background: #F9F9FB url("../imagens/bg-perguntas.png") center center no-repeat;
    background-size: cover;
}
.perguntas .esq{
    width: 50%;
    padding: 0 3em 0 0;
}
.perguntas .dir{
    width: 50%;
    padding: 0 2em 0 2em;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--azul);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.perguntas .dir::-webkit-scrollbar {
    width: 3px; /* Largura da barra de rolagem */
}

.perguntas .dir::-webkit-scrollbar-track {
    background: #f1f1f1; /* Fundo da área da barra */
    border-radius: 8px; /* Bordas arredondadas */
}

.perguntas .dir::-webkit-scrollbar-thumb {
    background: var(--azul); /* Cor do "thumb" */
    border-radius: 50px; /* Bordas arredondadas */
}

.perguntas .dir::-webkit-scrollbar-thumb:hover {
    background: var(--azul_hover); /* Cor do "thumb" ao passar o mouse */
}
.perguntas .dir {
    scrollbar-width: thin; /* Largura da barra de rolagem */
    scrollbar-color: var(--azul) #f1f1f1; /* Cor do "thumb" e da pista */
}
.perguntas *{
    color: #30374F;
}
.perguntas .etiqueta{
    display: inline-block;
    padding: 0.2em 0.8em 0.2em 0.8em;
    font-size: 0.8em;
    color: #fff;
    background: #323A91;
    border: 1px solid #4952B5;
    border-radius: 100px;
}
.perguntas .pergunta{
    display: block;
    position: relative;
    padding: 16px 0 16px 0;
    border-top: 1px solid #DCDFEA;
    cursor: pointer;
}
.perguntas .pergunta:last-child{
    border-bottom: 1px solid #DCDFEA;
}
.perguntas .pergunta:hover,
.perguntas .pergunta:hover *{
    text-decoration: none !important;
}
.perguntas .pergunta:hover span{
    color: #30374F;
    border-color: #30374F;
}
.perguntas .pergunta .p,
.perguntas .pergunta .r{
    width: calc(100% - 1em - 1em); /* 1em do .status + 1em de espaço */
}
.perguntas .pergunta .p{
    font-weight: 500;
}
.perguntas .pergunta .r{
    display: none;
    padding: 0.5em 0 0 0;
}
.perguntas .pergunta .status{
    position: absolute;
    right: 0;
    top: 1em;
    width: 1em;
    height: 1em;
    line-height: 0.8em;
    font-size: 1em;
    text-align: center;
    color: #7D89B0;
    border: 1px solid #7D89B0;
    border-radius: 100px;
}
@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {
    .perguntas .esq{
        width: 100%;
        padding: 0 0 3em 0;
        text-align: center;
    }
    .perguntas .dir{
        width: 100%;
        padding: 0;
        max-height: none;
        border: none;
    }
}