html {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--roxo100);
    overflow-y: hidden;
    overflow-x: hidden;
}

.conteudo {
    background-color: var(--branco);
    width: 600px;
    height: 550px;
    border-radius: 10px;
    padding: 40px;
    transform: translateX(130%);
    margin: -120px;
    box-shadow: 1px 1px 10px 5px var(--roxo600);
}

.fundo {
    min-width: 100vw;
}

.textos .pergunta:hover {
    color: var(--roxo600);
}

.items .item .pergunta {
    margin-top: 20px;
    height: 60px;
}

.items .item {
    background-image: url(../images/icon-plus.svg);
    background-repeat: no-repeat;
    background-position: top 1px right 0;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    margin-top: 25px;
}

.items .item p {
    font-weight: 300;
    line-height: 30px;
    width: 500px;
}

.resposta {
    display: none;
}

.titulo {
    display: flex;
    margin-bottom: 30px;
    margin-top: 10px;
    gap: 20px;
}

/* ESTILOS DO ACORDEON ATIVO  */

.items .item.ativo .resposta {
    display: block;
}

.item.ativo {
    background-image: url(../images/icon-minus.svg);
}

