/* ============================================================
CSS RESET
=============================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




/* ============================================================
CSS BASE STYLE
=============================================================== */

/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/* div {
    box-shadow: inset 0 0 0 10px pink;
}
.row {
    box-shadow: inset 0 0 0 5px green;
}
.coll {
    box-shadow: inset 0 0 0 5px greenyellow;
} */
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */


* {
    scrollbar-width: thin;
    scrollbar-color: #ddd #f7f7f7;
}
*::-webkit-scrollbar {
    width: 12px;
}
*::-webkit-scrollbar-track {
    background-color: #ddd;
}
*::-webkit-scrollbar-track:hover {
    background-color: #f7f7f7;
    
}
*::-webkit-scrollbar-thumb {
    background: #b9b9b9;
}
*::-webkit-scrollbar-thumb:hover {
    background-color: #979797;
}

@media screen and (min-width: 600px){
    #menucel{
        display: none !important;
    }
   
}

#menucel nav ul{
    list-style-type: none;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #595959;
    padding: 20px;
    transition: color .3s;

}
 
#menucel nav li{
    padding: 20px;
}

#menucel nav a {
   color: #595959;
   text-decoration: none;
}

#menucel nav a:hover{
    color: #1655CF;
}

#menucel nav {
    border: 1px solid #CCC;
}

/*Fim menu responsivo*/


html {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4D4D4D;

    background: rgb(247,247,247);
    background: linear-gradient(140deg, rgba(247,247,247,1) 5%, rgba(217,217,217,1) 50%);
}

body {
    min-height: 100vh;
}

hr {
    background-color: rgba(0, 0, 0, 0.2);
    height: 1px;
    border: none;
    padding: 0;
    margin: 0 auto;
}


/* ---------------// colunas */
.row {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.r-middle {
    align-items: center;
}

.row > .coll {
    box-sizing: border-box;
    width: 50%;
}

.row > .coll:not(:last-child) {
    margin-right: 40px;
}


/* ---------------// botoes */
.btn {
    text-decoration: none;
    white-space: nowrap;
    color: #F5F5F5;
    border: none;
    padding: 0;
    margin: 0;
    background: linear-gradient(320deg, #1655cf 50%, #306fe9 80%);
    background-size: 1px 150px;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
    padding-left: 6%;
    padding-right: 6%;

    transition: background-position .2s,
                box-shadow .2s;
}

.btn.n {
    font-size: 16px;
    letter-spacing: 0.1rem;
    line-height: 46px;
    border-radius: 12px;
}

.btn.b {
    font-size: 24px;
    font-weight: 700;
    line-height: 72px;
    border-radius: 20px;
}

.btn:not(:disabled):hover {
    cursor: pointer;
    background-position: 100px;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.25);
}


/* ---------------// links */
.link {
    font-weight: 500;
    font-style: 16px;
    text-decoration: none;
    color: #1655cf;

    transition: color .2s;
}

.link:hover {
    color: #306fe9;
}


/* ---------------// formularios */
.input {
    box-sizing: border-box;
    position: relative;
    margin-bottom: 10px;
}

.input input,
.input textarea,
.input span {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4D4D4D;
}

.input span {
    position: absolute;
    left: 15px;
    top: 50%;
}

.input input,
.input textarea {
    line-height: 55px;
    box-sizing: border-box;
    outline: none;
    border: none;
    border-radius: 14px;
    width: 100%;
    padding: 0 15px;
    box-shadow: inset 0 0 0 2px #CCC;
    overflow: hidden;

    transition: box-shadow .2s;
}

.input textarea {
    overflow: auto;
    line-height: 120%;
    resize: none;
    padding: 15px;
    height: 150px;
}

.input input:hover,
.input textarea:hover {
    box-shadow: inset 0 0 0 2px #fff;
}

.input input:focus,
.input textarea:focus {
    box-shadow: inset 0 0 0 2px #1655CF;
}

.input input:not(:placeholder-shown) {
    color: #1655CF;
}


.input-group {
    display: flex;
    justify-content: space-between;
}

.input-group > .input {
    width: 100%;
}
.input-group > .input:not(:last-child) {
    margin-right: 10px;
}


.form-action {
    display: flex;
    justify-content: flex-end;
}


/* ---------------// rodapé */
.page-footer {
    padding-top: 30px;
    padding-bottom: 30px;
}

.page-footer .center {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.06rem;
    line-height: 140%;
    color: #4D4D4D;

    padding: 0;
    margin: 0;
    user-select: none;
}


/* ---------------// menu-principal */
.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    
    max-width: 1260px;
    min-height: 90px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    border-bottom: 1px solid #CCC;
}

