
.acordeon {
    display: block;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    cursor: pointer;
    user-select: none;
    border: none;
    margin-top: 3px;
    border-radius: 4px;
    margin-bottom: 5px;
}
.acordeon .acord{
    transform: rotate(90deg);
    transition: all 0.5s;
}
.acact{
    transform: rotate(270deg); 
    transition: all 0.5s;
}


.acordeon:hover , .active{
    background-color: lightgray;
}
p{
    width: 95%;
    background-color:none;
    overflow: hidden;
    max-height: 0;
    padding: 0 10px;
    margin-top: 2px;
    margin-bottom: 5px;
    border-radius: 4px;
    transition: 0.3s;
}