@charset "utf-8";
/* CSS BASE */

@import url(reset.css); /* --- RESET --- */

/* -------------------------- GERAL ---------------------------- */

/* ----------------- ALTERA COR DO TEXTO SELECIONADO ----------- */
*::-moz-selection {
    background:#000;   /*---Cor de fundo--*/
    color:#fff;        /*--cor da fonte--*/
}
*::selection {
    background:#000;  /*---Cor de fundo--*/
    color:#fff;       /*--cor da fonte--*/
}
/* ----------------- ALTERA COR DO TEXTO SELECIONADO ----------- */

/* ----------------- ELEMENTOS GENÉRICOS ----------- */
.container{width: 100%; float: left;}
.content{max-width: 1100px; margin-right: auto; margin-left: auto;}
.clear{clear: both;}
.fontzero{font-size: 0em !important;}

a {
    color: #fff;
    text-decoration: none;
}
h2 {
    font: 35px 'NexaBold';
    color: #2f3f51;
    display: table;
    margin: auto;
}
h3 {
    font: 20px 'NexaBold';
    letter-spacing: -0.3px;
    color: #2f3f51;
}
h4 {
    font: 13px 'Gotham_Book';
    color: #565b61;
    line-height: 24px;
    letter-spacing: -0.1px;
}
p {
    font: 16px "Gotham_Medium", sans-serif;
    line-height: 23px;
    letter-spacing: -0.5px;
    color: #2f3f51;
}
.fl-left {
    float: left;
}
.fl-right {
    float: right;
}
.btn{
    display: table;
    font-family: "Gotham_Bold", sans-serif;
    font-size: 15px;
    line-height: 1;
    color: #2f3f51;
    background: none;
    text-decoration: none;
    margin: auto;
    border: 2px solid #c2b49e;
    border-radius: 15px;
    padding: 20px 100px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
}
.btn:hover {
    -webkit-transition: .5s ease-in;
    -moz-transition: .5s ease-in;
    -o-transition: .5s ease-in;
    transition: .5s ease-in;
    color: #fff;
    background-color: #2f3f51;
}

.alerta_erro {
    color: red;
    background: #ca92b8;
    padding: 10px;
    margin-top: -20px;
}
.botoes {
    text-align: center;
}
.conteudo-botoes {
    margin: 0 auto;
}
.conteudo-botoes li {
    display: inline-block;
    margin: 30px 10px 0;
}
.bt {
    color: #61a089;
    font-family: "SourceSansPro-Regular", sans-serif;
}
.active {
    color: #61a089;
    font-weight: bold;
}