.main-menu a {
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #595959;

    padding: 20px;
    transition: color .3s;
}
.main-menu a:hover {
    color: #306FE9;
}


/* ---------------// icone-sandwich para menu mobile */
.menu-sandwich {
    display: none;
    position: fixed;
    z-index: 9;
    right: 20px;
    top: 20px;
    width: 48px;
    height: 30px;
}

.menu-sandwich span,
.menu-sandwich span:after,
.menu-sandwich span:before {
    border-radius: 3px;
    box-shadow: 0px 1px 1px hsla(0, 0%, 0%, 0.3);
    background-color: #fff;
}
.menu-sandwich span {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: calc(30px / 4);
}
.menu-sandwich span:after,
.menu-sandwich span:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
}
.menu-sandwich span:after {
    top: calc(30px / 2);
}
.menu-sandwich span:before {
    top: 30px;
}

.menu-sandwich:hover {
    cursor: pointer;
}
.menu-sandwich:hover span,
.menu-sandwich:hover span:after,
.menu-sandwich:hover span:before {
    background-color: #306FE9;
}

.page-menu.open .menu-sandwich span {
    background-color: #306FE9;
    top: 10px;
    transform: rotate(45deg);
}
.page-menu.open .menu-sandwich span:after {
    background-color: #306FE9;
    top: 1px;
    transform: rotate(90deg);
}
.page-menu.open .menu-sandwich span:before {
    display: none;
}



