.header-t {
    width: 100%;
    height: 100px;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header {
    width: 728px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-celular {
    width: 320px;
    height: 100px;
    display: none;
}

.logo{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    height: 100px;
    line-height: 100px;
}

.menu-t {
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.menu {
    width: 1078px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-btn {
    height: 60px;
    line-height: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    color: #333;
}

.menu-t-celular {
    display: none;
}

@media (max-width: 850px) {
    .header {
        display: none;
    }

    .header-celular {
        display: block;
        width: 728px;
    }

    .header-celular-menu {
        filter: invert();
        float: right;
        height: 20px;
        margin-top: calc(50px - 10px);
    }

    .logo {
        float: left;
    }

    .menu-t {
        display: none;
    }

    .menu-t-celular {
        width: 100%;
        height: auto;
        background-color: #fff;
        display: none;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }
    
    .menu-celular {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .menu-btn-celular {
        width: 100%;
        height: 60px;
        line-height: 60px;
        text-transform: uppercase;
        font-size: 13px;
        color: #333;
        text-align: center;
        border-bottom: 1px solid #f5f5f5;
    }

    .menu-celular-fin {
        width: 100%;
        height: 20px;
        background-color: #f5f5f5;
    }

}

@media (max-width: 700px) {
    .header {
        display: none;
    }

    .header-celular {
        display: block;
        width: 320px;
    }

    .header-celular-menu {
        filter: invert();
        float: right;
        height: 20px;
        margin-top: calc(50px - 10px);
    }

    .logo {
        float: left;
    }

    .menu-t {
        display: none;
    }

    .menu-t-celular {
        width: 100%;
        height: auto;
        background-color: #fff;
        display: none;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }
    
    .menu-celular {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .menu-btn-celular {
        width: 100%;
        height: 60px;
        line-height: 60px;
        text-transform: uppercase;
        font-size: 13px;
        color: #333;
        text-align: center;
        border-bottom: 1px solid #f5f5f5;
    }

    .menu-celular-fin {
        width: 100%;
        height: 20px;
        background-color: #f5f5f5;
    }

}