.header {
    background-color: var(--azul-primario);
    padding: 20px 0;
}

.header__logo img{
    width: 240px;
    height: 54px;
}

.header__row{
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Menu mob */
.header__mob{
    border: 1px solid var(--branco);
    padding: 7px;
    border-radius: 3px;
}

#checkbox-menu {
    position: absolute;
    opacity: 0;
}

.buttonhamb label {
    cursor: pointer;
    position: relative;
    display: block;
    height: 22px;
    width: 30px;
}

.buttonhamb label span {
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    border-radius: 30px;
    background-color: var(--branco);
    transition: all 0.25s ease-in-out;
}

.buttonhamb label:hover span{
    background-color: var(--laranja);
}

.buttonhamb label span:nth-child(1) {
    top: 0;
}

.buttonhamb label span:nth-child(2) {
    top: 8px;
}

.buttonhamb label span:nth-child(3) {
    top: 16px;
}

#checkbox-menu:checked+label span:nth-child(1) {
    transform: rotate(-45deg);
    top: 8px;
}

#checkbox-menu:checked+label span:nth-child(2) {
    opacity: 0;
}

#checkbox-menu:checked+label span:nth-child(3) {
    transform: rotate(45deg);
    top: 8px;
}

/* end Menu mob */

.header__ctas{
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    margin-top: 15px;
}

.header__ctas--cotacao, .header__ctas--tabela{
    width: 150px;
}

.header__ctas svg{
    height: 50px;
    width: 50px;
}

.header__ctas p{
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    
}

.header__ctas a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.header__ctas a:hover *{
    color: var(--laranja);
    fill: var(--laranja);
    transition: 0.3s all ease-in-out
}

.breadcomb{
    padding-left: 20px;
    background-color: #f5f5f5;
    padding: 10px;
}

.breadcomb_content{
    display: flex;
}

.breadcomb a{
    padding-left: 10px;
}

.breadcomb a *{
    color: var(--azul-primario);
}

.breadcomb a:hover *{
    color: var(--laranja);
}

/* Breakpoint Desktop */
@media(min-width:700px){

    .header{
        padding: 15px 0;
    }

    .header__ctas{
        margin-top: 0;
    }

    .header__row{
        justify-content: space-around;
    }

    .header__ctas--cotacao, .header__ctas--tabela{
        width: 180px;
    }

    .header__ctas svg{
        height: 55px;
        width: 55px;
    }
}

@media(max-width:700px){
    .banner-principal-internas{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .banner-principal-internas__text{
        width: 100%;
        top: 50px!important;
    }
}