* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.navbarCCCP {
    opacity: .7;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    background-color: #E2E3CA;
    color: var(--palNegroAzul);
}

/*.nav-item{
    width: 33.33%
}*/

/*.nav-item:hover {
    background-color: #E4E6E9;
}
*/
.disponible{
    display: none;
}

.ve-derecha ul{
    float: right;
}

.brand-title {
    /*width: 16%;*/
    display: flex;
    justify-content: center;
    /*height: 30px;*/
    font-size: 1.3rem;
    font-weight: bold;
    margin: .7rem;              /*determina el ancho de la barra por vacuidad*/
}

.ve-izquierda ul{
    float: left;
}

.navbarCCCP-links {
    width: 42%;
    height: 100%;
}

.navbarCCCP-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbarCCCP-links li {
    list-style: none;
}

.navbarCCCP-links li a {
    display: block;
    text-decoration: none;
    color: var(--palNegroAzul);
    padding: .7rem;                   
}

.navbarCCCP-links li:hover {
    background-color: #E4E6E9;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: var(--palNegroAzul);
    border-radius: 10px;
}

@media (max-width: 800px) {
    .navbarCCCP {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbarCCCP-links {
        display: none;
        width: 100%;
    }
    .brand-title {
        width: 100%;
    }

    .navbarCCCP-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbarCCCP-links ul li {
        text-align: center;
    }

    .navbarCCCP-links ul li a {
        padding: .5rem 1rem;
    }

    .navbarCCCP-links.active {
        display: flex;
        order: 2;
    }
    .brand-title.ordenaTras {
        order: 1;
    }
}