.wrapper {
    font-family: "Inter Regular";
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 24px;
    max-width: 592px;
}

.question {
    border: 1px solid var(--grey-medium);
    box-sizing: border-box;
    border-radius: 2px;
    justify-content: space-between;
    cursor: pointer;
    max-width: 592px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.question.show {
    border: 1px solid var(--red-dark);
    background: var(--white);
}

.question-container {
    padding: 0px 10px 0px;
}

.question p {
    padding: 10px 24px 10px 24px;
    max-width: 580px;
    user-select: none;
}

.question svg {
    margin: 20px 24.44px;
    position: absolute;
    right: 0;
}

.turn {
    transform: rotate(180deg);
}

.answer .btn {
    padding: 8px 5px;
}

.answer {
    margin: 0px 0px 0px 30px;
    height: 0;
    max-width: 560px;
}

.answer p {
    padding-top: 15px;
    padding-bottom: 0;
}

.answer button {
    margin-top: 15px;
}

.answer.show {
    height: auto;
}

.fade-height-enter-active,
.fade-height-leave-active {
    transition: all 500ms;
    max-height: 360px;
}

.fade-height-enter,
.fade-height-leave-to {
    opacity: 0;
    max-height: 0px;
}


/* Responsivo */

@media screen and (max-width: 1199px) {
    .question {
        height: 75px;
        align-items: center;
    }
    .question svg {
        margin: 0px 24.44px;
    }
}

@media screen and (max-width: 767px) {
    #duvidas .container .flex-container {
        flex-direction: column;
    }
    #duvidas .question.flex-container {
        flex-direction: row;
    }
    .container-wrapper:nth-child(1) {
        margin-right: 0px;
    }
    .wrapper {
        margin: 0 auto 24px auto;
    }
}