html, body{
    margin: 0;
    padding: 0;
    font-family: 'Inter';
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: #32333A;
    background-color: #F9F9F9;
}

a{
    color: inherit;
}

img{
    max-width: 100%;
}

.btn1{
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    padding: 12px 22px;
    background: #EC4D97;
    border-radius: 10px;
    border: 0;
}

.btn2{
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    padding: 12px 22px;
    background: #32333A;
    border-radius: 10px;
    border: 0;
}

.bloco{
    padding: 100px 0;
}

h2{
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
}

/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/


header{
    padding: 40px 0;
}

header .navbar-header{
    position: relative;
    z-index: 6;
}

header .navbar-header img{
    max-width: 215px;
}

header .menu_holder .menu-toggler{
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 6;
    display: none;
}

header .menu_holder{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .menu_holder .menu .menu-nav{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

header .menu_holder .menu .menu-nav a{
    text-decoration: none;
}

#nav-icon1{
    width: 40px;
    height: 24px;
    padding: 0;
    position: relative;
    margin: 0 auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #32333A;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu_holder.scroll #nav-icon1 span {
    background: #fff;
}
#nav-icon1.black span {
    background: #35353a;
}
#nav-icon1.white span {
    background: #fff;
}
#nav-icon1.open span {
    background: #32333A;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 0px;
}
#nav-icon1 span:nth-child(2) {
    top: 10px;
}
#nav-icon1 span:nth-child(3) {
    top: 20px;
}

#nav-icon1.open span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(140deg);
    -moz-transform: rotate(140deg);
    -o-transform: rotate(140deg);
    transform: rotate(140deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon1.open span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-140deg);
    -moz-transform: rotate(-140deg);
    -o-transform: rotate(-140deg);
    transform: rotate(-140deg);
}



@media screen and (max-width: 1399px) {

    header .menu_holder .menu .menu-nav{
        gap: 20px;
    }

}

@media screen and (max-width: 1199px) {

    header .navbar-header img {
        max-width: 160px;
    }

    header .menu_holder .menu .menu-nav{
        gap: 15px;
    }

    header .menu_holder .menu .menu-nav a{
        font-size: 16px;
    }

    header .menu_holder .menu .menu-nav .btn1{
        font-size: 14px;
    }

    header .menu_holder .menu .menu-nav .btn1 img{
        width: 20px;
    }

}

@media screen and (max-width: 991px) {

    header .menu_holder .menu-toggler{
        display:block;
    }

    header .menu_holder .menu {
        width: 100%;
        padding-top: 30px;
        position: absolute;
        top: 100%;
        background-color: #fff;
        z-index: 5;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        
        display: none;
    }

    header .menu_holder .menu .menu-nav {
        justify-content: flex-end;
        align-items: flex-start;
        padding: 20px;
        flex-direction: column;
        box-shadow: 0px 9px 14px rgba(0, 0, 0, 0.2);
    }

}


/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/

.banner .holder_slider .single_banner{
    position: relative;
    background-size: cover;
    background-position: center right;
}

.banner .holder_slider .single_banner img{
    width: 100%;
}

.banner .holder_slider .single_banner .conteudo{
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #FFFFFF;
}

.banner .holder_slider .single_banner .conteudo .nome{
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.banner .holder_slider .single_banner .conteudo .descricao{
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 40px;
}

@media screen and (max-width: 991px) {

    .banner .holder_slider .single_banner .conteudo .nome {
        font-size: 33px;
    }

    .banner .holder_slider .single_banner .conteudo .descricao {
        font-size: 21px;
    }

}

@media screen and (max-width: 767px) {

    .banner .holder_slider .single_banner .conteudo .nome {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .banner .holder_slider .single_banner .conteudo .descricao {
        font-size: 19px;
        margin-bottom: 25px;
    }

}

@media screen and (max-width: 650px) {

    .banner .holder_slider .single_banner img{
        display: none;
    }

    .banner .holder_slider .single_banner{
        height: 275px;
    }

    .banner .holder_slider .single_banner:after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.4);
    }

}


/*==================================================================================================*/
/*TABELAS*/
/*==================================================================================================*/

.bloco-tabelas .btns-holder{
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
}

.bloco-tabelas .btns-holder button.btn2:not(.clicked){
    background-color: #fff;
    color: #92949D;
}

.bloco-tabelas .conteudos .tabela{
    display: none;
    position: relative;
}

