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

/******************/
/******************/
* {
	margin:0;
	padding:0;
}
HTML {
	height:100%;
	 -webkit-text-size-adjust:100%;
	 -ms-text-size-adjust:100%;
    font-size: 15px;
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    HTML {
        font-size: 13px;
    }
}
BODY {
	width:100%;
	min-height:100%;
    font-family: 'Montserrat', Helvetica, Arial, "sans-serif";
    font-weight: 400;
	color:#000;
	background-color:#fff;
}
a {
	outline:0;
	color:inherit;
	cursor: pointer;
}
a:link {
	text-decoration:none;
}
a:visited {
	text-decoration:none;
}
a:hover {
	text-decoration:none;
}
a:active {
	text-decoration:none;
}

:focus {
	outline-color: transparent;
	outline-style: none;
}
BUTTON:hover {
	text-decoration:none;
}
IMG {
	border:none;
}
FIELDSET {
	border:none;
	border-color:transparent;
}
*:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
button{
	cursor: pointer;
}
INPUT::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	text-transform: uppercase;
}
INPUT::-moz-placeholder { /* Firefox 19+ */
	text-transform: uppercase;
}
INPUT:-ms-input-placeholder { /* IE 10+ */
	text-transform: uppercase;
}
INPUT:-moz-placeholder { /* Firefox 18- */
	text-transform: uppercase;
}
TEXTAREA::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	text-transform: uppercase;
}
TEXTAREA::-moz-placeholder { /* Firefox 19+ */
	text-transform: uppercase;
}
TEXTAREA:-ms-input-placeholder { /* IE 10+ */
	text-transform: uppercase;
}
TEXTAREA:-moz-placeholder { /* Firefox 18- */
	text-transform: uppercase;
}
/******************/
/******************/
/**********************/

