
/*--==============================================->
<!-- Start lawyer Secao -->
==================================================-*/

.custom-accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.4s;
    margin-top: 5px;
}

.active-custom, .custom-accordion:hover {
    background-color: #ccc;
}

.custom-accordion:after {
    content: '\002B'; /* Símbolo de "+" */
    color: #777;
    font-weight: bold;
    float: right;
}

.active-custom:after {
    content: "\2212"; /* Símbolo de "-" */
}

.custom-panel {
    padding: 10px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}


/*--==============================================->
<!-- End lawyer Secao -->
==================================================-*/
