.breadcomb{
    background-color: #F5F5F5;
    height: 30px;
}
.breadcomb div{
    height: 100%;
}
.breadcomb_content{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: .5em;
    color: #2f4480;
    font-size: 14px;
    width: 100%;
    height: 100%;
    text-align: center;
}
.breadcomb_content div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.breadcomb_content div a{
    font-size: 14px;
    color: #2f4480;
    text-align: center;
}
.breadcomb_content div a:hover{
    text-decoration: underline;
    color: black;
}
.breadcomb_content div a span{
    height: 100%;
    display: inline-block;
}

@media screen and (max-width: 650px){
    .breadcomb{
        display: none;
    }
}


/* menu interno */

.menuinterno{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin-bottom: 0;
    margin-top: -20px;
}
.menuinterno a{
    z-index: 4;
}
.menuinterno_button{
    background-color: #fff;
    border: 1px solid #ccc;
    color: #454545;
    padding: .6em;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    border-radius: 3px;
}
.menuinterno_button:hover{
    background-color: #FFF5EE;
}
@media screen and (max-width:750px){
    .menuinterno{
        margin-top: 0;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .menuinterno a{
        width: 90%;
    }
    .menuinterno_button{
        width: 100%;
        min-width: 100%;
    }
}