.desplegable {
    border-bottom: 1px solid rgba(0, 101, 242, 0.08);
    margin-bottom: 30px;
}

.desplegable .titulo {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    padding: 0 0 18px;
    cursor: pointer;
    position: relative;
    padding-right: 80px;
    transition: 0.3s;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.desplegable .titulo::after {
    border: solid #0065F2;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    content: "";
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 18px;
    transition: 0.3s;
    opacity: 0.4;
}

.desplegable .titulo:hover::after {
    opacity: 1;
}

.desplegable .texto {
    display: none;
    margin: 20px;
    margin-top: 10px;
}

.desplegable.desplegado .titulo {
    padding: 30px 0;
}

.desplegable.desplegado .titulo::after {
    transform: rotate(45deg) scale(-1);
    top: 38px;
    opacity: 1;
}

.desplegable.desplegado .texto {
    display: block;
}