.bloco-tabelas .conteudos .tabela.show{
    display: block;
}

.bloco-tabelas .conteudos .tabela table{
    border: none;
}

.bloco-tabelas .conteudos .tabela table tr{
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 40px;
}

.bloco-tabelas .conteudos .tabela table tr td{
    background: #FFFFFF;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #32333A;
}

.bloco-tabelas .conteudos .tabela table tr td:not(:first-child){
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.bloco-tabelas .conteudos .tabela table tr td:first-child{
    background: #32333A;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-align: left;
}

.bloco-tabelas .conteudos .tabela table tr td h3{
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 30px;
}

.bloco-tabelas .conteudos .tabela table tr:first-child td{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 40px;
}

.bloco-tabelas .conteudos .tabela table tr:last-child td{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 40px;
}

.bloco-tabelas .conteudos .tabela .descricao{
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #92949D;
    margin-top: 40px;
}

.arrow{
    position: absolute;
    top: 95%;
    left: 50%;
    width: 120px;
    height: 80px;
    margin: -15px 0 0 -55px;
}

.arrow-part{
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    background: transparent;
    transform: rotate(45deg);
    border-top: 4px solid #EC4D97;
    border-right: 4px solid #EC4D97;
}

.arrow-part:first-of-type {
    animation: arrow-movement 2s ease-in-out infinite;
}

.arrow-part:last-of-type{
    animation: arrow-movement 2s 1s ease-in-out infinite
}


@keyframes arrow-movement{
    0%{
        opacity: 0;
        left: 25px;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@media screen and (min-width: 1200px) {

    .arrow{
        display: none;
    }

}

@media screen and (max-width: 1199px) {

    .bloco-tabelas .conteudos .tabela .holder_tabela{
        overflow: auto;
    }

    .bloco-tabelas .conteudos .tabela .holder_tabela table{
        width: 1200px;
    }

}

@media screen and (max-width: 991px) {

    .bloco-tabelas .conteudos .tabela table tr td{
        font-size: 15px;
    }

    .bloco-tabelas .conteudos .tabela table tr {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
    }

}

@media screen and (max-width: 767px) {

    .bloco-tabelas .btns-holder{
        flex-wrap: wrap;
    }

}


/*==================================================================================================*/
/*REDE Médica*/
/*==================================================================================================*/

.bloco-rede-medica{
    background-color: #fff;
}

.bloco-rede-medica .img img{
    max-width: 750px;
    float: right;
}

.bloco-rede-medica .content_holder{
    padding-left: 60px;
}

.bloco-rede-medica .rede-medica{
    background: #F9F9F9;
    border-radius: 10px;
    display: inline-block;
    padding: 40px 45px;
    margin-top: 35px;
}

.bloco-rede-medica .rede-medica .text{
    font-size: 20px;
    line-height: 40px;
    color: #EC4D97;
}

.bloco-rede-medica .rede-medica .text a{
    text-decoration: none;
}


@media screen and (max-width: 991px) {

    .bloco-rede-medica .img img{
        max-width: 100%;
        float: none;
        margin-bottom: 40px;
    }

    .bloco-rede-medica .content_holder{
        padding-left: 0;
    }

}


/*==================================================================================================*/
/*NOTICIAS*/
/*==================================================================================================*/

.bloco_noticia .noticia{
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.bloco_noticia .noticia .img img{
    height: 240px;
    width: 100%;
    object-fit: cover;
}

.bloco_noticia .noticia .img{
    margin-bottom: 30px;
}

.bloco_noticia .noticia .data{
    padding: 0 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #92949D;
    margin-bottom: 10px;
}

.bloco_noticia .noticia .titulo{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #32333A;
    padding: 0 30px 45px;
}


/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/

footer{
    padding: 70px 0;
    background-color: #32333A;
    color: #fff;
}

footer .img{
    margin-bottom: 35px;
}

footer .img img{
    max-width: 215px;
}

footer small{
    font-weight: 300;
    font-size: 14px;
}

footer h4{
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 0;
}

footer hr{
    margin: 70px 0 60px;
    border: 1px solid #92949D;
}

footer .links_uteis a{
    text-decoration: none;
    display: inline-block;
    margin-right: 20px;
}

footer p{
    margin-bottom: 25px;
}

footer .lower_footer{
    color: #92949D;
}

