@charset "utf-8";

@font-face {
    font-family: 'unimed_sansbold';
    src: url('unimedsans-bold.woff2') format('woff2'),
         url('unimedsans-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'unimed_sansregular';
    src: url('unimedsans-regular-webfont.woff2') format('woff2'),
         url('unimedsans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

} 

@font-face {
    font-family: 'unimed_slabbold_italic';
    src: url('unimedslab-bolditalic.woff2') format('woff2'),
         url('unimedslab-bolditalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'unimed_slabbook';
    src: url('unimedslab-book.woff2') format('woff2'),
         url('unimedslab-book.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'unimed_slabbold';
    src: url('unimedslab-bold.woff2') format('woff2'),
         url('unimedslab-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: 'unimed_slabbook_italic';
    src: url('unimedslab-bookitalic.woff2') format('woff2'),
         url('unimedslab-bookitalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

 /*  DEFAULT
/*----------------------------------------*/

body{
	padding:0;
	margin: 0;
	color:#636363;
	font-size: 15px;
    font-family: 'unimed_sansregular', "Trebuchet MS", 'Trebuchet MS', Helvetica, sans-serif;
	overflow-x: hidden;
    background: #f1f1f1;
}

a:hover,
a:focus{
	text-decoration: none;
}

img{max-width: 100%;}

h1, 
h2, 
h3{
	font-weight: normal;
}

.overlay_geral {left: 0;top: 0;width: 100%;height: 100%;position: fixed;background: rgba(0,0,0,0.8);z-index: 999999;}
.overlay_geral .overlay__inner {left: 0;top: 0;width: 100%;height: 100%;position: absolute;}
.overlay_geral .overlay__content {left: 50%;position: absolute;top: 50%;transform: translate(-50%, -50%);text-align: center;}
.overlay_geral .spinner {width: 75px;height: 75px;display: inline-block;border-width: 2px;border-color: rgba(255, 255, 255, 0.05);border-top-color: #fff;animation: spin 1s infinite linear;border-radius: 100%;border-style: solid;}
@keyframes spin {100% {transform: rotate(360deg);}}

#s-m-t-tooltip{
  margin: 24px 14px 7px 12px; 
  padding: 5px; 
  max-width:300px; 
  color: #000;
  font-size: 14px;
  line-height:90%; 
  letter-spacing: 0;
  background: rgba(255,255,255,0.9);
  z-index:99999999999; 
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.4);
box-shadow: 0 0 5px 0 rgba(0,0,0,.4);
}

.mobile-telefone{
    display: none;
    padding: 40px 0;
    text-align: center;
    font-size: 30px;
}

.mobile-telefone a{color: #00995d;}

@media only screen and (max-width : 991px){
    .mobile-telefone{display: block;}
}



 /*  HEADER
/*----------------------------------------*/

header{
    position: relative;
    margin-bottom: 10px;
    background: #fff;
}

    .header-search{
        padding-top: 25px;
        color: #00995d;
    }

        .header-search input[type="text"]{
            color: #666;
            border: none;
            border-bottom: 1px solid #00995d;
        }

        .header-search button{
            background: none;
            border: none;
        }

    .header-logo{
        padding: 20px 0;
        text-align: center;
    }

        .header-logo img{display: inline-block;}

    .header-info{
        padding-top: 25px;
        color: #00995d;
        text-align: right;
    }

        .header-info a{
            display: inline-block;
            margin-right: 15px;
            color: #00995d;
        }

        .header-info .fa{
            display: inline-block;
            vertical-align: middle;
            margin-right: 5px;
            font-size: 17px;
        }

        .header-info .fa-envelope {
            line-height: 10px;
            vertical-align: baseline;
        }

 @media only screen and (max-width : 991px) {
    .header-info{
        font-size: 20px;
        text-align: center !important;
        padding: 10px 0;
    }
    .header-info .fa{font-size: 24px;}
    .header-search, .header-info a{display: none;}
}


    header nav{
        padding: 15px 0 0 0;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
    }

        header nav a{
            display: inline-block;
            padding: 0 15px 15px 15px;
            color: #0a5f55;
            border-bottom: 1px solid #fff;
            transition: all 0.8s linear 0s;
        }

            header nav a:hover{
                color: #00995d;
                border-bottom: 1px solid #00995d;
            }

        nav span {
            position: relative;
            display: inline-block;
            transition: all 0.8s linear 0s;
        }

    nav .nav-sub{
        visibility: hidden;
        position: absolute;
        top: 30px;
        left: -60px;
        width: 230px;
        padding: 15px;
        text-align: center;
        background: #fff;
        border-top: 1px solid #eee;
        z-index: 999;
        opacity: 0;
        transition: all 0.3s linear 0s;
    }

    nav span:hover .nav-sub,
    nav span .nav-sub:hover{
        visibility: visible;
        top: 37px;
        opacity: 1;
    }

        nav .nav-sub a{
            display: block;
            padding: 5px 0;
        }



 @media only screen and (max-width : 991px) {
    header nav{display: none;}
}

.is-sticky nav{
    padding: 15px 0 0 0;
    background: rgba(255,255,255,.98);
    z-index: 99999;
}

#sticky-wrapper{
    height: auto !important;
}

.is-sticky .home-top-sticky{
    padding: 5px 0;
    background: rgba(255,255,255,.7);
    z-index: 99999;
}


 /*  MENU COLORIDO
/*----------------------------------------*/

#menuMobile{
    position: relative;
    display: none;
    text-align: left;
}

@media only screen and (max-width: 991px){
    #menuMobile{display: block;}
}

#menuMobile .menu-click{
    color: #0a5f55;
    display: inline-block;
    padding: 15px;
    top: -50px;
    font-size: 30px !important;
    cursor: pointer;
    position: absolute;
}

.mobileLinks a{
    display: block;
    width: 100%;
    color: #0a5f55;
    font-size: 22px;
    padding: 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid rgba(0,0,0,.1);
}




 /*  MENU COLORIDO
/*----------------------------------------*/

.top-menu{
    margin-bottom: 10px;
    text-align: center;
}

    .top-menu a{
        display: inline-block;
        padding: 10px 0;
        width: 14%;
        color: #fff;
        font-weight: bold;
        font-size: 14px;
        background: #00995d;
        transition: all 0.7s ease 0s;
    }

    .top-menu a:nth-child(2){background: #a3238e;}
    .top-menu a:nth-child(3){background: #ed1651;}
    .top-menu a:nth-child(4){background: #0a5f55;}
    .top-menu a:nth-child(5){background: #f47920;}
    .top-menu a:nth-child(6){background: #411564;}
    .top-menu a:nth-child(7){background: #b1d34b; color: #0a5f55 !important;}

        .top-menu a:hover{opacity: 0.5;}

.top-menu.top-mobile{
    display: none;
}

@media only screen and (max-width : 1200px) {
    .top-menu{display: none;}
    .top-menu.top-mobile{display: block;}
    .top-menu.top-mobile a{
        width: 49.8% !important;
        margin-bottom: 5px;
    }

    .top-menu a:nth-child(7){width: 100% !important}
}


@media only screen and (max-width: 991px) {
    .top-menu.top-mobile a{
        width: 100% !important;
        margin-bottom: 5px;
    }
}

 /*  BANNER
/*----------------------------------------*/

.banner{
    background: gray;
    margin-bottom: 15px;
}

@media only screen and (max-width : 991px){
    /*.banner{display: none;}*/
    .banner img {width: 100%;}
}


 /*  SERVIÇOS
/*----------------------------------------*/

.servicos{padding: 80px 12px;}

.servicos-item{
    padding: 0;
    position: relative;
    border: 2px solid #f1f1f1;
}

    .servicos-item-image {
        height: 205px;
        overflow: hidden;
    }

    .servicos-item-image img{width: 100%;}

    .servicos-item-title{ 
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px 0;
        color: #fff;
        text-align: center;
        font-size: 16px;
        background: rgba(10,95,85,.9);
        z-index: 999;
        transition: all .4s ease 0s;
    }

        .servicos-item:hover .servicos-item-title{
            padding: 20px;
            background: rgba(10,95,85,.7);
        }

@media only screen and (max-width : 991px){
    .servicos{padding: 0 15px;}
    .servicos-item-image{display: none;}
    .servicos-item-title{position: relative}
    .servicos-item:hover .servicos-item-title{padding: 10px 0 !important;}
}


 /*  GUIA MÉDICO
/*----------------------------------------*/

.guia-enquete{background: #fff;}

.guia-medico{
    padding: 20px 15px 20px 0;
    margin: 20px 0;
    text-align: center;
    background: #fff;
}

.guia-medico .col-lg-6{
    min-height: 61px;
}

.guia-medico h1,
.enquete span{
    margin: 0;
    color: rgba(10,95,85,1);
    text-transform: capitalize;
    font-weight: bold;
    font-size: 27px;
    line-height: 27px;
    text-align: center;
    font-family: 'unimed_slabbold_italic';
    display: block;
    width: 100%;
}

.guia-medico hr{
    margin: 15px auto;
    width: 100%;
    height: 1px;
    background: #C7C7C7;
    border: none;
}

.guia-medico label{
    display: block;
    text-align: left;
    font-weight: bold;
    margin: 7px 0 2px 0;
    color: #00433b;
}

.guia-medico select{
    display: block;
    width: 100%;
    border: 0;
    border-radius: 5px;
    color: #444;
    padding: 5px;
    background: #f1f1f1;
}

.guia-medico a{
    /*display: block;*/
    margin: 25px 0 15px 0;
    clear: both;
    width: 100%;
    color: #696969;
    font-weight: bold;
    text-decoration: underline;
}

.guia-medico input[type="submit"]{
    padding: 5px 15px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
    background: #065c55;
    border: 0;
    color: #b1d34b;
    font-family: 'unimed_slabbold_italic';
}

.guia-medico input[type="text"]{
    display: block;
    padding: 3px 5px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.enquete{
    margin: 40px -15px 0px 0;
    padding: 32px 15px;
    border: 1px solid #b8d12d;
    height: 262px;
}

    .enquete input[type="submit"]{
        border: none;
        display: inline-block;
        text-transform: uppercase;
        font-weight: bold;
        padding: 8px 15px ;
        background: #065c55;
        color: #b1d34b;
        font-family: 'unimed_slabbold_italic';
    }

    @media only screen and (max-width : 992px){
        .enquete{margin: 20px 0px;}
        .guia-medico{padding: 15px;}
    }


.home_rn{
    padding: 40px 15px 30px 15px;
    background: #fff;
}

.home_rn a{
    color: #fff !important;
    text-align: center;
}

.home_rn .fa{
    margin-right: 10px;
    font-size: 35px;
}

.home_rn .fa,
.home_rn span{display: inline-block;vertical-align: middle;}

.home_rn-item{
    padding: 28px 0;
    background: rgba(10,95,85,1);
    border: 2px solid #fff;
    height: 132px;
}

.home_rn a:nth-of-type(2) .home_rn-item{
    padding: 19px 0;
}

.home_rn-item span{
    display: block;
    font-size: 20px;
    font-weight: bold;
}


 /*  DESTAQUE
/*----------------------------------------*/

.home-destaque{
    width: 100%;
    background: url(../images/parto-adequado.jpg) center center fixed;
    background-size: cover;
    border-top: 10px solid rgba(255,255,255,.4);
    border-bottom: 10px solid rgba(255,255,255,.4);
}

@media only screen and (max-width : 991px){
    .home-destaque{display: none;}
}

    .home-destaque img{
        display: inline-block;
        margin: 5px 7px 0 0;
    }

    .home-destaque .container{
        padding: 100px 15px;
        text-align: right;
        font-family: 'unimed_slabbook';
        font-size: 30px;
        color: #fff;
    }
        .home-destaque span{
        background: rgba(0,153,93,.8);
        display: inline-block;
        padding: 3px 5px;
        margin-bottom: 3px;
    }
        .home-destaque .container b{
            display: inline-block;
            padding: 5px;
            font-size: 50px;
            font-family: 'unimed_slabbold_italic';
            background: rgba(237,22,81,.9);
        }


 /*  PLANETA UNIMED
/*----------------------------------------*/

#planetUni {
    min-height: 50px;
    background: url(../images/bgplaneta.png) center center no-repeat;
    background-size: cover;
    text-align: center;
}

#planetUni div {
    border-top: 10px solid rgba(255, 255, 255, 0.2);
    border-bottom: 10px solid rgba(255, 255, 255, 0.2);
    padding: 0px 0;
}


 /*  NOTICIAS
/*----------------------------------------*/

.noticias {
    padding: 20px 0;
    text-align: center;
}

    .noticias h1{
        margin: 0 0 40px 0;
        padding: 0;
        color: rgba(10,95,85,1);
        font-family: 'unimed_slabbold_italic';
        font-weight: bold;
        font-size: 45px;
    }

    .noticias .container a span{
        display: block;
        padding: 15px 0;
        color: rgba(10,95,85,1);
        font-size: 19px;
        line-height: 22px;
        font-family: 'unimed_slabbold_italic';
    }

    .noticias .container a p{
        margin: 0;
        padding: 0;
        color: #696969;
    }

    .noticias .container a b{
        display: inline-block;
        padding: 5px 10px;
        margin-top: 10px;
        color: #fff;
        text-transform: uppercase;
        background: #f47920;
    }

    .noticias h2{margin-top: 60px;}
    .noticias h2 a{color: #00995d;}



.noticia .btn{
    display: block !important;
    width: 100%;
    margin-top: 43px !important;
}

.noticia .col-lg-3:last-of-type .btn{text-align: right !important;}

.mais-noticias{
    padding: 60px 0 30px 0;
    text-align: center;
}

.mais-noticias span{
    display: block;
    margin: 10px 0;
    color: #0a5f55;
}

.mais-noticias .col-xs-12{
    padding: 15px;
    transition: all .3s linear 0s;
}

.mais-noticias .col-xs-12:hover{
        background: #f1f1f1;
    }


@media only screen and (max-width : 991px){
    .noticias {padding: 15px;}
    .noticias img, .noticia-share{display: none;}
    .noticia .btn{margin: 5px 0 !important; text-align: center !important;}
}

.noticia-pagina h2{
    display: block;
    padding: 0;
    margin: 0;
    color: rgba(10,95,85,1) !important;
    font-size: 19px;
    line-height: 22px;
    font-family: 'unimed_slabbold_italic' !important;
}

.noticia-pagina .col-md-6 {
    margin: 15px 0;
    height: 117px;
} 

.noticias-nav{
    text-align: center;
}

.noticias-nav a{
    display: inline-block;
    padding: 5px 10px;
    color: #fff !important;
    background: #f47920;
}

.noticias-item{
    transition: all 0.3s linear 0s;
}

.noticias-item-image{
    height: 124px;
    overflow: hidden;
    transition: all 0.3s linear 0s;
}

.noticias-item:hover .noticias-item-image img{
    transition: all 0.3s linear 0s;
    -webkit-transform:scale(1); 
    -moz-transform:scale(1); 
    -ms-transform:scale(1);
    -o-transform:scale(1); 
     transform:scale(1);
}

.noticias-item:hover .noticias-item-image img{
    -webkit-transform:scale(1.25); 
    -moz-transform:scale(1.25); 
    -ms-transform:scale(1.25);
    -o-transform:scale(1.25); 
     transform:scale(1.25);
    transition: all 0.3s linear 0s;
}


.noticias-item-image img {
    min-height: 125px;
    width: auto;
}

.menu-servicos .btn.btnmarketing {
    display: none;
    background-color: #B1D34B !important;
    color: #0a5f55 !important;
}



 /*  FOOTER
/*----------------------------------------*/

footer{
    padding: 15px 0;
    text-align: center;
    font-weight: bold;
    background: #fff;
}

 /*  MENU INSTITUCIONAL
/*----------------------------------------*/

.menu-servicos{
    float: right;
}

.menu-servicos .btn{
    background: #0a5f55 !important;
    display: block;
    width: 100%;
    margin: 0 0 5px 0 !important;
}




 /*  INTERNA
/*----------------------------------------*/

.interna{
    margin: 30px auto;
    padding: 0 15px 15px 15px;
    min-height: 300px;
    background: #fff;
}

.interna h1 {
    display: block;
    width: 80%;
    padding: 0 0 15px 0;
    margin: 15px auto;
    clear: both;
    font-size: 40px;
    text-align: center;
    font-family: 'unimed_slabbold_italic';
    font-weight: normal;
    line-height: 40px;
    color: rgba(10,95,85,1);
    border-bottom: 1px solid #ccc;
}

.interna h2 {
    color: #00995D;
    font-family: 'unimed_slabbook';
}

.interna h3{
    font-weight: bold;
}

.interna a {
    font-family: 'unimed_sansbold';
    color: #f47920;
}

.interna .btn {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px 0;
    color: #fff !important;
    background: #00995D;
}

.interna input[type="text"], 
.interna textarea, 
.interna select {
    display: block;
    padding: 5px;
    margin: 5px 0;
    width: 100%;
    max-width: 100%;
    border: 1px solid #ccc;
}

.interna label {
    display: block;
    padding: 10px 0 5px 0;
    color: #0a5f55;
    font-family: 'unimed_sansbold';
}


.interna button, 
.interna input[type="button"] {
    display: block;
    margin: 20px 0;
    padding: 5px 15px;
    background: #0a5f55;
    color: #fff;
    border: none;
    font-family: 'unimed_sansbold';
}

.interna td{
    padding: 5px;
    border: 1px solid #ccc;
}


.interna td p{
    margin: 0; padding: 0;
}

 /*  SLIDESHOW
/*----------------------------------------*/
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 30px !important;
}
.swiper-button-prev{
    background-image: url("../images/arrow-left.png") !important;
}
.swiper-button-next{
    background-image: url("../images/arrow-right.png") !important;
}
.swiper-pagination-bullet {
    height: 12px !important;
    width: 12px !important;
}
.swiper-pagination-bullet-active {
    background: #18A261 none repeat scroll 0 0 !important;
}

/***************** ACESSIBILIDADE *****************/
@media screen and (max-width: 750px) {
    .acessibilidade .mobileoff {display: none;}
   }
   
   .acessibilidade .col-lg-2.col-md-2.col-sm-12.col-xs-12 {width: 20%;}
   @media screen and (max-width: 750px) {.acessibilidade .col-lg-2.col-md-2.col-sm-12.col-xs-12 {width: 100%;padding: 10px 0;}} 
   .acessibilidade {
       font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Tahoma, sans-serif;
       font-size: 15px;
       font-weight: 600;
       padding: 8px 0;
       text-align: center;
       background: #B8D12D url('../images/bg-acessibilidade.jpg');
       background-position: center center;
       background-repeat: no-repeat;
   }
   .acessibilidade a {
       color: #0A6055;
   }
   .acessibilidade .tamanho_fonte,.acessibilidade .tamanho_padrao_fonte {cursor: pointer;}
   .acessibilidade .tamanho_fonte {
       background-color: #0A6055;
       color: #fff;
       border-radius: 50px;
       padding: 3px;
       font-size: 12px;
       margin: 0 5px;
   }
   .acessibilidade .tamanho_fonte .fa-plus,.acessibilidade .tamanho_fonte .fa-minus {font-size: 9px;}