/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'arial';
}

.container {
    width: 90%;
    max-width: 1068px;
    margin: 0 auto;
}
.container.bigger{
    width: 100%;
    max-width: 1180px;
}
/* Barra Superior */
.top-bar {
    background-color: #063798;
    color: white;
    font-size: 11px !important;
    padding: 6.5px 0;
    margin-bottom: 0px;
    font-weight: normal ;
    a{
        font-size: 11px !important;
    }
}

.top-content {
    display: flex;
    justify-content: left;
    align-items: center;
}
.top-left{
    width:340px;
}

.top-right i{
    margin-left: 15px;
}
.top-right a, .top-right span{
    color: white;
    text-decoration: none;
}
.social-icons a{
    color: white;
    padding: 0 2px;
}
.top-right a:hover, .social-icons a:hover{
    color: #00b0fc;
}

.social-icons {
    display: inline-block;
    margin-left: auto;
}

.social-icons a {
    margin-left: 10px;
    cursor: pointer;
    font-size: 12px !important;
}
header{
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
/* Logo e Banner */
.header-main-header {
    height: 125px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 9px
}
.logo{
    width: 33%;
}
.logo img{
    width: 100%;
}
.banner-iptu {
    background-image: url('../imgs/BANNER_1900x300_1.png');
    background-size: cover;
    width: 67%;
    height: 110px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.iptu-content {
    font-weight: bold;
    display: flex;
    align-items: baseline;
}

.iptu-text { font-size: 60px; margin-right: 10px; }
.iptu-year { font-size: 50px; background: white; color: #003399; padding: 0 10px; border-radius: 5px; }

/* Menu de Navegação */
.nav-bar {
    padding-top: 7px;
    padding-bottom: 0px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: left;
    gap:36px;
    align-items: center;
}

.nav-menu li a {
    font-family: 'arial';
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li:last-child{
    margin-left: auto;
    margin-right: 15px;
    transform: translateY(-5px);
}
.nav-menu li a{
    padding-bottom: 16px;
    font-size: 14px;
    position: relative;
    &::after{
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 0%;
        height: 3px;
        background-color: red;
        transition: all .2s ease;
    }
}
.nav-menu li a:hover{
    &::after{
        width: 110%;
    }
}
.nav-menu li  i {
    font-size: 18px;
}

.search-icon {
    color: #333;
    cursor: pointer;
}

@media(max-width: 1018px){
    .top-bar{
        height: 84px;
    }
    .header-main-header{
        height: 84px;
    }
    .banner-iptu{
        width: 470px;
        height: 73px;
    }
    .nav-menu{
        flex-wrap: wrap;
    }
}

@media(max-width:728px){
    header{
        display: none;
    }
}