@media screen and (max-width: 1200px) {
	
}
/* TABLETS */
@media screen and (max-width: 970px) {
	
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
	
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
.mobile_only{
	display: none !important;
}
.desk_only{
	display: block !important;	
}
.mobile_only-f{
	display: none !important;
}
.desk_only-f{
	display: flex !important;	
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    .mobile_only{
        display: block !important;
    }
    .desk_only{
        display: none !important;	
    }	
    .mobile_only-f{
        display: flex !important;
    }
    .desk_only-f{
        display: none !important;	
    }	
}
.main {
	width:100%;
	height:auto;
	min-height:calc(100vh - 95px);
	position:relative;
    padding-top: 95px;
}
.img_cover{
	background-repeat:no-repeat;
	background-position:center center;
	background-size: cover;
}
.img_contain{
	background-repeat:no-repeat;
	background-position:center center;
	background-size: contain;
}
.img_res{
	width:100%;
	height:auto;
}
.no_margin{
	margin: 0% !important;
}
/************************/
/************************/
section{
	width:100%;
	height:auto;
	position:relative;
}
.text-center{
    text-align: center;
}
.block{
	width:100%;
	height:auto;
	position:relative;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.row_table{
    display: flex;
    flex-wrap: nowrap;
}
.block-auto{
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}
.block_90{
	width:90%;
	margin-left: 5%;
}
.block_95{
	width:95%;
	margin-left: 2.5%;
}
.block_80{
	width:80%;
	margin-left: 10%;
}
.full_height{
	min-height: 100vh;
}
.wraper{
	width:calc(100% - 30px);
	max-width:calc(1200px - 30px);
	padding: 0 15px;
	margin:0 auto;
}
.block_row{
	width:100%;
	height:auto;
	position:relative;
}
.block_row::after {
    content: "";
    clear: both;
    display: table;
}
.block_col{
	position:relative;
	float:left;
	min-height: 20px;
}
.espaco_80{
	padding: 40px 0;
}
.block_75{
	width:75%;
}
.block_66{
	width:66.66%;
}
.block_50{
	width:50%;
}
.block_33{
	width:33.33%;
}
.block_25{
	width:25%;
}
/* TABLETS */
@media screen and (max-width: 970px) {
    .block_75{
	width:66.66%;
    }
    .block_66{
        width:50%;
    }
    .block_25{
        width:33.33%;
    }
    .block_50.breackTablet{
        width:100%;
    }
	
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    .block_80{
        width:100%;
        margin-left: 0;
    }
    .block_95{
        width:100%;
        margin-left: 0;
    }
    .block_90{
        width:100%;
        margin-left: 0;
    }
    .block_75{
        width:100%;
    }
    .block_66{
        width:100%;
    }
    .block_50{
        width:100%;
    }
    .block_33{
        width:100%;
    }
    .block_25{
        width:50%;
    }
	
}
/* SMARTPHONES */
@media screen and (max-width: 467px) {
    .block_25{
        width:100%;
    }
	
}
.flex{
	display: flex;
}
/***/
.flex-hl-left{
    justify-content: flex-start;
}
.flex-hl-center{
    justify-content: center;
}
.flex-hl-right{
    justify-content: flex-end;
}
.flex-hl-space{
    justify-content: space-between;
}
.flex-hl-space-eq{
    justify-content: space-evenly;
}
/***/
.flex-vl-top{
    align-items: flex-start;
}
.flex-vl-center{
    align-items: center;
}
.flex-vl-bottom{
    align-items: flex-end;
}
.flex-vl-stretch {
    align-items: stretch;
}
/***/
/***/
.flex-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.flex-grid-eq {
  display: flex;
  flex-flow: row wrap;
    justify-content: space-evenly;
}
.flex-grid::after {
  content: "";
  flex: auto;
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    .flex{
        flex-wrap: wrap;
    }
}
/***********************/
/***********************/
.ba-mgn-100-tp{
	margin-top: 100px;
}
.ba-mgn-80-tp{
	margin-top: 80px;
}
.ba-mgn-801-tp{
	margin-top: 80px;
}
.ba-mgn-60-tp{
	margin-top: 60px;
}
.ba-mgn-40-tp{
	margin-top: 40px;
}
/*****/
.ba-mgn-100-bt{
	margin-bottom: 100px;
}
.ba-mgn-80-bt{
	margin-bottom: 80px;
}
.ba-mgn-60-bt{
	margin-bottom: 60px;
}
.ba-mgn-40-bt{
	margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
    .ba-mgn-100-tp{
        margin-top: 90px;
    }
    .ba-mgn-80-tp{
        margin-top: 70px;
    }
    .ba-mgn-60-tp{
        margin-top: 50px;
    }
    .ba-mgn-40-tp{
        margin-top: 30px;
    }
    /*****/
    .ba-mgn-100-bt{
        margin-bottom: 90px;
    }
    .ba-mgn-80-bt{
        margin-bottom: 70px;
    }
    .ba-mgn-60-bt{
        margin-bottom: 50px;
    }
    .ba-mgn-40-bt{
        margin-bottom: 30px;
    }
	
}
/* TABLETS */
@media screen and (max-width: 970px) {
    .ba-mgn-100-tp{
        margin-top: 80px;
    }
    .ba-mgn-80-tp{
        margin-top: 60px;
    }
    .ba-mgn-60-tp{
        margin-top: 40px;
    }
    .ba-mgn-40-tp{
        margin-top: 20px;
    }
    /*****/
    .ba-mgn-100-bt{
        margin-bottom: 80px;
    }
    .ba-mgn-80-bt{
        margin-bottom: 60px;
    }
    .ba-mgn-60-bt{
        margin-bottom: 40px;
    }
    .ba-mgn-40-bt{
        margin-bottom: 20px;
    }
	
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    .ba-mgn-100-tp{
        margin-top: 60px;
    }
    .ba-mgn-80-tp{
        margin-top: 40px;
    }
    .ba-mgn-801-tp{
        margin-top: 60px;
    }
    .ba-mgn-60-tp{
        margin-top: 25px;
    }
    .ba-mgn-40-tp{
        margin-top: 10px;
    }
    /*****/
    .ba-mgn-100-bt{
        margin-bottom: 60px;
    }
    .ba-mgn-80-bt{
        margin-bottom: 40px;
    }
    .ba-mgn-60-bt{
        margin-bottom: 25px;
    }
    .ba-mgn-40-bt{
        margin-bottom: 10px;
    }
	
}

/************************/
/************************/
/************************/

header {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: fixed;
    top: 0;
    z-index: 5000;
    background: #fff;
}

.logo{
    position: relative;
    width: 127px;
    height: 50px;
    margin-left: 30px;
}
.logo h1 a{
    position: relative;
    display: block;
    float: left;
    width: 127px;
    height: 50px;
    overflow: hidden;
    text-indent: -1500px;
    background-image: url("images/logo.png");
	background-repeat:no-repeat;
	background-position:center center;
	background-size: contain;
}
.menu{
    display: block;
    position: relative;
    width: calc(100% - 200px - 200px - 4rem);
    padding: 0 4rem 0 10rem;
}
.menu UL{
    list-style-type: none;
}
.menu UL LI{
    display: inline-block;
    font-size: 0.8rem;
    font-weight: bold;
    color: #2e3092;
}
.menu_mobile_icon{
    font-size: 2rem;
    
}
.menu_mobile{
    display: none;
    width: 100%;
    padding: 1.5rem 0;
}
.menu_mobile UL{
    list-style-type: none;
}
.menu_mobile LI{
    margin-bottom: 0.6rem;
}
/************************/
/************************/
footer{
    
}
/*****************/
/*****************/
/*****************/

H2.titulo{
	font-size: 2.5rem;
	font-weight: bold;
	margin: 0 0 1.5rem 0;
    padding-left: 1.5rem;
    color: #2e3092;
    border-left: 7px solid #ffd503;
}
H2.titulo_inv{
    border-left: 7px solid #fff;
}
H3.titulo{
	font-size: 1.3rem;
	padding-bottom: 0.8rem;
}
button.sos{
    border: none;
    border-radius: 10px;
    background-color: #ffd503;
    padding: 1rem 3rem;
	font-weight: 600;
    color: #2e3092;
    -webkit-box-shadow: 5px 5px 6px -1px rgba(0,0,0,0.6);
    box-shadow: 5px 5px 6px -1px rgba(0,0,0,0.6);
    font-size: 1.5rem;
}
button.yellow{
    background-color: #ffd503;
    color: #2e3092;
}
button.blue{
    background-color: #2e3092;
    color: #fff;
}
.patinhas{
    background-image: url("images/patinhas.png");
}
.patinhas_p{
    background-image: url("images/patinhas_p.png");
}
/***********************/
/***********************/
.loading{
	width: 100%;
	height: auto;
	min-height: 250px;
	background-repeat: no-repeat;
	background-image: url(images/loading.gif);
	background-position: center center;
}
/************************/
/************************/
/************************/
/************************/
.whatsapp_button{
    z-index: 500;
    background-color: #0cc042;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
}
.whatsapp_button i{
    font-size: 2.8rem;
}
.middle_01{
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.middle_01 P{
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin-bottom: 1.5rem;
}
.text_middle_main_title{
    margin-top: 5rem;
    margin-bottom: 4.5rem;
}
.text_middle_main{
    /*margin-bottom: 4rem;*/
}
.text_middle {
    margin-bottom: 3rem;
}
.text_middle P{
    margin-bottom: 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2e3092;
    text-align: center;
    
}
@media screen and (max-width: 767px) {
.text_middle44 {
    margin-bottom: 0rem !important;
}
}
.middle_servicos{
    padding-bottom: 4rem;
}
.corpo_clinico{
    padding: 4rem 0 4rem 0;
    background-color: #ffd503;
    
}
/***********/
/***********/
.text-black{
    color: #000 !important;
}
.grid_clinico {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 70px;
    margin-top: 2rem;
}
@media screen and (max-width: 767px) {
    .grid_clinico {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        grid-gap: 50px;
    }
}
.clinico_item{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.clinico_item_int{
    position: relative;
    display: block;
    width: calc(100% - 2rem);
    height: auto;
    padding: 0 1rem;
}
.clinico_item_img{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 3px;
}
.clinico_item IMG{
    border-radius: 10px;
}
.clinico_item_nome{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background-color: #2e3092;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    padding: 0.8rem 0;
}
.clinico_item_nome H4{
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}
.clinico_item_nome P{
    font-size: 0.8rem;
}
/*******/
.middle_3{
    padding: 2rem 0 6rem 0;
}
.middle_3a{
    padding: 6rem 0 1rem 0;
}
.middle_3 H2{
    margin-bottom: 2rem;
    font-size: 3.5rem;
    color: #000;
}
/*********/
.footer_contact{
    padding: 4rem 0;
    background-color: #2e3092;
    color: #fff;
    
}
.grid_contato {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 120px;
}
.contact_1 H3{
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #ffd503;
    text-align: left;
    
}
@media screen and (max-width: 767px) {
.contact_1 H3{
    text-align: left;
}
}
.contact_1 IFRAME{
    width: 100%;
    min-height: 250px;
    
}
.contact_2{
    align-self: center;
}
.contact_2 DIV{
    padding-top: 80px;
}
.contact_2 P{
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    
}
.contact_2 P i{
    color: #ffd503;
    margin-right: 10px;
    
}
@media screen and (max-width: 767px) {
    .grid_contato {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        grid-gap: 60px;
    }
    .contact_2 DIV{
        padding-top: 0px;
    }
}
/*********/
.footer_copy{
    background-color: #2e3092;
    padding-bottom: 1rem;
    color: #fff;
    text-align: center;
}
/********************/
/****** INTERNO *****/
.interno_topo{
    padding: 81px 0;
    background-image: url(/especialidades/images/clean_code_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    
}
.interno h2 {
    font-weight: 500;
    font-size: 50px;
    line-height: 54px;
    text-align: center;
    color: #FFF;
}