@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: "Roboto", sans-serif;
    background-color: hsl(0, 0%, 90%);
    height: 100vh;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

section {
    width: 655px;
    height: 347px;
    box-shadow: 0 27px 49px -25px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: relative;
}

section .ilustracao {
    position: absolute;
    left: -90px;
   
}

section .conteudo {
    width: 90%;
    padding-left: 225px;
}

section .conteudo h1 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 14px;
}

section .itens {
    list-style-type: none;
}

section .itens .item {
    cursor: pointer;
    background-image: url(../imagens/seta-fechada.png);
    background-repeat: no-repeat;
    background-position: top 8px right 0;
    background-size: 12px;
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
}
    
section .itens .item:last-child {
    border-bottom: none;
}

section .itens .item .pergunta {
    padding-bottom: 15px;
    transition: 0.2s ease;
    font-size: 17px;
    width: 90%;
    font-weight: 500;
}

.item .pergunta:hover {
    color: #f47c57;
}

.resposta {
    display: none;
    padding-bottom: 15px;
    font-size: 15px;
    font-weight: 300;
}

section .itens .item.ativo h2 {
    font-weight: 700;
    font-size: 17px;
}

section .itens .item.ativo .resposta {
    display: block;
} 

section .itens .item.ativo {
    background-image: url(../imagens/seta-aberta.png);
}


















