#operacionais {
    h2 {
        color: #e6b82d;
    }

    h3 {
        text-transform: uppercase;
        text-align: left;
        width: 80%;
        padding-left: 12px;
    }

    #accordeon-item-header:hover {
        background-color: #e6b82d;
    }


    #accordeon-item-header.selected {
        background-color: #e6b82d;
    }
}

#administrativos {
    h2 {
        color: #E35709;
    }

    h3 {
        text-transform: uppercase;
        text-align: left;
        width: 80%;
        padding-left: 12px;
    }

    #accordeon-item-header:hover {
        background-color: #E35709;
    }
    #accordeon-item-header.selected {
        background-color: #E35709;
    }
}

#opcionais{
    h2 {
        color: #00BBFA;
    }

    h3 {
        text-transform: uppercase;
        text-align: left;
        width: 80%;
        padding-left: 12px;
    }

    #accordeon-item-header:hover {
        background-color: #00BBFA;
    }
    #accordeon-item-header.selected {
        background-color: #00BBFA;
    }
}

#vagas-accordeon { 

    h3 {
        text-transform: uppercase;
    }

    #accordeon-item-header:hover {
        background-color: #e6b82d;
    }


    #accordeon-item-header.selected {
        background-color: #e6b82d;
    }
}

#accordeon-item-header {
    background-color: #eceeef;
    width: 100%;
    height: 80px;
    border-radius: 40px;
    padding: 15px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 300ms;
    cursor: pointer;

    h3 {
        font-size: 20px;
        font-weight: bold;
    }

    #accordeon-item-header-btn {
        background-color: #374047;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        
        i {
            transform: rotateX(180deg);
            color: white;
        }
    }
}

#accordeon-item-content {
    display: none;
    padding-left: 24px;
    padding-right: 24px;
    color: #5b5b5b;

    ul {
        padding: 24px;

        li {
            list-style: disc;
            width: fit-content;
        }
    }
    
}


#accordeon-item-header-btn {
    
    transition: all 500ms ease;
    transform: rotateZ(0deg);
}

.selected #accordeon-item-header-btn {
    /* rotate: 180deg; */
    transition: all 500ms ease;
    transform: rotateZ(180deg);
}