.slider_show {
    position: relative;
    z-index: 99;
}
.slide {
    margin: 0px auto;
    justify-content: center;
}
.bx-wrapper {
    margin: 0 auto;
    position: relative;
}
/*.bx-controls-direction {
    position: absolute;
    top: 50%;
    z-index: 99;
    width: 100%;
}*/
/*a.bx-prev {
    background: url(../imagens/geral/seta_slide.png) center no-repeat;
    display: block;
    float: right;
    width: 15px;
    height: 15px;
    font-size: 0;
    left: 5%;
    position: absolute;
    padding: 15px 15px;
    border: 1px solid #fff;
}
a.bx-next {
    background: url(../imagens/geral/seta_slide.png) center no-repeat;
    transform: rotate(180deg);
    display: block;
    float: right;
    width: 15px;
    height: 15px;
    font-size: 0;
    right: 5%;
    position: absolute;
    padding: 15px 15px;
    border: 1px solid #fff;
}*/
.bx-pager.bx-default-pager {
    position: absolute;
    top: calc(50% - 77px);
    z-index: 999999999;
    left: 40px;
    height: 154px;
    background-color: rgba(92, 125, 156, 0.56);
    border-radius: 19px;
    padding: 27px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bx-pager-item {
    display: block;
}
a.bx-pager-link {
    display: block;
    cursor: pointer;
    margin: 0 5px;
    color: #5c7d9c;
    font: 14px "Gotham_Bold", sans-serif;
    letter-spacing: -0.6px;
    line-height: 8px;
}
.bx-pager-link.active {
    color: #0a3b6a;
}
.bx-controls-direction {
    display: none;
}

/*a.bx-prev:hover, a.bx-next:hover {
    background: url(../imagens/geral/seta_hover.png) no-repeat;
}*/

/* ----------------- ELEMENTOS GENÉRICOS ----------- */


/* ----------------- ELEMENTOS FLEX ----------- */
.flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
.flex-container{display: flex;}
.flex-wrap{flex-wrap: wrap;}
.flex-nowrap{flex-wrap: nowrap;}
.flex-column{flex-direction: column;}
.flex-row{flex-direction: row;}
.flex-between{justify-content: space-between;}
.flex-around{justify-content: space-around;}
/* ----------------- ELEMENTOS FLEX ----------- */

/* ----------------- TOPO ----------- */

.topo {
    background: #dfedfb;
    background-image: linear-gradient(to right, #f5f8fb , #dee4ea);
    position: relative;
    z-index: 9999;
}
.logo {
    margin-top: 20px;
    display: block;
}
.topo .endereco_topo {
    margin-top: 60px;
}
.topo .endereco_topo .flex.fl-left {
    width: 210px;
    align-items: center;
    padding: 10px 25px;
    border-radius: 21px;
    background-color: #4b6e96;
    margin-right: 10px;
}
.topo .endereco_topo .flex p {
    font: 13px "Gotham_Medium", sans-serif;
    color: #fff;
}
.topo .endereco_topo .flex.fl-right img {
    display: block;
    margin: auto;
    margin-right: 5px;
}
.topo .endereco_topo .flex.fl-right p, .topo .endereco_topo .flex.fl-right a {
    color: #565c61;
}
.topo .endereco_topo .flex.fl-right p span {
    font-family: "Gotham_Black";
    color: #565c61;
}

.btn-mobile{
    display: none;
}
.main_navigator{
    margin: 36px auto 0;
    margin-left: 0;
}
.main_navigator li{
    display: inline-block;
    /*margin: 0 30px;*/
    text-transform: uppercase;
}
.main_navigator li a{
    color: #565c61;
    font: 12px "Gotham_Medium", sans-serif;
    letter-spacing: 0.8px;
    background-position: center;
    display: block;
    padding-bottom: 36px;
    transition: border-bottom 0.5s;
    -webkit-transition: border-bottom .5s;
    -moz-transition: border-bottom .5s;
    -o-transition: border-bottom .5s;
}
.main_navigator li a:hover{
    color: #565c61;
    border-bottom: 3px solid #3f6eb9;
}
li.menu_ativo a {
    color: #565c61;
    border-bottom: 3px solid #3f6eb9;
}
.main_navigator li:first-of-type {
    margin-left: 0px;
}
.main_navigator li:last-of-type {
    margin-right: 0px;
}

/* ----------------- RODAPE ----------- */

footer{
    background: #0b1d2e url(../imagens/geral/bg_footer.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    padding-bottom: 130px;
}
footer .content {
    position: relative;
    z-index: 999;
}
.logo_rodape {
    display: block;
    margin-left: 0;
    margin-top: 130px;
}
footer .flex {
    align-items: center;
    flex-direction: row;
}
footer .tel_contato {
    width: 250px;
    margin-top: 45px;
}
footer .endereco {
    width: 385px;
    margin-top: 45px;
    margin-left: 40px;
}
footer h4 {
    margin-top: 15px;
    font-family: "Gotham_Bold", sans-serif;
    letter-spacing: 1px;
    text-align: left;
    color: #858b94;
    margin-bottom: 14px;
}
footer h5 {
    margin-top: 15px;
    font-family: "Gotham_Bold", sans-serif;
    letter-spacing: 1px;
    text-align: left;
    color: #fff;
    margin-bottom: 5px;
}
footer p, footer address {
    margin-top: 6px;
    font-size: 13px;
    font-family: "Gotham_Book", sans-serif;
    letter-spacing: 1px;
    line-height: 1;
    text-align: left;
    color: #fff;
}
footer p span {
    font: 14px "Gotham_Bold", sans-serif;
}

footer .direitos {
    width: 290px;
    margin-left: 0;
}
copyright {
    margin-top: 50px;
    font: 9px "OpenSans-Light", sans-serif;
    display: block;
    color: #d4d4d4 !important;
}
.wsete {
    width: 18px;
    height: 17px;
    background: url(../imagens/geral/icon-wsete.png) center right no-repeat;
    float: right;
    margin-top: -17px;
    display: block;
    position: relative;
    z-index: 99;
}

footer .img_doctoralia {
    margin-top: 150px;
}