.content {
    box-sizing: border-box;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.tt {
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #1655CF;

    padding-top: 0;
    padding-bottom: 20px;
}

.page-tt {
    font-weight: 700;
    font-size: 42px;
    color: #333;

    padding-bottom: 40px;
    user-select: none;
}




/* --------------- --------------- ---------------
------------------ --------------- ---------------
------------------ SEC. TOPO
------------------ --------------- ---------------
------------------ --------------- --------------- */

.page-top {
    margin-bottom: 60px;
    background-image: url(bg-brasao.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.page-top .content {
    box-sizing: border-box;
    min-height: 80vh;
    padding-top: 60px;
    padding-bottom: 60px;
}


.page-top .coll.a {
    width: 60%;
}

.page-top .coll.a > *:not(:last-child) {
    margin-bottom: 60px;
}

.top-title {
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 120%;
    letter-spacing: -0.1rem;

    display: flex;
    align-items: center;
}

.top-title img {
    margin-right: 20px;
}

.top-holder {
    line-height: 180%;
}

.top-holder strong {
    font-size: 22px;
    font-weight: 700;
}

.update-status {
    font-size: 15px;
    color: #306FE9;
}


.page-top .coll.b {
    text-align: center;
    width: 40%;
}

.page-top .coll.b > *:not(:last-child) {
    margin-bottom: 30px;
}

.page-top .coll.b .btn {
    width: 100%;
}

.page-top .coll.b hr {
    width: 60%;
}

.page-top .coll.b .link {
    display: block;
}




/* --------------- --------------- ---------------
------------------ --------------- ---------------
------------------ SEC. ALERT
------------------ --------------- ---------------
------------------ --------------- --------------- */

.page-alert {
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 180px;
}

.page-alert .content {
    max-width: calc(1200px - 40px);
}


.box-message {
    background: #F7F7F7;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 40px;

    font-size: 15px;
}

.box-message .tt {
    text-transform: uppercase;
}

.box-message p:not(:last-child),
.box-message ol:not(:last-child),
.box-message ol li:not(:last-child) {
    padding-bottom: 20px;
    line-height: 160%;
}

.box-message ol {
    list-style: decimal;
    padding-left: 20px;
}

.box-message strong,
.box-message a {
    text-decoration: none;
    font-weight: 700;
    color: #4D4D4D;
}

.box-message a:hover {
    text-decoration: underline;
    color: #306FE9;
}




/* --------------- --------------- ---------------
------------------ --------------- ---------------
------------------ SEC. CONTACT
------------------ --------------- ---------------
------------------ --------------- --------------- */

.page-contact {
    margin-bottom: 180px;
}

.page-contact .coll.b {
    text-align: center;
    position: relative;
}
.page-contact .coll.b:after {
    content: "";
    width: 1px;
    height: 90%;
    background-color: #BFBFBF;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.page-contact .coll.b > * {
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #4D4D4D;

    display: block;
    transition: color .2s;
}

.page-contact .coll.b > *:not(:last-child) {
    margin-bottom: 40px;
}

.page-contact .coll.b a:hover {
    color: #306FE9;
}


.page-contact .coll.b .contact-fone {
    font-weight: 700;
    font-size: 26px;
}
.page-contact .coll.b .contact-fone sub {
    font-size: 20px;
}




/* --------------- --------------- ---------------
------------------ --------------- ---------------
------------------ SEC. LOCATION
------------------ --------------- ---------------
------------------ --------------- --------------- */

.map-inner {
    box-sizing: border-box;
    overflow: hidden;
    height: 40vh;
    min-height: 400px;
    background-color: #ccc;
    margin: 0;
    padding: 0;
    position: relative;
    box-shadow: inset rgba(0, 0, 0, 0.1) 0px 10px 10px -5px,
            rgba(0, 0, 0, 0.2) 0px 10px 10px -5px;

    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
}




/* --------------- --------------- ---------------
------------------ --------------- ---------------
------------------ MOBILE
------------------ --------------- ---------------
------------------ --------------- --------------- */

@media only screen and (max-width: 1000px) {

    /* ------------------- MENU-PRINCIPAL */
    .menu-sandwich {
        display: inherit;
    }

    .page-menu {
        position: fixed;
        z-index: 5;
        right: 20px;
        top: 20px;
        width: 46px;
        height: 36px;
    }
    
    .main-menu {
        box-sizing: border-box;
        display: none;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 7;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        height: 100%;
        padding: 80px 0 0 0;
    }
    
    .main-menu a {
        font-size: 1.7rem;
        text-align: center;
        display: block;
        border-bottom: 1px solid #ccc;
    }

    .page-menu.open .main-menu {
        display: block;
    }


    /* ------------------- PAGE TOP */
    .page-top {
        background-position: center 40%;
        background-size: 85%;
    }
    .page-top .content {
        padding-top: 90px;
    }
    .page-top .row {
        flex-wrap: wrap;
    }
    .page-top .row .coll {
        width: 100%;
    }
    .page-top .coll.a {
        margin-bottom: 60px;
    }
    .page-top .coll.a > *:not(:last-child) {
        margin-bottom: 30px;
    }
    .row > .coll:not(:last-child) {
        margin-right: 0;
    }
    .top-title {
        font-size: 1.5rem;
    }


    /* ------------------- PAGE CONTACT */
    .page-contact .row {
        flex-wrap: wrap;
    }
    .page-contact .row .coll {
        width: 100%;
    }
    .page-contact .coll.a {
        margin-bottom: 60px;
    }
    .page-contact .coll.b {
        padding-top: 60px;
    }
    .page-contact .coll.b:after {
        width: 70%;
        height: 1px;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

}