:root {
    --color-faq: #8F5FAB;
}

.faq {
    border: 1px solid var(--color-faq);
    margin-bottom: 15px;
    /* padding: 22px 27px; */
    border-radius: 5px;
}

.faq .question {
    font-size: 1.7rem;
    color: var(--color-faq);
    position: relative;
    cursor: pointer;
    font-weight: 600;
    padding: 22px 27px;
}

.faq .question:after {
    content: "";
    border: solid var(--color-faq);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: 28px;
    top: 24px;
}

.faq .answer {
    overflow: hidden;
    height: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
}

.faq .answer:before {
    content: "";
    border-top: 1px solid #ddd;
    display: block;
    margin-bottom: 20px;
}

.faq.open .answer {
    /* margin-top: 20px; */
    height: auto;
    margin-bottom: 30px;
    opacity: 1;
    line-height: 1.7;
    font-size: 1.6rem;
    padding: 0px 27px;
}

.faq.open .question:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: 31px;
}

.finanzas {
    /* border: 1px solid #ddd; */
    /* margin-bottom: 50px; */
    padding: 50px 27px;
    border-radius: 5px;
}

.finanzas .title {
    color: var(--color-faq);
    font-size: 22px;
    padding-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.finanzas .desc {
    line-height: 1.7;
    font-size: 1.6rem;
}

.arrow{
    margin-bottom: -20px;
}

.arrow:before{
    content: "";
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 10px;
    /* down */
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}