
/* HEADER */

div#header {
    display: flex;
    justify-content: space-between;
    padding: 25px 20px 20px;
}

div#header img {
    max-height: 50px;
}

div#header h1 {
    font-size: 32px;
    text-align: center;
}

@media (max-width:768px) {
    div#header {
        justify-content: space-around;
        padding: 0;
        flex-direction: column;
        align-items: center;
        height: 230px;
        
    }
}

/*NAVBAR*/

nav.navbar-light.bg-light {
    background: #FFF !important;
}

.navbar-brand img {
    width: 120px;
    margin: 10px 0px 10px 0px;
}

.nav-link {
    color: #1c2447!important;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 500;
}

a.nav-link:hover {
    color: #292663 !important;
}

.social-part {
    width: 200px;
    text-align: center;
    padding-right: 10px;
}

.social-part .fa {
    padding-right: 5px;
    color: #1c2447;
    font-size: 20px;
}

.social-part span {
    font-weight: 500;
}

.social-part p {
    font-size: 13px;
    text-align: center;
    margin: 0;
}


@media(max-width: 708px) {

    ul.navbar-nav.align-items-center {
        padding-top: 30px;
    }
}


/*BANNER*/

.banner {
    background: url(../images/banner.jpg) center center no-repeat;
    height: 350px;
    background-size: cover;
    position: relative;
}

/* .overlay-banner {
    position: absolute;
    background: #252a2e;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0.5;
} */

@media (max-width:768px) {
    
    .banner {
        display: none;
    }
}

/*MAIN*/

.main {
    padding: 10px 15px 50px 15px;
    max-width: 1140px;
    margin: 0px auto;
}

main .grid-main {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 2fr;
    justify-items: center;
    align-items: flex-start;
    margin-top: 10px;
}

main .grid-main .main {
   grid-area: main;
}

main .grid-main .selo {
    grid-area: selo;
}

main img {
    max-height: 200px;
}

 main .grid-template-areas-1 {
    grid-template-areas: 
    "main selo"
 }

 @media (max-width:768px) {

    main .grid-main {
        grid-template-columns: 1fr;
    }

    main .grid-template-areas-1 {
        grid-template-areas: 
        "main"
        "selo"
     }

     main .grid-main .selo {
        height: 300px;
    }
}

a.pgLgpd {
    cursor: pointer;
    font-weight: bold;
}

.itens-lgpd li {
    list-style: none;
}


.ativo {
    background: #FFF;
    color: #252a2e;
    transition: 0.5s;
    border: 1px solid #252a2e;
}

/* CARDS */

.box {
    padding: 60px 0px;
    background: #ececec;
}

.box-part {
    border-radius: 0;
    padding: 20px 10px;
    margin: 10px 0px;
}

.text{
    margin:20px 0px;
}

.fa{
     color:#000;
}

i.fa.fa-phone-square {
    font-size: 45px;
    margin-bottom: 10px;
}


/* FOOTER */

footer {
    background: #28c4d6;
    height: 100px;
    bottom: 0;
    width: 100%;
    margin: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

footer div.disclaimer p {
    color: #FFF;
    font-weight: bold;
    margin: 0;
}

footer img {
    max-height: 50px;
    position: absolute;
    right: 30px;
}


@media (max-width:768px) {

    footer div.disclaimer {
        max-width: 300px;
    }

    footer div.disclaimer p {
        text-align: center;
        font-size: 14px;
    }

    footer img {
        display: none;
    }
}
