article * {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    color: inherit;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    box-shadow: 0;
}

article ul.unidades {
    padding-left: 0;
    margin-top: 20px;
    display: block;
}

article ul {
    width: 100%;
    float: left;
    padding-left: 30px;
    display: none;
}

article ul.ativo {
    display: block;
}

article ul .arrow {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
}

article ul .arrow i {
    width: 26px;
    cursor: pointer;
}

article ul .arrow i::before {
    width: 26px;
    transform: rotate(180deg);
    float: left;
}

article ul .arrow i:hover:before {
    color: #0b67cd;
}

article ul li {
    width: 100%;
    float: left;
    margin-top: 15px;
}

article ul li section {
    width: 100%;
    background-color: rgb(253, 253, 253);
    float: left;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, .01), 0 15px 32px 0 rgba(0, 0, 0, .06);
    border: 1px solid rgb(236, 236, 236);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

article ul li section .img {
    width: 175px;
    height: 245px;
    float: left;
    overflow: hidden;
    display: none;
}

article ul li section .img.ativo {
    display: block;
}

article ul li section .informacoes {
    width: calc(100% - 200px) !important;
    float: left !important;
    display: flex;
    flex-direction: column !important;
}

article ul li section .informacoes.full {
    width: 100%;
}

article ul li section .informacoes h3.nome {
    width: 100%;
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(236, 236, 236);
    margin-bottom: 15px;
    word-wrap: break-word;
    color: #4d4d4d;
}

article ul li section .informacoes p {
    width: 100% !important;
    margin-bottom: 5px;
    word-wrap: break-word;
    font-size: 1.143rem !important;
    color: #4d4d4d;
''
}

article ul li section .btns {
    width: 100%;
    float: left;
    margin-top: 15px;
}

article ul li section .btns button {
    min-width: 203px;
    min-height: 35px;
    float: left;
    color: #ffffff;
    background: #008FD5;
    border: 1px solid transparent;
    margin-right: 14px;
    font-size: 0.7857rem;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    vertical-align: center;
    text-transform: uppercase;
    padding: 0 10px;
}

article ul li section .btns button.btn_subordinados {
    display: none;
}

article ul li section .btns button.btn_subordinados.show {
    display: block;
}

article ul li section .btns button:hover {
    background: transparent;
    border-color: #008FD5;
    color: #008FD5;
    transition: 0.3s;
}

article ul li section .btns button:active {
    border-color: #008FD5;
    color: #008FD5;
    transition: 0.3s;
}

article ul li section .btns button.ativo {
    border-color: #008FD5;
    color: #008FD5;
    background: transparent;
    transition: 0.3s;
}

article > article {
    width: 100%;
    float: left;
    margin-top: 30px;
}

article > article * {
    font-size: 1.143rem !important;
}

article > article p.title {
    width: 100%;
    font-size: 1.5rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
    word-wrap: break-word;
    font-weight: bold;
}

/**
   ================ CSS ERRO ===============
 */
article h3.error {
    width: 100%;
    float: left;
    margin-top: 30px;
}


/*
  ============== MOBILE =================
*/
@media all and (max-width: 670px) {

    article ul{
        padding-left: 15px;
    }

    article ul li section .img {
        width: 330px;
        height: 340px;
        float: none;
        margin: 0 auto;
    }

    article ul li section .informacoes {
        width: 100% !important;
        float: none;
        margin: 20px 0 0 0 !important;
    }

    article ul li section .btns {
        display: flex;
        justify-content: center;
    }
}

@media all and (max-width: 570px) {
    article ul li section .btns{
        flex-direction: column;
    }
    article ul li section .btns button{
        width: 100%;
    }
    article ul li section .btns button:last-child{
        margin-top: 15px;
    }
}

@media all and (max-width: 430px) {

    article ul li section .img {
        width: 100%;
        height: 75vw;
    }

    article ul li section .informacoes h3.nome{
        font-size: 1.143rem;
    }

    article ul li section .informacoes p{
        font-size: 1rem;
    }
}
