    header{
        width: 100%;
        overflow: hidden;
    }

    header .container:nth-child(1){
        background-color: #951E1C;
    }

    /* HEADER */
    /* Upper */
    header #upper-menu{
        color: #FFF;
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        padding-right: 9px;
        padding-left: 19px;
        align-items: center;
        z-index: 2;
    }

    header #upper-menu a{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-size: 14px;
    }

    header #upper-menu h2{
        color: #FFF;
        font-size: clamp(0.8rem, 4vw, 1rem);
        display: inline-block;
        white-space: nowrap;
    }

    header #upper-menu ul{
        display: flex;
    }

    header #upper-menu ul li{
        margin: 0 10px;
    }


    /* Middle */
    header #middle-menu{
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #951E1C;
        padding: 10px;
        text-transform: uppercase;
    }

    header #middle-menu .logo-link{
        display: block;
        width: 70%;
        padding-top: 22px;
    }

    header #middle-menu div{
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    header #middle-menu .login-area {
        gap: 15px;
    }

    header #middle-menu div span, #middle-menu div a span{
        font-weight: 700;
        margin-left: 10px;
        font-size: 1rem;
    }

    header #middle-menu a{
        display: flex;
        align-items: center;
    }

    header #middle-menu a span{
        font-weight: 700;
    }

    header #middle-menu a svg{
        margin-right: 10px;
    }

    /* Lower */
    header nav{
        display: flex;
        align-items: center;
        padding: 14px 10px;
        font-weight: 500;
    }

    header .container:nth-child(3){
        border-top: 1px solid #e3e3e3;
        border-bottom: 1px solid #e3e3e3;
    }

    header nav a:nth-child(1) img{
        margin-right: 10px;
    }

    header nav ul{
        display: flex;
        flex: 1;
        justify-content: space-around;
        margin: 0 20px;
    }

    header nav ul li{
        margin: 0 15px;
    }

    header nav ul li:hover{
        color: #951E1C;
    }

    header nav a:nth-child(3){
        background-color: #951E1C;
        color: #FFF;
        border-radius: 7px;
        padding: 5px 10px;
    }

    header .assine-a-tribuna-button {
        background: #951E1C;
        color: white;
        padding: 7px 15px;
        font-size: 13px;
        border-radius: 8px;
        font-weight: bold;
    }

    .ultimas-edicoes-div {
        display: none;
        align-items: center;
    }

    .ultimas-edicoes-div span {
        margin-top: 2px;
        font-size: 15px;
        font-weight: bold;
    }


    /* responsividade */

    @media screen and (min-width:993px){
        header #middle-menu{
            justify-content: space-between;
            padding: 10px 24px;
        }

        header #middle-menu .logo-link{
            width: 50%;
        }

        header div:nth-child(2) h2{
            display: none;
        }
    }


    @media screen and (min-width: 320px) and (max-width: 992px){
        header nav {
            justify-content: space-between;
        }

        header #upper-menu p, header #upper-menu h2, header #upper-menu ul, header nav ul, #last-news .widgets{
            display: none !important;
        }

        header div:nth-child(2) h2{
            display: block;
            color: #000;
            margin: 0 auto 15px;
        }
    }

    #menu-aside-container {
        display: none;
        position: fixed;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 2;
        background-color: rgb(0 0 0 / 71%);
    }

    #menu-aside {
        background-color: #951e1c;
        color: white;
        width: 350px;
        height: 100vh;
        padding: 20px 30px;
        position: relative;
    }
    @media (max-width:700px){
        #menu-aside{
            overflow-y: scroll;
        }
        #menu-aside .menu-login-div{
            position: initial !important;
        }
    }

    #menu-aside .fechar-div {
        font-weight: bold;
        display: flex;
        margin-bottom: 30px;
        align-items: center;
        cursor: pointer;
    }

    #menu-aside .fechar-div a {
        margin-right: 10px;
        display: flex;
        align-items: center;
    }

    #menu-aside .input-div {
        margin-bottom: 30px;
        display: flex;
        border: 1px solid #c3c3c3;
        border-radius: 6px;
        overflow: hidden;
        background-color: white;
    }

    #menu-aside .input-div label {
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }
    #menu-aside input {
        width: 100%;
        font-size: 14px;
        padding: 15px 10px;
        outline: none;
        background-color: white;
        border: 1px solid white;
        position: relative;
        left: -2px;
    }

    #menu-aside .menu-list li {
        margin-bottom: 30px;
    }

    #menu-aside .menu-list li a {
        font-weight: bold;
    }

    #menu-aside .menu-login-div {
        bottom: 70px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 30px
    }
    #menu-aside .menu-login-div .login-link {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center
    }

    #menu-aside .menu-login-img-div {
        background: white;
        padding: 2px 5px;
        border-radius: 18px;
        overflow: hidden;
        margin-right: 11px;
    }

    #menu-aside-container #outside {
        width: 80vw;
    }

    @media (min-width: 320px) and (max-width: 700px) {
        header #upper-menu {
            justify-content: center;
        }

        header #middle-menu {
            padding-top: 22px;
        }

        header #middle-menu .logo-link {
            padding-top: 0px;
        }

        #middle-menu > div {
            display: flex;
            flex-direction: column;
        }

        #middle-menu > div svg {
            width: 22px;
            height: 22px;
        }

        #middle-menu > div span {
            display: inline !important;
            margin-top: 4px;
            margin-left: 0 !important;
            font-size: 11px !important;
            text-transform: lowercase;
        }

        #middle-menu a {
            flex-direction: column;
        }

        #middle-menu a svg {
            margin-right: 0px !important;
        }

        #middle-menu a span {
            font-size: 11px;
            margin-top: 5px;
            text-transform: lowercase;
        }

        .container .contained h2 {
            display: none;
        }

        .widget-previsao {
            display: none !important;
        }

        .ultimas-edicoes-div {
            display: flex;
        }

        #menu-aside-container #outside {
            width: 25vw;
        }
    }

    @media (max-height: 700px) {
        #menu-aside {
            overflow-y: scroll;
        }
        #menu-aside .menu-login-div {
            bottom: 20px;
        }
    }

    @media (min-height: 650px) {
        #menu-aside .menu-login-div {
            position: absolute;
            left: 30px;
            right: 30px;
        }
    }