html, body{
	background: white;
	font-family: var(--font-family1);
	font-weight: 300;
	letter-spacing: 0;
	padding: 0;
	margin: 0;
	color: var(--black);
	overflow-x: hidden;
	font-size: 16px;
}
html.lock, body.lock {
	overflow: hidden;
}
body.bg-lightgrey {
	background-color: #f6f8f7;
}
body.hp{
	margin-top: 230px;	
}

#loading {
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background:rgba(0,0,0,0.5);
    z-index:99999999999999;
}

.ds-none{
    display: none;  
}

@media(min-width: 991px) {
	body:not(.hp){
	  display: flex;
	  flex-direction: column;
	  min-height: 100vh; 
	}

	body:not(.hp) .content{
		flex: 1 0 auto;
	}

	body:not(.hp) header,
	body:not(.hp) .zona-newsletter,
	body:not(.hp) .contact-bar,
	body:not(.hp) footer {
		flex-shrink: 0;
		flex: none;
	}
}


@media(max-width: 991px) {
	html {
		font-size: 14px;
    }
  
}
@media(max-width: 767px) {
	html {
		font-size: 13px;
	}
}


a, a:hover, a:focus,
button, button:hover, button:focus {
	transition: all ease-in-out .2s;
	-moz-transition: all ease-in-out .2s;
	-webkit-transition: all ease-in-out .2s;
	text-decoration: none;
	cursor: pointer;
	color: currentColor;
	outline: none;
	box-shadow: none;
}
*:focus {
	outline: none;
	box-shadow: none;
}
*::placeholder, *::-webkit-placeholder {
	color: currentColor;
}
*:-ms-input-placeholder {
	color: currentColor;
}


.container, .container-fluid {
	position: relative;
	width: 100%;
}
.container.container-full {
	max-width: 1700px; /* Layouts' fullscreen */
}

@media(min-width: 1200px) {
	.container {
		max-width: 1074px; /* 1024 + 40 padding */
	}
	
	.container.container-sm {
		max-width: 890px; /* 850 + 40 padding */
	}
}

.not-link{
	pointer-events:none
}

/*************************************/
/********** BUTTONS / LINKS **********/
/*************************************/

.button, .button:hover, .button:focus {
	font-family: var(--font-family2);
	display: inline-block;
	padding: 12px 30px;
	font-size: 12px;
	font-weight: normal;
    color: var(--blue);
    letter-spacing: normal;
	text-transform: uppercase;
    position: relative;
    background: transparent;
	margin: 0 6px 6px ;
}

.button-fill, .button-fill:hover, .button-fill:focus{
	color: #fff;
}

.button span{position:relative;z-index: 1}
.button::before {
	content: "";
	position: absolute;
	top: -2px;bottom: -2px;
	left: -2px;right: -2px;
	background: transparent;
	border:2px solid var(--blue);
	border-radius:30px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    will-change: transform;
    pointer-events: none;
}
.button:hover::before, .button:hover::after {
	transform: scale(1.05);
}

.button > span {
	position: relative;
	z-index: 2;
	font-size: inherit !important;
	color: inherit !important;
}

.link, .link:hover {
	display: inline-block;
	position: relative;
	font-family: var(--font-family2);
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--blue);
	padding-right: 30px;
}
.link.link-reverse {
	padding-right: 0;
	padding-left: 30px;
}
.link::after {
	content: "";
	width: 16px;
	height: 9px;
	position: absolute;
	top: 0;bottom: 0;
	right: 0;
	margin: auto;
	background-image: url(/assets/img/arrow-link-color.svg);
	background-size: cover;
	background-position: -18px;
	transition: all .4s ease-in-out;
}
.link.link-reverse::after {
	right: auto;
	left: 0;
	transform: rotate(180deg);
}
.link:hover::after {
	background-position: 16px;
}

@media(max-width:991px) {
	.button, .button:hover {
		padding: 10px 25px;
		font-size: 12px;
		margin-bottom: 15px
	}
}



.button-fill:before{
	content: "";
	position: absolute;
	top: -2px;bottom: -2px;
	left: -2px;right: -2px;
	background-image: linear-gradient(323deg, #00b499, #7edcbe);
	border:0px solid transparent;
	border-radius:30px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    will-change: transform;
    pointer-events: none;
}



/****************************/
/********** HEADER **********/
/****************************/

header {
	position: fixed;
	top: 0;left: 0;
    width: 100vw;
	font-size: 0;
	z-index: 999;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}
header.open {
	z-index: 999;
	transition: none;
}

header a {
    display: inline-block;
}

.hp header,
.hp header .upper,
header.fixed .upper
{	transition: var(--transition);
    -webkit-transition: var(--transition);
	/*background-color: #67d5b7;*/
}

/*.hp header .lower,
header.fixed .lower{
	background: #00b499;
	transition: var(--transition);
    -webkit-transition: var(--transition);
}

body:not(.hp) header .upper{
	background:rgba(10,10,10,.65);
	transition: var(--transition);
    -webkit-transition: var(--transition);
}
body:not(.hp) header.fixed .upper{
	background: none;
	background-color: #67d5b7;
}*/

/********** HEADER UPPER SECTION **********/

header .upper {
    display: flex;
    align-items: center;
    padding: 0 0px 0 15px;
	z-index: 1;
	position: relative;
}

header .upper .social {
    display: flex;
    align-items: center;
}


header .upper .social a {
    padding: 4px 8px;
    font-size: 20px;
	color: #67d5b7;
}
header .upper .social a:hover {
    transform: scale(1.1);
}

.hp header .upper .social a,
header.fixed .upper .social a{
	color: #006e61;
}



/********** HEADER MENU **********/

header .upper .menu,
header .lower .main-menu {
    display: flex;
    flex-wrap: nowrap;
    margin-left: auto;
}

header ul {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: initial;
	align-items: center;
	text-align: center;
    padding: 0;
	margin: 0;
}
header .menu ul {
	display: block;
	position: fixed;
	top: 40px;left: 0;
	height: calc(100vh - 40px);
	width: 100vw;
	padding-top: 70px;
	z-index: 10;
	transform: translateX(100%);
	transition: var(--transition);
}
header.open .menu ul {
	transform: none;
}

header h4 {
    font-size: .875rem;
    font-weight: 600;
    color: var(--darkgrey);
    letter-spacing: .05em;
    margin: 0;
}
header .upper .menu h4 {
    
		color:#fff
}

.hp header .upper .menu h4,
header.fixed .upper .menu h4{
	color:#fff
}

header .upper .menu h4 a {
	font-family: var(--font-family1);
	font-weight:400;
	padding: 14px 20px;
	width: 100%;
	font-size:.875rem;
	opacity: 0.85;
}
header.fixed .upper .menu h4 a:hover,
header.fixed .upper .menu h4 a.selected,
.hp header .upper .menu h4 a:hover,
.hp header .upper .menu h4 a.selected{
    color: #299170;
}

header .upper .menu h4 a:hover,
header .upper .menu h4 a.selected{
	opacity: 1;
	color:#fff
}
header .upper .menu ul li{}
header .upper .menu .search {
    padding: 5px;
    margin-right: 15px;
	cursor: pointer;
	transition: .2s ease-in-out;
	width: 53px;
	height: 46px;
	position: relative;
	overflow: hidden;
}


header .upper .menu .search img {
    width: 13px;
    margin: 0;
    transform: none;
    position: absolute;
	right: 17px;
    z-index: 2;
    top: 14px;
}

header .upper .menu .search.open{
	width: 245px;
	position: relative
}

header .upper .menu .search input, header .upper > .search input {
     font-family: var(--font-family4);
    font-size: .90rem;
    color: white;
    border: 0;
    background-color: #13ba9f;
    padding: 0 70px 0 20px;
    position: absolute;
    right: 0;
    transform: translateX(100%);
    transition: transform .2s ease-in-out;
    will-change: transform;
    height: 46px;
    width: 245px;
	top:0
}

header .upper .menu .search.open input {
    transform: translateX(0%);
}

header .upper .menu .search input:focus, header .upper .menu .search input:active{
	background-color: #13ba9f;
	color: white;
}

header .upper .menu .link_socio,
header .upper .menu .link_extranet
{
	font-family: var(--font-family3);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.88px;
	text-align: center;
	color: #67d5b7;
	padding: 15px 30px;
	text-transform: uppercase;	
}

.hp header .upper .menu .link_socio,
header.fixed .upper .menu .link_socio
{
	background: #006e61;
	
}
.hp header .upper .menu .link_extranet,
header.fixed .upper .menu .link_extranet{
	background: #014039;
}
/*body:not(.hp) header:not(.fixed) .upper .menu .link_socio{
	border-left:1px solid #323232;
	border-right:1px solid #323232
}*/


header .upper .menu .link_socio:hover,
header .upper .menu .link_extranet:hover{
	color:#fff;
}

/*header .upper .menu .link_extranet::after{
	content:"";
	background-image:url(/assets/img/arrow-listagem-color2.svg);
	background-repeat: no-repeat;
	display: inline-block;
	width: 12px;
	height: 9px;
	margin-left: 16px;
	 transition: var(--transition);
    -webkit-transition: var(--transition);
}

header .upper .menu .link_extranet:hover::after{
	background-image:url(/assets/img/arrow-listagem-white.svg);
	margin-left: 20px;
	margin-right:-4px
}*/


header .upper .menu ul li{
	position:relative
}

header .upper .menu ul li.sub a{
	cursor: default;
}
header .upper .menu ul ul.sub-media{
	display:none
}

header .upper .menu ul li.sub ul.sub-media{
	position: absolute;
	background-color: #006e61;
	width: auto;
	padding: 7px 0px;
	opacity: 0;
	z-index: -1;
	transition: all .5s ease-in-out;
	pointer-events: none;
	transform: translateX(-10px);
	top: 46px;
	display: block;
	left:0;
	right:auto;
}


header .upper .menu ul li.sub:hover ul.sub-media{
	opacity: 1;
    pointer-events: all;

}

header .upper .menu ul.sub-media li h5{
	margin: 0
}

header .upper .menu ul.sub-media a {
	font-family: var(--font-family1);
	font-size: .775rem;
	font-weight: 300;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
	text-transform:none;
	white-space: pre;
	padding: 5px 20px;
	width: 100%;
	pointer-events: all;
	cursor: pointer!important
}


header .upper .menu ul.sub-media li.inactive ul.sub2-media li a {
	font-family: var(--font-family1);
	font-size: .775rem;
	font-weight: 300;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
	text-transform:none;
	white-space: pre;
	padding: 5px 30px;
	width: 100%;
	pointer-events: all;
	cursor: pointer!important
}

header .upper .menu ul.sub-media li.inactive ul.sub2-media li :hover{
	width:100%;
	background: #00b499;
}

header .upper .menu ul.sub-media li.inactive a{
	font-family: var(--font-family1);
	font-size: .775rem;
	font-weight: 300;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
	text-transform:none;
	white-space: pre;
	padding: 5px 20px;
	width: 100%;
	pointer-events: all;
	cursor:default;
}

header .upper .menu ul.sub-media li.inactive a:hover{
	background: #006e61;
}


header .upper .menu ul.sub-media a:hover{
	background: #00b499;
}




/********** HEADER LOWER SECTION **********/

header .lower {
    padding: 0 20px;
    text-align: center;
	position: relative;
	z-index: 1
}

header .lower a.logo {
    padding: 10px;
}
header .lower a.logo img {
    width: 129px;
}

header .lower .main-menu {
	position: fixed;
	bottom: 20px;
	right: 0;
	padding: 10px;
	z-index: 999;
}

header .lower .main-menu ul li + li {
    margin-left: 10px;
}

header .lower .main-menu ul li{

}


header .lower .main-menu ul li a {
	position: relative;
	padding: 10px;
	font-size: 14px;
	text-transform: uppercase;
}
header .lower .main-menu ul li a.selected {
    pointer-events: none;
}

header .lower .main-menu ul li h3 {
	margin: 0;
	padding: 0;
}



header .lower .main-menu ul li a::before {
    content: "";
    position: absolute;
    top: 0;bottom: 0;
    left: 0;right: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: inherit;
	will-change: transform;
	opacity: .75;
}

header .lower .main-menu ul ul li a::before{
	display:none
}

header .lower .menu-toggle {
    position: absolute;
    padding: 5px;
    width: 33px;
    height: 26px;
    font-size: 0;
    transition: var(--transition);
    z-index: 999;
	right: 20px;
    top: 24px;
}
header .lower .menu-toggle span {
    position: absolute;
    top: 0;bottom: 0;
    right: 5px;
    margin: auto;
    width: 23px;
    height: 2px;
    border-radius: 2px;
    background-color: white;
	transition: var(--transition);
    -webkit-transition: var(--transition);
    z-index: 3;
}
header .lower .menu-toggle span:first-child {
    transform: translateY(-7px);
}
header .lower .menu-toggle span:last-child {
    transform: translateY(7px);
}

header.open .lower .menu-toggle span:first-child {
    transform: rotate(45deg);
}
header.open .lower .menu-toggle span:nth-child(2) {
    opacity: 0;
}
header.open .lower .menu-toggle span:last-child {
    transform: rotate(-45deg);
}


header.newupdate a.logo img {
        width: 149px;
}

@media(min-width: 1024px) {
    header .upper {
        padding: 0 20px;
		padding-right:0
    }

    header .upper .social a {
        padding: 7px 10px;
    }

    header .upper .menu .search {
        padding: 13px 20px;
        margin: 0;
	}
	
	header .menu ul {
		top: 54px;
	}

	header .lower .menu-toggle {
		padding: 20px;
		height: 55px;
		width: 63px;
	}
	header .lower .menu-toggle span {
		right: 20px;
	}

    header .lower {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        padding: 0 30px 0 40px;
        text-align: initial;
		
    }
	header.newupdate .lower {
        padding: 0 17px 0 40px;
    }
    header .lower a.logo {
        padding: 20px;
    }
    header .lower a.logo img {
        width: 185px;
    }
}



@media(min-width: 1150px) {
	header ul {
		text-align: initial;
	}

	header .menu ul {
		display: flex;
		position: static;
		height: auto;
		width: auto;
		padding: 0;
		transform: none;
	}

	header .upper .menu h4 a {
		padding: 15px 9px;
	}

	header .upper .menu .search::before {
        position: relative;
        top: 1px;
	}
	

	header .lower .main-menu {
		position: relative;
		border-radius: 0;
		padding: 0;
		align-self: flex-end
	}
	
	
	
	header .lower .main-menu ul{
		display:flex;
		position: relative;
		align-items: flex-start
	}
	
	header .lower .main-menu ul ul{
		position: absolute;
		background-color: #2c2c2c;
		width: auto;
		padding: 20px 0px;
		opacity: 0;
		z-index: -1;
		transition: all .5s ease-in-out;
		pointer-events: none;
		transform: translateX(-10px);
		top: 43px;
		display: block;
		left:0;
		right:auto;
	}
	
	
	header .lower .main-menu ul ul ul.sub2{
		position: relative;
		padding: 0;
		transform: translateX(0);
		top: 0;
		margin: 0;
		padding-left: 20px;
		z-index: 20
	}
	
	header .lower .main-menu ul li h4, 
	header .lower .main-menu ul li .sub2 a {
		font-family: var(--font-family1);
		font-size: .775rem;
		font-weight: 300;
		line-height: normal;
		letter-spacing: normal;
		text-align: left;
		color: #ffffff;
		text-transform:none;
		white-space: pre;
	}
	
	header .lower .main-menu ul li{
		position: relative;
		padding-bottom: 10px;
	}
	header .lower .main-menu ul li + li,
	header .lower .main-menu ul li + span + li {
		margin-left: 20px;
	}
	header .lower .main-menu ul li + li:last-of-type {
		margin-right: 10px;
	}
	header .lower .main-menu ul li:first-of-type{
		margin-left: 0
	}
	header .lower .main-menu ul li a {
		padding: 10px 0px 10px;
		width: auto;
		height: auto;
		line-height: 1.75;
	}
	
	header .lower .main-menu ul li h2, 
	header .lower .main-menu ul li a {
		font-family: var(--font-family3);
		font-size: .75rem;
		font-weight: 500;
		line-height: normal;
		letter-spacing: 0.96px;
		text-align: center;
		color: #ffffff;
		text-transform: uppercase;
		margin: 0
	}
	
	header .lower .main-menu ul li:hover ul{
		opacity: 1;
    	pointer-events: all;
	}
	
	header .lower .main-menu ul li:last-of-type ul,
	header .lower .main-menu ul li:nth-last-of-type(2) ul{
		left:auto;
		right: 0
	}
	
}

@media (min-height: 600px) and (max-height: 850px) {
	header .lower .main-menu ul li ul.existe-sub{
		max-height: 500px;
		overflow-y: auto;
	}

	header .lower .main-menu ul li ul.existe-sub::-webkit-scrollbar-track
	{
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
		background-color: #c4c4c4;
	}

	header .lower .main-menu ul li ul.existe-sub::-webkit-scrollbar
	{
		width: 6px;
		background-color: #c4c4c4;
	}

	header .lower .main-menu ul li ul.existe-sub::-webkit-scrollbar-thumb
	{
		background-color: #4d4d4d;
	}
}

@media(min-width: 1220px) {
	/*header .lower .main-menu ul li + li {
		margin-left: 35px;
	}*/
	
	header .lower .main-menu ul li {
		margin-left: 35px;
	}
	header .lower .main-menu ul li h2{
		display:flex;
		align-items: baseline
	}
	
}


header .lower .main-menu ul li h2.sub::after{
	content:"\f0d7";
	font-family:"Font Awesome 5 Free";
	font-weight:600;
	font-size: 8px;
    color: #fff;
    margin-left: 8px;
    width: 5px;
    height: 3px;
    display: inline-block;
    vertical-align: text-top;
    margin-top: 3px;
}

header .lower .main-menu ul li ul a,
header .lower .main-menu ul li ul h3 {
	font-family: var(--font-family1);
	font-size: .875rem;
	font-weight: 300;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
	text-transform:none;
	white-space: pre;
	
}

header .lower .main-menu ul ul li {
	margin: 0;
	padding: 0px;
	display: block;
}

header .lower .main-menu ul ul li a {
	padding: 6px 20px;
	display: block;
	width: 100%;
	opacity: .6
}

header .lower .main-menu ul ul li a:hover,
header .lower .main-menu ul ul ul.sub2 li a:hover {
	opacity: 1
}

header .lower .main-menu ul li:last-of-type ul{
	left:auto;
	right: 0px
}

header .lower ul span.line.visible {
    opacity: 1;
    transition: opacity .2s ease-in-out, transform .6s ease-in-out;
}

header .lower ul span.line {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 22px;
    height: 1px;
    background-color: #fff;
    pointer-events: none;
    opacity: 0;
}

header.open .lower .main-menu{
	background:#00b499;
	height: 100%;
	transform: translateX(0%);
	position: fixed;
	width: 100vw;
}
header.open ul{
	display: block;
	text-align: left
}

header.open ul.sidebar-menu li{
	border-bottom: 1px solid #67d5b7;
}

header.open .main-menu{
	margin-bottom: 30px;
}

.sidebar_socio_area,
.social_mobile,
.pesquisa_mobile{
	display: none;
	/*background: #67d5b7;*/
}
.sidebar-menu{
	background:#67d5b7;
	width: 100%;
	padding:20px
}
header .lower .menu-toggle,
.sidebar-menu{
	display:none!important;
}

header.newupdate .upper .social{
	margin-right: 10px
}
header.newupdate .upper .social a {
    font-size: 17px;
}

header.newupdate{
	display: flex
}
.hp header.newupdate,header.newupdate.fixed{
	background:#00b499
}
.hp header.newupdate .upper,
header.newupdate.fixed .upper{
	background:none;
	display: flex;
	justify-content: flex-end
}
header.newupdate .upper .menu .link_extranet::after,
header.newupdate .lower .main-menu ul li h2.sub::after{
    content: "";
    display: none
}

header.newupdate .upper .menu h4 a {
    font-family: var(--font-family1);
    font-weight: 400;
    padding: 14px 6px;
	letter-spacing: normal;
    width: 100%;
    font-size: .75rem;
    opacity: 0.65;
}

header.newupdate .lower{
	padding-top: 9px
}

header.newupdate .lower .main-menu{
	bottom: inherit
}

header.newupdate .upper .menu .link_socio, header.newupdate .upper .menu .link_extranet{
	padding: 13px 11px;
}
header.newupdate .upper .menu .link_extranet{
	padding-right:25px
}

header.newupdate .upper .menu .search {

	height: 42px;

}

@media (min-width: 1150px){
	header.newupdate a.logo img{
		width:190px
	}
	header.newupdate .logo{
		flex:1;
		padding: 5px 20px 19px
	}
	header.newupdate .lower .main-menu ul li h2, header.newupdate .lower .main-menu ul li a {
		font-family: var(--font-family1);
		font-size: 1rem;
		font-weight: normal;
		line-height: normal;
		letter-spacing: normal;
		text-align: center;
		text-transform: none;
		margin: 0;
	}
	header.newupdate .lower .main-menu ul li h4, header.newupdate .lower .main-menu ul li .sub2 a {
		font-family: var(--font-family1);
		font-size: .775rem;
		font-weight: 300;
		line-height: normal;
		letter-spacing: normal;
		text-align: left;
		color: #ffffff;
		text-transform: none;
		white-space: pre;
	}
	/* header.newupdate .menus{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-content: start;
	} */
	
}
	header.newupdate .lower .main-menu ul li ul a, header.newupdate .lower .main-menu ul li ul h3 {
		font-family: var(--font-family1);
		font-size: .875rem;
		font-weight: 300;
		line-height: normal;
		letter-spacing: normal;
		text-align: left;
		color: #ffffff;
		text-transform: none;
		white-space: pre;
	}


@media(max-width:1149px){
	
	header .lower .menu-toggle,
	.sidebar-menu{
		display:block!important;
	}
	
	header .lower ul span.line{display:none}
	header .lower .main-menu{
		overflow: auto;
		transform: translateX(100%);
		transition: var(--transition);
		-webkit-transition: var(--transition);
		/* top:0; */
		bottom:auto;
		width: 100vw;
		height: 100vh;
		padding-bottom:30px;
		flex-wrap: wrap;
		padding: 0
	}
	header .upper,
	header .main-menu
	{
		display:none;
	}
	
	header.newupdate .menus{
		flex:1
	}
	
	header.newupdate .upper{
		display:none!important;
	}
	
	header.newupdate a.logo{
		padding: 1px 20px 10px
	}
	
	body.hp {
		/* margin-top: 76px; */
		margin-top: 0px;
	}
	
	header .lower{
		text-align:left
	}
	
	header .lower .main-menu ul.d-block{
		background-color: #67d5b7;
		width: 100%;
		padding: 20px;
	}
	
	header.open ul.menu_baixo{
		padding: 0px;
		margin-top: 30px;
		width: 100%;
	}
	
	header.open ul.menu_baixo li.search{
		width:100%;
	}
	
	header.open ul.menu_baixo .search input {
		padding: 10px 45px 10px 15px;
		background-color: white;
		color: black;
		font-size: 14px;
		border: none;
		width:85%;
		margin: 25px 20px 10px;
	}
	
	header.open ul.menu_baixo .search button {
    	background-color: transparent;
    	border: none;
    	position: absolute;
    	right: 45px;
    	top: 96px;
	}
	
	header.open ul.menu_baixo .search button img {
    	height: 20px;
    	width: 20px;
	}
	
	
	header.open ul.menu_baixo h2{
		
		padding: 0px;
		margin-bottom: 0;
		position: relative
	}
	
	header.open ul.menu_baixo h2 span{
		padding: 0px 20px;
	}
	header .lower .main-menu ul li .sub div{
		cursor: pointer;
		pointer-events: all;
		position: absolute;
		top: 0px;
		right: 0px;
		width: 50px;
		height: 100%;
		display: block;z-index: 5
		}
	header .lower .main-menu ul li .sub div::before{
		content:"\f0da";
		font-family:"Font Awesome 5 Free";
		font-weight:600;
		font-size: 12px;
		color: #fff;
		width: 10px;
		height: 3px;
		display: inline-block;
		position: relative;
		top:10px;
		left:25px
	}
	
	header .lower .main-menu ul li.opened .sub div::before{
		content:"\f0d7";
	}
	
	
	
	
	header.open ul.menu_baixo h3 {
    	padding: 5px;
	}
	
	header.open ul.menu_baixo li ul.green-socio li h3 {
		padding: 5px;
	}
	
	header.open ul.menu_baixo > li:not(:last-child) > h2:after{
		content: '';
		display: block;
		margin: auto;
		position: relative;
		width: 100%;
		height: 1px;
		background: #67d5b7;
		left: 0;
	}
	
	
	
	header.open ul.menu_baixo li.subs.open::before {
    	-webkit-transform: rotate(-180deg);
    	-ms-transform: rotate(-180deg);
    	transform: rotate(-180deg);
	}
	
	header.open ul.menu_baixo li.subs::before {
		content: '\f078';
		font-family: "Font Awesome 5 Free";
		color: #fff;
		font-size: 20px;
		font-weight: 600;
		display: inline-block;
		position: absolute;
		right: 30px;
		margin-left: 10px;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		transition: transform 0.4s;
		transform-origin: center;
				display: none;
	}
	
	
	header.open ul.menu_baixo li ul li{
		transition: all 3s ease-in-out;
		-webkit-transition: all 3s ease-in-out;
		-moz-transition: all 3s ease-in-out;
	}
	
	
	header.open ul.menu_baixo > li:not(:last-child) > h2.sub:after {
		content: '';
		display: block;
		margin: auto;
		position: relative;
		width: 100%;
		height: 1px;
		background: #67d5b7;
		left: 0;
	}
	
	header.open .lower .main-menu ul li ul.green-socio{
		background: #006e61;
		padding-left: 20px;
		padding-bottom: 5px;
	}
	
	header.open .lower .main-menu ul.menu_baixo li ul{
		background: #014039;
		display: none;
		padding-left:20px
	}
	
	.existe-sub{
		padding-top:15px;
		padding-bottom:15px
	}
	
	header.open .lower .main-menu ul li.opened ul{
		display: block
	}
	header.open .lower .main-menu ul.sidebar-menu li.sub ul.sub-media{
		background: none;
		padding-left: 10px;
		display: block;
	}
	
	header.open .lower .main-menu ul li ul.sub-media.green{
		background: #006e61;
	}
	
	header.open .lower .main-menu ul li ul.sub-media li{
		border-bottom: none;
	}
	
	header .lower .main-menu ul.sidebar-menu li a{
		text-transform:none;
		font-weight: normal
	}
	header.open .lower .main-menu ul.sidebar-menu li ul a{
		text-transform:none;
		font-weight: normal;
		font-size: 14px
	}
	
	header .lower .main-menu .sidebar-menu li:not(.sub) ul{
		display: none
	}
	
	header .lower .main-menu ul li a{
		color:#fff;
		padding: 10px 0
	}
	
	header .lower .main-menu ul.menu_baixo li a {
    	padding: 10px 0;
	}
	
	
	header .lower .main-menu ul.menu_baixo li h2 a {
    	padding: 20px 0;
		padding-left: 20px;
	}
	
	header .lower .main-menu ul li + li{
		margin-left:0
	}
	header.open ul.sub2{
		margin-left:10px
	}
	
	header.open .lower .main-menu ul li ul a,
	header.open .lower .main-menu ul li ul h3 {
		font-size: .975rem;
		opacity: 1
	}
	header.open .lower .main-menu ul li ul.sub2 a,
	header.open .lower .main-menu ul li ul h4 {
		font-size: .900rem;
	}
	
	header.open .lower .main-menu h5{
		margin-bottom: 0
	}
	
	header.open .lower{
		padding:0;
		width: 100%
	}
	header.open .lower a.logo {
		width: 100%;
		background:#00b499;
		display: block;
		    position: absolute;
    z-index: 999;
		top:0;
		padding-left:20px;
		padding-bottom:25px
	}
	
	
	.pesquisa_mobile{
		width: 100%;
		background:#67d5b7;
		padding: 10px 20px 10px;
		display: block;
		position: relative;
		margin-top: 90px
		
	}
	
	.newupdate .pesquisa_mobile{
		width: calc(100% - 70px);
		background:#67d5b7;
		padding: 15px 20px 15px;
		margin-top: 0px
		
	}
	
	.pesquisa_mobile input {
		padding: 10px 5px 10px 0px;
		background-color: transparent;
		
		color: #fff;
		font-size: 14px;
		border: none;
		width:90%;
	}
	
	.pesquisa_mobile img {
    	background-color: transparent;
    	border: none;
    	position: absolute;
    	right: 30px;
    	top: 25px;
	}
	
	.pesquisa_mobile img {
    	height: 15px;
    	width: 15px;
	}
	
	.newupdate .pesquisa_mobile img {
    	height: 19px;
    	width: 19px;
		top: 30px;
	}
	
	.newupdate .pesquisa_mobile img {
    	height: 19px;
    	width: 19px;
	}
	
	header.newupdate.open .lower .main-menu{
		background: #014039	
	}
	
	header.newupdate.open ul.menu_baixo {
		margin: 0;
		padding: 20px;
		background: #ffffff
	}
	
	header.newupdate .lower .main-menu ul li a {
    	color: #323232;
		padding: 10px 0;
	}
	
	header.newupdate.open ul.menu_baixo > li:not(:last-child) > h2:after{
		background: none;
	}
	header.newupdate .lower .main-menu ul li .sub div::before{
		color:#d1cfcf;
		position: absolute;
		top: calc(50% - 10px);
		left: auto;
		right: 0;
	}
	header.newupdate.open .lower .main-menu ul.menu_baixo li ul{
		background: none;
		padding-left: 0
	}
	header.newupdate .lower .main-menu ul.menu_baixo li h2 a {
		padding: 20px 0;
		padding-left: 0px;
	}
	header.newupdate.open .lower .main-menu ul.menu_baixo li ul a{
		color: #323232;
	}
	
	header.newupdate.open .lower .main-menu ul.menu_baixo li ul.sub2{
		padding-left:15px
	}
	
	header.newupdate.open .lower .main-menu ul.menu_baixo li ul.sub2 a{
		padding: 5px 0
	}
	
	header.newupdate.open ul.menu_baixo > li:after {
		content: '';
		display: block;
		margin: auto;
		position: relative;
		width: 100%;
		height: 1px;
		background: #e7e4e4;
		left: 0;
	}
	
	header.newupdate .existe-sub {
		padding-top: 0px;
	}
	
	header.newupdate .lower .main-menu ul.menu_baixo li ul a {
		font-size:14px;
		opacity: .75
	}
	
	header.newupdate .lower .main-menu ul.menu_baixo li ul ul a {
		font-size:12px
	}
	
	header.newupdate .sidebar-menu{
		background: #ffffff;
	}
	
	header.newupdate.open ul.sidebar-menu li{
		border:none
	}
	
	header.newupdate .lower .main-menu .sidebar-menu a {
		color: #323232;
		font-size:14px;
		 opacity: 0.75;
		padding: 5px 0
	}
	
	header.newupdate .social_mobile {
		background: #ffffff;
	}
	
	.sidebar_socio_area{
		width:100%;
		display: flex;
		top:0px;
	}
	
	
	.sidebar_socio_area .link_socio,
	.sidebar_socio_area .link_extranet
	{
		font-family: var(--font-family3);
		font-size: 9px;
		font-weight: 500;
		letter-spacing: 0.88px;
		text-align: center;
		color: #67d5b7;
		padding: 23px 20px;
		text-transform: uppercase;
		width: auto;

	}
	.sidebar_socio_area .link_socio
	{
		background: #006e61;
		border-left: 1px solid transparent;
		border-right:1px solid transparent
	}
	.sidebar_socio_area .link_extranet{
		background: #014039;
		border-left: 1px solid transparent;
		border-right:1px solid transparent;
		flex: 1
	}

	.sidebar_socio_area .link_socio:hover,
	.sidebar_socio_area .link_extranet:hover{
		color:#fff;
	}
	
	
	
	.social_mobile{
		position:relative;
		display: block;
		background: #67d5b7;
		text-align: center;
		padding: 10px 0 20px;
		width: 100%
	}


	.social_mobile a {
		padding: 4px 11px;
		font-size: 22px;
		color: #006e61;
	}

	
}

@media(max-width:1024px){
	.header_btn_mobile{
		position: relative;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 10;
		background-color: #25818a;
		padding-top: 16px;
		padding-bottom: 16px;
		transition: var(--transition);
    	-webkit-transition: var(--transition);
	}

	.header_btn_mobile.fixed{
		position: fixed;
	}

	.header_btn_mobile .container div{
		font-family: var(--font-family2);
		font-size: 13px;
		font-weight: 500;
		/* line-height: 1.94; */
		letter-spacing: 0.72px;
		text-align: center;
		color: #ffffff;
		align-items: center;
		justify-content: center;
		text-transform: uppercase;
	}

	.header_btn_mobile .container div .right {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	.header_btn_mobile .container div .arrow {
		border: solid white;
		border-width: 0 1px 1px 0;
		display: inline-block;
		padding: 3px;
		margin-left: 15px;
	}

}

@media(max-width:767px){
	.header_btn_mobile .container div{
		font-size: 11px;
	}
}


@media(min-width:1025px){
	.header_btn_mobile{
		display: none;
	}
}

@media(max-width:768px){

	header.newupdate{
		background: #00b499;
	}

	header.open ul.menu_baixo h2 span{
		padding: 0px;
	}
	header.newupdate .sidebar_socio_area .link_socio,
	header.newupdate .sidebar_socio_area .link_extranet
	{
		font-family: var(--font-family3);
		font-size: 12px;
		font-weight: 500;
		letter-spacing: 0.88px;
		text-align: center;
		color: #67d5b7;
		padding: 16px 20px;
		text-transform: uppercase;
		width: auto;

	}
}


@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
		body.hp {
			/* margin-top: 85px; */
			margin-top: 0px;
		}
		header .lower a.logo img {
			width: 130px;
		}
		header .lower a.logo {
			padding: 5px;
		}
		header .lower .menu-toggle{
			top: 18px;
		}
		
		header.open ul.menu_baixo .search input {
			width: 35%;
		}
		
}


@media only screen 
	and (min-width: 768px) 
	and (max-width: 1024px) 
	and (orientation: landscape) {
		body.hp {
			margin-top: 135px;
		}
		
		header .lower a.logo img{
			width:150px
		}
		
}



header .upper ul.sub2-media{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	top:0;
	margin: 0;
	padding-left: 0
}

header .upper ul.sub2-media li{
	width:100%;
}

@media(max-width:768px){
	header .lower .main-menu ul li ul a,
	header .lower .main-menu ul li ul h3 {
		white-space: normal;

	}
	header .lower .main-menu ul li h2.sub::after{
		display:none
	}
}


/*********************************************/
/********** HOMEPAGE BANNER SECTION **********/
/*********************************************/
.banners{
	background: #343434;
}
.banners_next-events .container{
	position: relative;
	background-color: var(--bg-grey);
}

.banners_next-events.nao_existe_eventos{
	background:none;
	transform: translateY(-7%);
	margin-bottom: -3%
}

@media(min-width: 992px) {
	.banners_next-events .container {
		/*max-width: 1044px;  1024 + 40 padding 
	
		max-width: 900px;*/
	}
	
}
.banners_next-events .banners,
.banners_next-events .slider_banner,
.banners_next-events .slider_banner .slide,
.banners_next-events .next-events {
	position:relative;
}

.banners_next-events .banners{
	padding: 0;
}

.banners_next-events .slider_banner, .banners_next-events .slider_banner .slick-list, .banners_next-events .slider_banner .slick-track, .banners_next-events .slider_banner .slide {
	height:100%;
	
}


/********** Image **********/

.banners_next-events .slider_banner .image {
	position:relative;
	height:100%;
	overflow:hidden;
}



.banners_next-events .slider_banner .image img {
	position:relative;
	min-width:100%;
	min-height:100%;
	top:50%;
	left:50%;
	/* IE */
	transform:translate(-50%, -50%);
	width:auto;
	max-width:none;
}

@supports (mix-blend-mode: multiply) {
	.banners_next-events .slider_banner .image::before{
		mix-blend-mode:multiply;
		opacity:1;
	}
	
	.banners_next-events .slider_banner .image img {
		width:100%;
		height:100%;
		object-fit:cover;
		position:static;
		transform:none;
	}
}

/********** Description **********/

.banners_next-events .slider_banner .caption {
    position:relative;
    bottom: 0;
    left: 0;right: 0;
	margin:auto;
	top: auto;
	width: 100%;
	z-index:2;
}


/*.banners_next-events .slider_banner .caption:before {
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;right: 0;
	margin: auto;
	top: auto;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-blend-mode: multiply;
    background-image: -webkit-linear-gradient(#000, #000);
    background-image: -o-linear-gradient(#000, #000);
    background-image: linear-gradient(#000, #000);
    opacity: .75;

}*/

.banners_next-events .slider_banner .caption p {
    font-family: var(--font-family1);
	font-size: 1.2rem;
	font-weight: 500;
	color: white;
	line-height: 1.58;
	z-index: 4;
	position: relative;
	padding: 20px 76px 18px;
	margin: 0;
	display: flex;
	align-items: center;
	height: 100%
}



.banners_next-events .slider_banner .caption p a{
	position: relative;
	width: 25px;
	height: 25px;
	margin-left:10px
}

.banners_next-events .slider_banner .caption p a:before{
	content:"";
	width: 25px;
	height: 25px;
	border-radius: 50%;
	position: absolute;
	top:0;
	bottom: 0;
	right: 0;
	left: 0;
	background-image: linear-gradient(323deg, #00b499, #7edcbe);
	transition: var(--transition);
}

.banners_next-events .slider_banner .caption p a:hover:before{
	transform: scale(1.05);
}

.banners_next-events .slider_banner .caption p a span:before{
	content:"";
	width: 15px;
	height: 1px;
	background: #f5f5f5;
	position: absolute;
	top:12px;
	left:5px;
}

.banners_next-events .slider_banner .caption p a span:after{
	content:"";
	height: 15px;
	width: 1px;
	background: #f5f5f5;
	position: absolute;
	top:5px;
	left: 12px;
}

.banners_next-events .next-events h3{
	font-family: var(--font-family3);
	font-size: 16px;
	font-weight: 500;
	font-style: normal;
	font-stretch: normal;
	text-transform: uppercase;
	color: #282929;
	text-align: center;
	margin-bottom: 23px;
	margin-top:27px;
}

.banners_next-events .next-events {
	padding: 0 60px 60px;
}

.banners_next-events .next-events .slick-slider{
	text-align:center;
	overflow: inherit
}

.banners_next-events .slider_revista{
	position:relative;
	width:225px
}

.banners_next-events .slick-dots{
	bottom:-40px;
}
.banners_next-events .slick-dots li.slick-active button:before {
    opacity: 0
}
.banners_next-events .slick-dots li.slick-active {
	opacity: 1;
}
.banners_next-events .slick-dots li {
	background-color: #00b499;
	border-radius: 50%;
	width: 7px;
	opacity: .3;
	height: 7px;
	margin-right: 15px
}

.banners_next-events .slick-dots li:last-of-type{
	margin-right:0
}


/********** Slider Arrows **********/

.banners_next-events .slider-arrows a {
	position: absolute;
    height: auto;
    width: 50px;
    top: auto;bottom: 0;
    margin: auto;
	transition: var(--transition);
    -webkit-transition: var(--transition);
	font-size: 0;
	z-index: 9
}

.banners_next-events .slider-arrows a::before {
	content: "";
	display: block;
	position: relative;
    bottom: 32px;
	height: 18px;
	width: 100%;
	background-image: url(/assets/img/arrow-sm-color.svg);
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .8;
}
.banners_next-events .slider-arrows a:hover::before{
	opacity:1
}

.banners_next-events .slider-arrows a.prev {
    left: 0;
    border-top-right-radius: 180px;
    border-bottom-right-radius: 180px;
    padding: 0;
}
.banners_next-events .slider-arrows a.prev::before {
    transform: rotate(180deg);
	
}

.banners_next-events .slider-arrows a.prev:hover {
     left: -5px;
}

.banners_next-events .slider-arrows a.next {
    right: 0;
    border-top-left-radius: 180px;
    border-bottom-left-radius: 180px;
    padding: 0;
}

.banners_next-events .slider-arrows a.next:hover {
     right: -5px;
}


@media(max-width: 1199px) {	
	.banners_next-events .slider_banner .caption p {
		font-size: 1.1rem
	}
	/********** Slider Arrows **********/

	.banners_next-events .slider-arrows a {
		height: 160px;
		width: 80px;
	}

	.banners_next-events .slider-arrows a.prev {
		border-top-right-radius: 160px;
		border-bottom-right-radius: 160px;
	}	
	.banners_next-events .slider-arrows a.next {
		border-top-left-radius: 160px;
		border-bottom-left-radius: 160px;
	}
}
@media(max-width: 1199px) and (min-width: 992px) {
	.banners_next-events .container {
		padding: 0;
	}
}
@media(max-width: 1024px) and (min-width: 768px) {
	.banners_next-events .next-events {
		padding: 0 40px 60px;
	}
	.banners_next-events .slider_revista {
		width: 100%;
	}
}


@media(max-width: 1024px) {
	header {
		position: relative;
	}

	header.newupdate.fixed{
		position: fixed;
	}

	header.newupdate.fixed.top{
		top: 49px;
	}
	
}

@media(max-width: 767px) {

	.banners_next-events .slider-arrows a.prev{border: none!important;}
	.banners_next-events .slider-arrows a {
		border: none!important;
		height:50px;
		width: 26px;
		top:35px;
		padding: 0!important
	}
	
	.banners_next-events .slider-arrows a.prev{left: 35%!important;}
	.banners_next-events .slider-arrows a.next{right: 35%!important;}
	
	.banners_next-events .slider-arrows a::before{
		bottom: 0;
		height: 18px;
		width: 100%;
	}
	.banners_next-events.nao_existe_eventos{
		background:none;
		transform: translateY(0);
		margin-bottom: -3%
	}
	.banners_next-events.nao_existe_eventos .container {
		background: none;
	}
	
	.banners_next-events .slider_banner .image{
		height:auto;
	}
	.banners_next-events .slider_banner .caption{
		top:-40px;
		position: relative;
	}
	
	.banners_next-events:not(.nao_existe_eventos){
		padding-bottom:50px
	}
	.banners_next-events .next-events{
		padding-bottom:50px
	}
	.banners_next-events .slider_banner .caption p{
		font-size:1.2rem;
		padding: 50px 15px 25px;
	}
	.banners_next-events .slider_banner .caption p a,
	.banners_next-events .slider_banner .caption p a:before{
		width: 20px;
		height: 20px;
	}
	.banners_next-events .slider_banner .caption p a span:before{
		width:12px;
		top:10px
	}
	.banners_next-events .slider_banner .caption p a span:after{
		height:12px;
		left: 10px;
		top: 4px;
	}
	
	.banners_next-events .slider_revista{
		position:relative;
		width:100%
	}
}


@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) {
	.banners_next-events .slider_revista {
		position: relative;
		width: auto;
	}
	.banners_next-events .next-events {
		padding: 0 20px 20px;
	}
	 .banners_next-events .slider_banner .caption p {
    padding: 20px 46px 25px;
	}
}






/******************************************/
/********** DESTAQUES NOTICIAS **********/
/******************************************/
.noticias{
	margin-top:50px;
	margin-bottom:80px
}

.noticias img{
	width: 100%;
}
.noticias h3{
	font-family: var(--font-family3);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: #13ba9f;
	text-transform: uppercase;
	margin-top:16px;
	margin-bottom:20px
}

.noticias p {
	font-family: var(--font-family1);
	font-size: 0.938rem;
	font-weight: normal;
	line-height: 1.47;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	margin-bottom:27px
}

.noticias .video{
	position:relative;
}
.noticias .video::before{
	content:"";
	width: 100%;
	height:100%;
	background:rgba(0,0,0,.3);
	position: absolute
}
.noticias .video::after{
	content:"";
	width: 43px;
	height: 43px;
	background:url(/assets/img/play_circle.svg);
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	transition: var(--transition);
    -webkit-transition: var(--transition);
}

.noticias a:hover .video::after{
	content:"";
	transform: translate(-50%, -50%) scale(1.05)
}



@media(max-width:768px){
	.noticias .col-12{
		margin-bottom:37px
	}
	
	.noticias{
		/*margin-top:20px;
		margin-bottom:40px;*/
		margin-top:0px;
		margin-bottom:0px;
	}
	
	.banners_next-events .slider_banner, .banners_next-events .slider_banner .slick-list, .banners_next-events .slider_banner .slick-track, .banners_next-events .slider_banner .slide {
	height:auto !important;
	
	}
	
}

/**************************************/
/********** DESTAQUE DOENÇAS **********/
/**************************************/

.destaque-doencas .row{
	align-items:center;
	text-align: center;
	background-color: var(--bg-grey);
}

.destaque-doencas .row .slider-patologias{
	align-items:center;
	text-align: center;
	background-color: var(--bg-grey);
}


.destaque-doencas h4{
	font-family: var(--font-family3);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	color: var(--blue);
	text-transform: uppercase;
	margin-bottom:29px;
	margin-top: 110px;
}

.destaque-doencas h2{
	font-family: var(--font-family4);
	font-size: 1.875rem;
	font-weight: 300;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	color: var(--darkblack);
	text-transform: uppercase;
	margin-bottom:37px
}

.destaque-doencas p {
	font-family: var(--font-family1);
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.56;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
	margin-bottom: 40px
}

.destaque-doencas .col-6{
	padding:0
}

.destaque-doencas .col-6:first-of-type div{
	width: 80%;
	margin: 0 auto
}

.destaque-doencas .col-6:last-of-type{
	max-height: 650px;
	overflow: hidden;
}

.destaque-doencas .col-6:last-of-type img{
	object-fit: cover;
	object-position: center;
	width: auto;
	max-width: 100%;
	height: 100%;
}

.slider-patologias .slick-slide {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.slider-patologias .slick-dots{
    left: 10px;
    text-align: left;
	top: 50%;
	bottom: 50%;
}

.slider-patologias .slick-dots li.slick-active button:before {
    opacity: 0
}

.slider-patologias .slick-dots li.slick-active {
	opacity: 1;
}

.slider-patologias .slick-dots li {
	background-color: #00b499;
	border-radius: 50%;
	width: 7px;
	opacity: .3;
	height: 7px;
	display: flex;
	margin: 15px 15px;
	cursor: pointer;
}

@media(max-width:1024px){
	
	.destaque-doencas h4{
		margin-top: 30px;
	}
	
	.destaque-doencas h2 {
    	margin-bottom: 27px;
	}
	
}

@media(max-width:768px){
	
	.destaque-doencas h4{
		padding-top: 30px;
		margin-top: 30px;
		margin-bottom: 20px;
	}
	
	.destaque-doencas h2 {
		font-size: 1.675rem;
    	margin-bottom: 15px;
	}
	
	.destaque-doencas p {
		margin-bottom: 20px;
	}
	
	.slider-patologias .slick-dots{
		left: 0;
		right: 0;
		text-align: center;
	}
	
	.slider-patologias ul.slick-dots{
		top: 48%;
	}
	
	.slider-patologias .slick-dots li {
		position: relative;
    	display: inline-block;
		width: 11px;
		height: 11px;
		margin: 5px 15px;
	}
	
	.slider-patologias .slick-dots li button {
    	width: 25px;
		height: 20px;
    	padding: 0px;
	}

}

@media(max-width:768px){
	header.open ul.menu_baixo .search button {
    	top: 80px;
		left: 246px;
		right: 0;
	}
}
@media(max-width:414px){
	header.open ul.menu_baixo .search button {
    	top: 128px;
		right: 50px;
		left: auto;
	}
	
	.sidebar_socio_area {
		height: auto;
	}
}

@media(max-width:375px){
	.slider-patologias ul.slick-dots{
		top: 42%;
	}
	
	header.open ul.menu_baixo .search button {
    	right: 45px;
		top: 113px;
	}
	
	.sidebar_socio_area {
		height: auto;
	}
	
}

@media(max-width:320px){
	.slider-patologias ul.slick-dots{
		top: 36%;
	}
	
	.sidebar_socio_area {
		height: auto;
	}
	
	header.open ul.menu_baixo .search button {
    	right: 35px;
		top: 113px;
	}
}




@media(min-width:1024px){
	.destaque-doencas .col-6:last-of-type img{
		width:100%;
	}
	
	.destaque-doencas a.button{
		width:197px;
	}
}

@media(max-width:768px){
	.destaque-doencas .col-6:last-of-type img{
		height: auto;
	}
	.destaque-doencas .col-6{
		flex: 0 0 100%;
    	max-width: 100%;
	}
	.destaque-doencas .col-6:first-of-type{
		order:2;
		padding-top:25px;
		padding-bottom:25px
	}
	.destaque-doencas .col-6:last-of-type{
		order:1
	}
}


@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1) {
	  .destaque-doencas .col-6:first-of-type div{
		  padding: 20px 0
	  }
}



/********************************/
/********* SIDE BUTTONS *********/
/********************************/
.side_buttons{
	position: fixed;
	top: 180px;
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
}

.side_buttons a {
    flex: 1;
}

.side_buttons div{

	display: flex;
	position: fixed;
	right: 20px;
	text-transform: uppercase;
	-moz-transform:rotate(-90deg);
	-ms-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
	transform-origin: right;
	height: 43px;
	line-height: 43px;
	padding-left: 20px;
	padding-right: 10px;
	font-family: var(--font-family2);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-align: center;
	color: #ffffff;
	align-items: center;
    justify-content: center;
	padding-bottom: 0px;
	transition: var(--transition);
    -webkit-transition: var(--transition);
	z-index: 99;
	line-height: 1;
	
}

.side_buttons .button::before {
	border-radius:0;
	border:0;
}

.side_buttons div::before{
	content:"";
	height: 15px;
	display: inline;
	transition: var(--transition);
    -webkit-transition: var(--transition);
}

.side_buttons div.button-04{
	background-color: #09749a;
}

.side_buttons a:hover div {
    opacity: .8;
}

.side_buttons div.button-04 .arrow {
	border: solid white;
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 3px;
	margin-left: 20px;
	margin-right: 10px;

}
  
.side_buttons div.button-04 .down {
	transform: rotate(45deg);
  	-webkit-transform: rotate(45deg);
}

/* position: absolute;
	top: -2px;bottom: -2px;
	left: -2px;right: -2px;
	background: transparent;
	border:2px solid var(--blue);
	border-radius:30px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    will-change: transform;
    pointer-events: none; */



/********************************/
/********** FIXED BOOK **********/
/********************************/
.buttons_bottom{
	position: fixed;
	bottom: 0px;
	
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
}

.buttons_bottom div{
	height: 43px;
	line-height: 43px;
	padding-left:10px;
	padding-right: 10px;
	font-family: var(--font-family3);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.88px;
	text-align: center;
	color: #ffffff;
	display: flex;
	align-items: center;
    justify-content: center;
	padding-bottom: 0px;
	transition: var(--transition);
    -webkit-transition: var(--transition);
	z-index: 99;
	line-height: 1;
}

.buttons_bottom .button-01{
	background:#00b499;
}
.buttons_bottom div.button-02{
	background:#006e61;
}
.buttons_bottom div.button-03{
	background:#014039;
}

.buttons_bottom div.button-04{
	background: rgb(247,112,31);
    background: -moz-linear-gradient(45deg, rgba(247,112,31,1) 0%, rgba(249,217,98,1) 100%);
    background: -webkit-linear-gradient(
45deg, rgba(247,112,31,1) 0%,rgba(249,217,98,1) 100%);
    background: linear-gradient(
45deg, rgba(247,112,31,1) 0%,rgba(249,217,98,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7701f', endColorstr='#f9d962',GradientType=1 );
	text-transform: uppercase;
	white-space: nowrap;
}

.buttons_bottom div::before{
	content:"";
	height: 15px;
	display: inline;
	margin-right:10px;
	transition: var(--transition);
    -webkit-transition: var(--transition);
}

.buttons_bottom div.button-01:before{
	background: url(/assets/img/icon_book.svg) no-repeat;
	width: 11px;
}
.buttons_bottom div.button-02:before{
	background: url(/assets/img/icon_reag.svg) no-repeat;
	width: 15px;
}
.buttons_bottom div.button-03:before{
	background: url(/assets/img/icon_inaladores.svg) no-repeat;
	width: 13px;
}
.buttons_bottom div.button-04:before{
	background: url(/img/icon_eleicoes.svg) no-repeat;
	width: 16px;
}

.buttons_bottom a{
	flex: 1;
}

.buttons_bottom a:nth-child(2){
	flex: inherit;
}

.buttons_bottom a:hover div{
	opacity: .8;
}

@media(min-width:375px){
	.buttons_bottom div{
		padding-left:15px;
		padding-right: 15px;
	}
}

@media(min-width:768px){
	.buttons_bottom{
		right: 25px;
		width: auto;
	}
	.buttons_bottom div{
		height: 54px;
		line-height: 54px;
		padding-left:20px;
		padding-right: 20px;
		margin: 0 1px;
		font-size: 13px;
	}
	.buttons_bottom div::before{
		height: 21px;
		margin-right:15px
	}
	
	.buttons_bottom div.button-01:before{
		width: 15px;
	}
	.buttons_bottom div.button-02:before{
		width: 21px;
	}
	.buttons_bottom div.button-03:before{
		width: 18px;
	}
	.buttons_bottom div.button-04:before{
		width: 22px;
	}
}

@media(max-width:767px){
	.buttons_bottom div{
		padding: 10px;
		flex-direction: column;
		align-items: center;
		flex: 1;
		height: 48px;
		font-size: 11px;

	}

	.buttons_bottom div::before{
		margin: 0 auto 5px;
	}

	.cky-btn-revisit-wrapper{
		width: 35px !important;
		height: 35px !important;
	}

	.cky-btn-revisit-wrapper .cky-btn-revisit img {
		width: 22px !important;
		height: 22px !important;
	}

	.cky-revisit-bottom-left {
		bottom: 55px !important;
	}

}

@media(max-width:350px){
	.buttons_bottom div{
		font-size: 9px;
	}
}




.book-fixed{
	position: fixed;
	bottom: -5px;
	left: auto;
    right: 245px;
	background:#00b499;
	height: 54px;
	padding-left:20px;
	padding-right: 20px;
	font-family: var(--font-family3);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.88px;
	text-align: center;
	color: #ffffff;
	display: flex;
	align-items: center;
    justify-content: center;
	padding-bottom: 0px;
	transition: var(--transition);
    -webkit-transition: var(--transition);
	z-index: 99;
	line-height: 1;
}

.book-fixed::before{
	content:"";
	background: url(/assets/img/icon_book.svg) no-repeat;
	width: 15px;
	height: 21px;
	display: inline;
	margin-right:15px
}

a:hover .book-fixed{
	bottom:0px;
}

a:hover .book-fixed.active{
	bottom:5px;
}


@media(max-width:768px){
	.book-fixed{
		padding-left: 10px;
    	padding-right: 8px;
		height: 54px;
	}
	.book-fixed::before{
		margin-right:10px
	}
}

@media(max-width:1024px){

	.side_buttons{
		display:none;
	}
}



/*************************************************/
/********** HOMEPAGE COMISSÕES TRABALHO **********/
/*************************************************/
.comissoes-trabalho{
	text-align:center;
	padding-top:99px;
	padding-bottom:100px;
	position: relative;
}
.comissoes-trabalho h2{
	font-family: var(--font-family3);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.54;
	letter-spacing: normal;
	text-align: center;
	color: var(--darkblack);
	text-transform: uppercase;
}

.comissoes-trabalho h3{
	font-family: var(--font-family1);
	font-size: 1.875rem;
	font-weight: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: var(--darkblack);
	max-width: 280px;
	margin:29px auto 30px
}

.comissoes-trabalho a img{
	transition: var(--transition);
    -webkit-transition: var(--transition);
}
.comissoes-trabalho a:hover img{
	transform: scale(1.05)
}

.comissoes-trabalho .slick-list{
	padding-bottom: 5px;
}

.comissoes-trabalho .slider-arrows a {
	position: absolute;
    height: 70px;
    width: 70px;
    top: 50%;bottom: 0;
	transform: translateY(-50%);
	transition: var(--transition);
    -webkit-transition: var(--transition);
	font-size: 0;
}

.comissoes-trabalho .slider-arrows a::before {
	content: "";
	display: block;
	position: relative;
	height: 70px;
	width: 100%;
	background-image: url(/assets/img/arrow-gray2.svg);
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .6
}
.comissoes-trabalho .slider-arrows a:hover::before{
	opacity:1
}

.comissoes-trabalho .slider-arrows a.prev {
    left: 12%;
    border-top-right-radius: 180px;
    border-bottom-right-radius: 180px;
    padding: 0;
	padding-right: 10px;
}
.comissoes-trabalho .slider-arrows a.prev::before {
    transform: rotate(180deg);
}

.comissoes-trabalho .slider-arrows a.prev:hover{
	left: 11%;
}

.comissoes-trabalho .slider-arrows a.next{
	right:12%;
	padding-left: 10px;
}

.comissoes-trabalho .slider-arrows a.next:hover{
	right:11%
}

.comissoes-trabalho .button{
	margin:0 0 6px;
}

@media(max-width:768px){
	.comissoes-trabalho{
		text-align:center;
		padding-top:49px;
		position: relative;
	}
	.comissoes-trabalho h3 {
		font-size: 18px;
		max-width: 280px;
		margin: 29px auto 30px;
	}

	.comissoes-trabalho .slider-arrows{
		position: relative;
	}
	
	.comissoes-trabalho .slider-arrows a{
		top:0;
		bottom:0;
		transform: none;
	}
	.comissoes-trabalho .slider-arrows a.next{
		right:40px
	}
	.comissoes-trabalho .slider-arrows a.prev{
		left:40px
	}
}


/**********************************************/
/********** HOMEPAGE PROJETS SECTION **********/
/**********************************************/

.projets {
    padding: 80px 0 90px;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.projets::before {
    opacity: 1;
    mix-blend-mode: multiply;
}

.projets::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333333;
    opacity: .95;
}



.projets .row:first-of-type{
	margin-bottom: 79px
}


.projets h4{
	font-family: var(--font-family3);
	font-size: 1.125rem;
	font-weight: 500;
	text-align: left;
	color: var(--blue);
	text-transform: uppercase
}

.projets h3{
	font-family: var(--font-family1);
	font-size: 1.875rem;
	font-weight: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
	margin-bottom: 40px
}

.projets p{
	font-family: var(--font-family1);
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.56;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	margin-bottom:36px
}

@media(max-width:767px){
	.projets {
		padding: 40px 0 40px;
	}
	.projets .col-4{
		flex: 0 0 100%;
    	max-width: 100%;
	}
	
	
	.projets .slick-list{
		padding-bottom:20px
	}
	.projets .slick-dots{
		bottom:0
	}
	.projets .slick-dots li{
		width: 8px;
		height: 8px;
	}
	.projets .slick-dots li button{
		background: #fff;
		opacity: .3;
		border-radius:50%;
		width: 8px;
		height: 8px;
	}
	.projets .slick-dots li.slick-active button{
		opacity: 1
	}
	
}




/************************************************/
/********** HOMEPAGE PARCEIROS SECTION **********/
/************************************************/
.parceiros{
	padding-top:100px;
	padding-bottom:70px
}
.parceiros h2{
	font-family: var(--font-family3);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.54;
	letter-spacing: normal;
	text-align: center;
	color: var(--darkblack);
	text-transform: uppercase;
	margin-bottom:40px
}

.parceiros .item{
	display: flex;
	flex-flow: row wrap;
	justify-content: center
}

.parceiros .item div{
	max-width:160px;
	margin: 30.5px;
}


.parceiros .breaker {display:none;margin: 0}
.parceiros .breaker:nth-of-type(6n) {
  display:block;
  width:100%;
  height:0;
 }

@media(max-width:768px){
	.parceiros h2{
		margin-bottom:20px
	}
	.parceiros .item{
		display: flex;
		flex-flow: row wrap;
		justify-content: center
	}

	.parceiros .item div{
		max-width:115px;
		margin: 10px;
	}
}


/*****************************************/
/********** HOMEPAGE NEWSLETTER **********/
/*****************************************/

.zona-newsletter{
	padding: 110px 0;
	position: relative;
}

.zona-newsletter .image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.zona-newsletter .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: static;
    transform: none;
    filter: grayscale(1);
    filter: grayscale(100%);
	opacity: .3
}

.zona-newsletter .image::after {
    mix-blend-mode: multiply;
    opacity: 1;
}

.zona-newsletter .image::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(323deg, #00b499, #7edcbe);
    opacity: .75;
}
.zona-newsletter .container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
@media (min-width: 768px){
	.zona-newsletter .container {
		align-items: center;
		flex-direction: initial;
	}
}

.zona-newsletter .container > div {
    flex: 1;
}

.zona-newsletter .container h3 {
    font-family: var(--font-family1);
	font-size: 2.25rem;
	font-weight: 300;
	line-height: 1.28;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
}

.zona-newsletter .container .button, 
.zona-newsletter .container .button:hover, 
.zona-newsletter .container .button:focus{
	padding: 29px 51px;
	font-size: 14px
}

.zona-newsletter .container .button span{
	color:#014a3f
}
.zona-newsletter .container .button:before{
	background:white;
	border:2px solid white;
	border-radius: 46px;
}

@media(max-width:768px){
	.zona-newsletter{
		padding: 45px 0;
		position: relative;
	}
	.zona-newsletter .container h3{
		font-size: 1.9rem;
		margin-bottom:15px;
	}
	.zona-newsletter .container .button, .zona-newsletter .container .button:hover, .zona-newsletter .container .button:focus {
		padding: 15px 25px;
		font-size: 14px;
	}
}


/******************************************/
/********** HOMEPAGE CONTACT BAR **********/
/**************a****************************/
.contact-bar{
	padding:88px 0 30px;
	/* background: #f6f8f7 */
}

.contact-bar .col-4,
.contact-bar .col-6,
.contact-bar .col-12{
	padding-right: 50px
}
.contact-bar .col-4 > div,
.contact-bar .col-6 > div,
.contact-bar .col-12 > div,
.contact-bar.contact-footer .row > div{
	padding-left: 50px;
	position: relative;
}

.contact-bar p {
    font-family: var(--font-family1);
    font-size: 1rem;
    font-weight: 300;
    color: var(--darkblack);
    margin: 0;
	line-height: 1.5;
}

.contact-bar p:first-of-type strong{
	font-family: var(--font-family2);
	font-weight: 500;
}

.contact-bar p strong{
	font-weight: 500;
}

.contact-bar p a{
	font-family: var(--font-family1);
    color: var(--blue);
    display: inline;
    font-weight: 400;
    border-bottom: 1px solid currentColor;
}
.contact-bar .col-4 > div::before,
.contact-bar .col-6 > div::before,
.contact-bar .col-12 > div::before,
.contact-bar.contact-footer .row > div > div::before{
	content:"";
	position: absolute;
    top: 0;
    left: 0;
	height: 32px;
    width: 27px;
}
.contact-bar.contact-footer .row > div > div p:first-of-type{
	margin-bottom: 36px;
}
.contact-bar .col-4:nth-of-type(1) > div::before,
.contact-bar .col-6 > div::before,
.contact-bar .col-12 > div::before,
.contact-bar.contact-footer .row > div > div::before{
    background-image: url(/assets/img/icon_map.svg);
    background-repeat: no-repeat;
}
.contact-bar .col-4:nth-of-type(2) > div::before,
.contact-bar.contact-footer .row > div:last-of-type > div::before {
    background-image: url(/assets/img/icon_tlf.svg);
    background-repeat: no-repeat;
}
.contact-bar .col-4:nth-of-type(3) > div::before {
    background-image: url(/assets/img/icon_email.svg);
    background-repeat: no-repeat;
}

.contact-bar .col-4:nth-of-type(1) a.link_mapa,
.contact-bar .col-6 a.link_mapa,
.contact-bar .col-12 a.link_mapa,
.contact-bar.contact-footer a.link_mapa{
	font-family: var(--font-family3);
	font-size: 11px;
	font-weight: bold;
	line-height: 2.18;
	letter-spacing: 0.88px;
	color: var(--blue);
	margin-top: 30px;
	display: block;
}

@media(min-width:768px){
	.contact-bar.contact-footer .row {
		margin: 0;
	}
	.contact-bar.contact-footer .row > div:first-of-type{
		flex: 1;
	}
}


@media(max-width:767px){
	.contact-bar {
		padding: 30px 0;
	}
	.contact-bar.contact-footer{
		padding: 30px;
	}
	.contact-bar .col-6 a,
	.contact-bar.contact-footer a.link_mapa{
		margin-top:15px;
	}
	.contact-bar .col-6{
		flex: 0 0 100%;
    	max-width: 100%;
		margin-bottom:25px
	}

	.contact-bar.contact-footer .row{
		gap: 40px
	}

	.contact-bar.contact-footer .row > div > div p:first-of-type{
		margin-bottom: 25px;
	}
}


/****************************/
/********** FOOTER **********/
/****************************/

footer{
	background: #2c2c2c;
	width: 100%;
	padding: 29px 0;
	position: relative;
    z-index: 997;
}

footer .item{
	display:flex;
	align-items: center;
	flex-direction: initial;
}

footer .item div{
	flex: 1
}

footer .item {
	font-family: var(--font-family4);
	font-size: 10px;
	font-weight: normal;
	letter-spacing: 0.2px;
	text-align: left;
	color: #a7a6a6;
	text-transform: uppercase
}

footer .item p{
	margin:0
}

footer .item a{
	color: white;
}

footer .item a:hover{
	color: #a7a6a6;
}

@media(max-width:768px){
	footer{
		padding:19px 0
	}
	footer .item{
		flex-wrap: wrap;
	}
	footer .item div{
		flex: auto;
		margin-bottom:10px
	}
}



/**************************************************/
/********** CONTEUDOS LISTAGEM COMISSÕES **********/
/**************************************************/

.listagem_comissoes .item{
	display: flex;
	align-items: flex-start;
	flex-flow: wrap;
	justify-content: space-around
}

.listagem_comissoes .item > div {
	margin-bottom: 118px
}

/********** CONTEUDOS PÁGINA COMISSÕES **********/
.conteudos-comissoes{
	margin-top: 100px;
	margin-bottom:50px
}

.conteudos-comissoes .row{
	justify-content:space-between
}

.conteudos-comissoes .col-4{
	max-width: 301px;
}
.listas_comissoes{
	background: var(--bg-grey);
	padding: 31px 22px;

}

.listas_comissoes .titulo{
	font-family: var(--font-family3);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.63;
	text-align: left;
	color: var(--blue);
	text-transform: uppercase;
	margin-bottom: 22px
}

.listas_comissoes ul{
	list-style: none;
	margin: 0;
	padding-left: 30px;
}
.listas_comissoes ul li{
	position:relative;
}

.listas_comissoes ul li:not(:last-of-type){
	margin-bottom:17px;
}
.listas_comissoes ul li a{
	font-family: var(--font-family1);
	font-size: 1.063rem;
	font-weight: normal;
	letter-spacing: normal;
	text-align: left;
	color: #807f7f;
}

.listas_comissoes ul li a:hover,
.listas_comissoes ul li.active a{
	color: #323232;
}

.listas_comissoes ul li::before{
	content:"";
	background: url(/assets/img/arrow-listagem-color.svg) no-repeat center;
	background-size: contain;
	width: 16px;
    height: 9px;
	display: inline-block;
	position: absolute;
	left: -30px;
	top:7px;
}

.listas_comissoes ul li.active::before,
.listas_comissoes ul li:hover::before
{
	content:"";
	background: url(/assets/img/arrow-listagem-color2.svg) no-repeat center;
	background-size: contain;
	width: 16px;
    height: 9px;
	display: inline-block;
	position: absolute;
	left: -30px;
	top:7px;
}

.conteudos-comissoes img.image_comissao{
	max-height:90px
}
.equipa-comissao{
	display:flex;
	flex-flow: nowrap;
	justify-content: center;
	margin-top:58px
}

.equipa-comissao > div{
	max-width:190px;
	font-family: var(--font-family1);
	font-size: 1.125rem;
	font-weight: 300;
	color: #797979;
	margin: 29px;
}

.equipa-comissao p{
	font-family: var(--font-family1);
	font-size: 1.125rem;
	font-weight: 300;
	color: #797979;
}

.equipa-comissao > div b, .equipa-comissao > div strong{
	color:#000000;
	font-weight: bold
}

.equipa-comissao > div img{
	border-radius:50%;
	margin-bottom: 30px;
}


@media(max-width:768px){
	.conteudos-comissoes{
		margin-top: 30px;
		margin-bottom: 30px
	}

	.conteudos-comissoes .col-4{
		max-width: 100%;
		flex: 0 0 100%;
		order:2
	}
	.conteudos-comissoes .col-8{
		max-width: 100%;
		flex: 0 0 100%;
		order:1
	}
	.equipa-comissao{
		flex-wrap:wrap
	}
	.equipa-comissao > div{
		color: #797979;
		margin: 15px;
	}
}




/********************************************/
/********** PUBLICAÇÕES SELECT ANO **********/
/********************************************/
.publicacoes-select-ano .select{
	display:inline-block;
}
.publicacoes-select-ano .select select{
	display:none
}
.publicacoes-select-ano .custom_select{
	position:relative;
	font-family: var(--font-family1);
	font-size: 0.875rem;
	font-weight: normal;
	font-style: normal;
	text-align: left;
	color: #373636;
	cursor:pointer;
	margin-top:20px
}
.publicacoes-select-ano .custom_select > .selected{
	padding:17px 20px;
	border: solid 1px #67d5b7;
	position:relative;
	padding-right: 100px;
	
}
.publicacoes-select-ano .custom_select > .selected::after{
	content:"\f0d7";
	font-family:"Font Awesome 5 Free";
	font-size: 12px;
	font-weight: 600;
	position:absolute;
	display:inline-block;
	right:15px;
	transition:all .4s ease-in-out;
	background-repeat:no-repeat;
	top:30%;
	transform:rotate(0deg)
}
.publicacoes-select-ano .custom_select.aberto > .selected::after{
	transform:rotate(180deg)
}
.publicacoes-select-ano .custom_select > .options{
	position:absolute;
	width:100%;
	max-height:0;
	overflow:hidden;
	transition:all .4s ease-in-out;
	background-color:#67d5b7;
	border:0 solid #67d5b7;
	border-bottom:1px solid transparent;
	margin-top:-1px;
	z-index:2
}
.publicacoes-select-ano .custom_select.aberto > .options{
	overflow-y:scroll;
	max-height:150px;
	border-bottom:1px solid #67d5b7;
	z-index:3
}
.publicacoes-select-ano .custom_select > .options > div{
	padding:10px 20px;
	position:relative;
	transition:all .4s ease-in-out;
	font-family: var(--font-family1);
	font-size: 0.875rem;
	font-weight: normal;
	font-style: normal;
	text-align: left;
	color: #fff;
}
.publicacoes-select-ano .custom_select > .options > div:hover{
	background-color:#00b499;
	color:#fff
}
.publicacoes-select-ano .custom_select > .options > div.selected::after{
	content:"";
	position:absolute;
	background-image:url(../img/check.svg);
	background-repeat:no-repeat;
	height:6px;
	width:9px;
	left:20px;
	margin-top:2px;
	transition:all .4s ease-in-out}



/****************************/
/********** AGENDA **********/
/****************************/








/*****************************************/
/********** CONTENT PAGE BANNER **********/
/*****************************************/

.banner-content {
	padding: 231px 0 85px;
	position: relative;
}

.banner-content .image {
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	overflow: hidden;
}
.banner-content .image::after {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	background-color: rgb(var(--banner-content));
	
	
	mix-blend-mode: multiply;
	opacity: .85;
}
.banner-content .image img {
	position: relative;
	top: 50%;left: 50%;
	min-width: 100%;
	min-height: 100%;
	height: auto;
	transform: translate(-50%, -50%);
	opacity: 1;
}

.banner-content ul {
	padding: 0;
	margin-bottom: 10px;
	list-style: none;
	font-size: .875rem;
	font-weight: 100;
	font-style: normal;
	color: white;
	font-family: var(--font-family1);
}
.banner-content ul li {
	display: inline-block;
}
.banner-content ul li a.disabled {
	pointer-events:none;
}
.banner-content ul li a:hover, .banner-content ul li a:focus {
	opacity: .7
}

.banner-content h1 {
	font-family: var(--font-family3);
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: -1px;
  	font-style: normal;
	line-height: normal;
	color: white;
	margin: 0;
	text-transform: uppercase;
}


@supports(mix-blend-mode: multiply) {		
	.banner-content .image::after {
		mix-blend-mode: multiply;
		opacity: 1;
	}
	.banner-content .image img {
		height: 100%;
		width: 100%;
		object-fit: cover;
		position: static;
		transform: none;
		/*filter: grayscale(1);
		filter: grayscale(100%);*/
	}
}


@media(max-width:991px) {
	.banner-content {
		padding: 125px 0 60px;
	}
	
	.banner-content ul {
		font-size: .825rem;
		margin-bottom: 15px;
	}
}

@media(max-width:767px) {
	.banner-content {
		padding: 125px 0 40px;
	}
	
	.banner-content .image img {
		/*display: none*/
	}
	
	.banner-content .image::after{
		content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--banner-content));
    mix-blend-mode: multiply;
    opacity: .85;
	}
	
	
}

.banner-content.banner_noticias {
	padding: 231px 0 45px;
	position: relative;
}

.banner-content.banner_noticias .data{
	font-family: var(--font-family3);
	font-size: 14px;
	font-weight: bold;
	line-height: normal;
	letter-spacing: 1.12px;
	text-align: left;
	color:var(--blue);
	text-transform: uppercase;
	margin-top:30px
}

.banner-content.banner_noticias h1 {
	font-size: 2.125rem;
	line-height: 1.29;
  	letter-spacing: -0.85px;
}


@media(max-width:768px){
	.banner-content.banner_noticias {
		padding: 125px 0 40px;
		position: relative;
	}
}


/*******************************************/
/********** CONTENT PAGE TEMPLATE **********/
/*******************************************/

.content .template {
	font-family: var(--font-family4);
	padding: 85px 0 100px;
}
.content .template > * {
	margin-top: 0;
}

.content .template h2:first-child,
.content .template h3:first-child,
.content .template h4:first-child,
.content .template p:first-child,
.content .template ul:first-child,
.content .template ol:first-child {
	margin-top: 0;
}

.content .template h2:last-child,
.content .template h3:last-child,
.content .template h4:last-child,
.content .template p:last-child,
.content .template ul:last-child,
.content .template ol:last-child {
	margin-bottom: 0;
}

.content .template h2, .content .template .h2 {
	font-family: var(--font-family1);
	font-size: 1.875rem;
	font-weight: normal;
	color: #090c0c;
	line-height: 1.56;
	margin: .75em 0;
}
.content .template h3, .content .template .h3 {
	font-family: var(--font-family1);
	font-size: 1.563rem;
	font-weight: normal;
	color: #090c0c;
	line-height: 1.33;
	margin: .75em 0;
}
.content .template h4, .content .template .h4 {
	font-family: var(--font-family1);
	font-size: 1.375rem;
	font-style: normal;
	font-weight: 500;
	color: var(--blue);
	line-height: 1.68;
	margin: .75em 0;
}

.content .template p, .content .template ul, .content .template ol {
	font-family: var(--font-family1);
	font-size: 1.125rem;
	font-weight: 300;
	color: var(--black);
	margin: 1em 0;
}
.content .template p b, .content .template p strong {
	font-family: var(--font-family1);
	font-weight: bold;
	color: #000000;
}
.content .template p small {
	font-size: .875rem;
	font-weight: normal;
	color: var(--black)
}
.content .template p big {
	font-family: var(--font-family1);
	display: inline-block;
	font-size: 1.5rem;
	font-weight: normal;
	font-style: italic;
	color: var(--darkblack);
	padding: .5em 0 .5em 100px;
}
.content .template p a, .content .template li a {
	font-family: var(--font-family1);
	color: var(--blue);
	display: inline;
	font-weight: bold;
	border-bottom: 1px solid currentColor;
}

.content .template .remove-sub p{
	display: inline-block;
	vertical-align: middle;
	font-size: .813rem;
	color: var(--black);
	font-weight: 300;
	line-height: 1.25;
	text-transform: none;
}

.content .template .remove-sub p a{
	color: var(--blue);
    border-bottom: 1px solid currentColor;
}

.content .template p a:hover, .content .template li a:hover {
	border-bottom: 1px solid transparent;
}

.content .template blockquote {
	display: block;
	padding: 1.5em 0 1.5em 100px;
	position: relative;
	
}
.content .template blockquote::before {
	content: "";
	background-image: url(/assets/img/quotation-marks.svg);
	background-repeat: no-repeat;
	color: #69b3c3;
	position: absolute;
	top:0px;
	left: 40px;
	height: 25px;
	width: 25px;
}
.content .template blockquote p {
	font-family: var(--font-family1);
	font-size: 1.5rem;
	font-weight: normal;
	font-style: italic;
	color: var(--darkblack);
	margin: 0
}
.content .template blockquote p small {
	font-size: .875rem;
	font-family: var(--font-family1);
	color: var(--black);
	font-style: normal;
}

.content .template ul, .content .template ol {
	padding-left: 2em;
	list-style: none;
	margin: 1.5em 0;
}
.content .template ul li, .content .template ol li {
	position: relative;
}
.content .template ul li p, .content .template ol li p {
	margin: 0;
}
.content .template ul li::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-left: -2em;
	margin-right: 1.7em;
	background-color:var(--blue);
	border-radius: 50%;
}

.content .template ol {
	counter-reset: item;
}
.content .template ol li {
	counter-increment: item;
}
.content .template ol li::before {
	content: counter(item) ".";
	display: inline-block;
	width: 2em;
	margin-left: -2em;
	color: var(--blue);
	font-weight:bold
}


@media(max-width:991px) {
	.content .template {
		padding: 70px 0;
	}
}

@media(max-width:767px) {
	.content .template {
		padding: 40px 0;
	}

	.content .template p big {
		padding-left: 0;
	}

	.content .template blockquote {
		padding-left: 60px;
	}
	.content .template blockquote::before {
		left: 0;
		height: 20px;
		width: 20px;
	}
}




/************************************/
/********** CONTACT US BAR **********/
/************************************/

.contact-us-bar {
	padding: 75px 0;
	position: relative;
}

.contact-us-bar .image {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}
.contact-us-bar .image::after {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	background-color: rgb(var(--primary));
	opacity: .75;
}
.contact-us-bar .image img {
	position: relative;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: .2;
}

.contact-us-bar .container {
	display: flex;
	align-items: center;
}
.contact-us-bar .container > div {
	flex: 1;
}

.contact-us-bar .container p {
	font-size: 1.125rem;
	font-weight: 300;
	color: white;
	margin: 0;
}
.contact-us-bar .container p.h3 {
	font-size: 2.25rem;
	margin-bottom: 15px;
}


@supports(mix-blend-mode: multiply) {		
	.contact-us-bar .image::after {
		mix-blend-mode: multiply;
		opacity: 1;
	}

	.contact-us-bar .image img {
		height: 100%;
		width: 100%;
		object-fit: cover;
		position: static;
		transform: none;
		filter: grayscale(1);
		filter: grayscale(100%);
	}
}


@media(max-width: 991px) {
	.contact-us-bar {
		padding: 65px 0;
	}

	.contact-us-bar .container > .button {
		padding: 20px 25px;
	}
}

@media(max-width: 767px) {
	.contact-us-bar {
		padding: 50px 0;
	}

	.contact-us-bar .container {
		align-items: flex-start;
		flex-direction: column;
	}

	.contact-us-bar .container > .button {
		margin-top: 30px;
	}
}






/*****************************************************/
/********** ARTICLE LISTING PAGE W/ SIDEBAR **********/
/*****************************************************/

.content .template.has-sidebar {
	padding: 100px 0;
}

.content .template.has-sidebar .container {
	display: flex;
	align-items: flex-start;
}
.content .template.has-sidebar .container > div:not(.sidebar) {
	flex: 1;
}
.content .template.has-sidebar.sidebar-right .container > div:not(.sidebar) {
	padding-right: 80px;
}
.content .template.has-sidebar.sidebar-left .container > div:not(.sidebar) {
	padding-left: 86px;
}


@media(max-width: 991px) {
	.content .template.has-sidebar {
		padding: 70px 0;
	}

	.content .template.has-sidebar.sidebar-right .container > div:not(.sidebar) {
		padding-right: 60px;
	}
	.content .template.has-sidebar.sidebar-left .container > div:not(.sidebar) {
		padding-left: 60px;
	}
}

@media(max-width: 767px) {
	.content .template.has-sidebar.sidebar-right {
		padding: 40px 0 0;
    }
    .content .template.has-sidebar.sidebar-left {
        padding: 0 0 40px;
    }

	.content .template.has-sidebar .container {
		flex-direction: column;
	}
	.content .template.has-sidebar.sidebar-right .container > div:not(.sidebar), .content .template.has-sidebar.sidebar-left .container > div:not(.sidebar) {
		padding: 0;
    }
    .content .template.has-sidebar.sidebar-left .container > div:not(.sidebar) {
		padding-top: 40px;
	}
}


/*****************************/
/********** SIDEBAR **********/
/*****************************/

.content .template.has-sidebar .sidebar {
	width: 280px;
	padding: 30px 25px;
	background-color: #fafafa;
}
.content .template.has-sidebar .sidebar.white {
	background-color: white;
}


@media(max-width:768px){
	.content .template.has-sidebar .sidebar.white{
		order:2
	}
	.calendar .listing .article{
		    padding: 25px 0 0px;
	}
}




/********** BLOG LISTING SIDEBAR **********/

.content.blog .template .sidebar .form {
	margin-bottom: 45px;
}

.content.blog .template .sidebar .form input {
	padding: 14px 20px;
	padding-right: 50px;
	background-color: white;
	border:1px solid rgb(var(--primary));
	border-radius:30px;
	font-family: var(font-family4);
	font-size: .625rem;
	font-weight: 500;
	font-style: normal;
	font-stretch: normal;
	letter-spacing: normal;
	text-align: left;
	color: #818080;
}

.content.blog .template .sidebar .form [submit] {
	position: absolute;
	width: 50px;
	height: 45px;
	top: 0;right: 0;
}
.content.blog .template .sidebar .form [submit]::before {
	content: "";
	width: 15px;
	height: 15px;
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	margin: auto;
	background-image: url(/assets/img/lupe.svg)
}

.content.blog .template .categories-container .categories {
	color: var(--black);
	font-family: var(font-family4);
	font-size: 14px;
	font-weight: 600;
}


.content.blog .sidebar .categories-container > ul ul {
    display: block;
    max-height: 0;
    padding: 0;
}

.content.blog .sidebar .categories-container > ul ul, .content.blog .sidebar .categories-container > ul {
    margin-bottom: 0;
    padding: 0 25px;
    max-height: 0;
    text-transform: uppercase;
    overflow: hidden;
    transition: var(--transition);
    will-change: max-height;
}

.content.blog .sidebar .categories-container ul {
	padding-left: 0;
	margin-bottom: 3em;
}
.content.blog .sidebar .categories-container ul:last-child {
	margin-bottom: 0;
}
.content.blog .sidebar .categories-container ul li {
	font-size: .875rem;
	padding: 3px 0;
}
.content.blog .sidebar .categories-container ul li::before {
	content: normal;
}

.content.blog .sidebar .categories-container ul li a {
	border-bottom: 1px solid transparent;
	font-size: 12px;
	line-height: normal;
}
.content.blog .sidebar .categories-container ul li a:hover, .content.blog .sidebar .categories-container ul li a:focus {
	border-bottom: 1px solid currentColor;
}


.content.blog .sidebar .categories-container > ul {
    max-height: 100%;
}
.content.blog .sidebar .categories-container > ul ul {
    padding: 0;
	margin: 6px 0 0
}

.content.blog .sidebar .categories-container > ul > li:first-of-type {
    padding: 0 21px 21px;
}
.content.blog .sidebar .categories-container ul li {
    padding: 0px 21px;
    margin-bottom: 0;
    position: relative;
     flex: 1;
}

.content.blog .sidebar .categories-container ul li li{
	padding:6px 0
}

.content.blog .sidebar .categories-container .selected.open a {
   font-family: var(font-family4)!important;
	font-size: 12px;
	font-weight: 500;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #68b5c5;
}
.content.blog .sidebar .categories-container ul li.selected.open::after {
    transform: rotate(90deg) translateY(-5px);
}
.content.blog .sidebar .categories-container ul li.selected::after {
    position: absolute;
    top: 5px;
    transform:  translateY(0);
    left: 2px;
    width: 5px;
    height: 10px;
    content: '';
    background: url('../assets/img/seta_categories.svg');
    transition: var(--transition);
	background-repeat: no-repeat;
	background-size: cover
}


@media(max-width: 767px) {
	.content .template.has-sidebar .sidebar {
		margin: 0 -20px;
		width: calc(100% + 40px);
		padding: 40px 20px;
	}
	
	.content .template.has-sidebar .sidebar{
		order:-1;
	}
	
	
	.content.blog .template .sidebar .form {
		margin-bottom: 40px;
	}
	
	.content.blog .template .sidebar ul {
		margin: 1em 0 2em;
		display: flex;
		flex-wrap: wrap;
	}
	.content.blog .template .sidebar ul li {
		flex-basis: 50%;
		max-width: 100%;
	}
}

.content.blog .template h2 {
    font-family: var(--font-family1);
    font-size: 2.188rem;
    font-weight: normal;
    color: var(--black);
    line-height: normal;
    margin: .75em 0;
}



/***************************************/
/********** BLOG CONTENT PAGE **********/
/***************************************/



.content.not_banner.blog_content .breadcrumb-titulo{
	padding-top:120px;
}
.content.not_banner.blog_content .breadcrumb-titulo ul{
	padding: 0;
	margin-bottom: 10px;
	list-style: none;
	font-size: 1rem;
	font-weight: normal;
	font-style: italic;
	color: var(--black);
	font-family: var(--font-family1);
}

.content.blog_content.not_banner .breadcrumb-titulo ul li {
	display: inline-block;
}
.content.blog_content.not_banner .breadcrumb-titulo ul li a.disabled {
	pointer-events:none;
}
.content.blog_content.not_banner .breadcrumb-titulo ul li a:hover, 
.content.blog_content.not_banner .breadcrumb-titulo ul li a:focus {
	color: rgb(var(--primary));
}

.content.blog_content.not_banner .breadcrumb-titulo h1 {
	font-family: var(--font-family1);
	font-size: 3rem;
	font-weight: normal;
  	font-style: normal;
	line-height: 1;
	color: var(--black);
	margin: 0;
}


@media(max-width:768px){
	.content.not_banner.blog_content .breadcrumb-titulo{
		padding-top:60px;
	}
}


/********** LOWER DETAILS SECTION (BLOG LISTING item inherits from here) **********/

.content.blog .template.has-sidebar .sidebar{
	background:white
}

.blog .listing .article .button{
	padding: 12px 38px;
	display: inline-table;
}

.blog .listing .article .button span{
	line-height: normal
}

.blog .lower,
.blog_content .lower{
	margin-top:76px;
	margin-bottom:60px
}
.blog .lower span,
.blog_content .lower span{
	display: block;
	color: #b6b9b9;
	font-family: var(--font-family2);
	font-size: 12px;
	font-weight: 500;
	font-style: normal;
	line-height: 2.25;
}
.blog .lower span.date,
.blog_content .lower span.date{
	padding-left: 25px;
	position: relative;
	text-transform: uppercase;
}
.blog .lower span.date::before,
.blog_content .lower span.date::before{
	content: "\f073";
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	color: rgb(var(--primary));
	position: absolute;
	left: 0;
}

.blog .lower span a,
.blog_content .lower span a{
	color: rgb(var(--primary));
	text-transform: uppercase;
	border-bottom: 1px solid transparent;
}
.blog .lower span a:hover,.blog_content .lower span a:hover, .article span a:focus {
	border-bottom: 1px solid currentColor;
}

.content.blog .template p{
	font-size:1.125rem;
}

.content .article-nav {
	margin-top: 30px;
	border-top: 1px solid #e0dedd;
	padding-top: 65px;
}
.content .article-nav .row > div:nth-child(2) {
	text-align: center;
}
.content .article-nav .row > div:last-child {
	text-align: right;
}
.content .article-nav .row > div a {
	font-size: 0.75rem;
	font-family: var(--font-family2);
	color: rgb(var(--primary));
	text-transform: uppercase;
	font-weight: 500
}
.content .article-nav .row > div a:hover, .content .article-nav .row > div a:focus {
	opacity: .5;
}
.content .article-nav .row > div.disabled a {
	opacity: .25;
	pointer-events: none;
}

.content .article-nav .row > div.prev a, .content .article-nav .row > div.next a {
	padding-left: 40px;
	position: relative;
}
.content .article-nav .row > div.prev a::before, .content .article-nav .row > div.next a::before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	margin: auto;
	height: 8px;
	width: 27px;
	background-image: url(/assets/img/arrow-link-color.svg);
	background-repeat: no-repeat;
}

.content .article-nav .row > div.prev a {
	padding-left: 40px;
}
.content .article-nav .row > div.prev a::before {
	left: 0;
	transform: rotate(180deg);
}

.content .article-nav .row > div.next a {
	padding-right: 40px;
	padding-left: 0;
}
.content .article-nav .row > div.next a::before {
	right: 0;
}


@media(max-width: 991px) {
	.content .article-nav .row {
        margin: -10px;
    }

    .content .article-nav .row > div {
        padding: 10px
	}
	
	.content .article-nav .row > div.prev a, .content .article-nav .row > div.next a {
		padding-left: 30px;
	}
	.content .article-nav .row > div.next a {
		padding-right: 30px;
		padding-left: 0;
	}

	.content .article-nav .row > div.prev a::before, .content .article-nav .row > div.next a::before {
		height: 9px;
		width: 20px;
	}
}

@media(max-width: 767px) {
	.content .article-nav {
		margin-top: 20px;
		padding-top: 45px;
	}

	.article .lower span.date {
		padding-left: 20px;
	}
	.content .article-nav .row > div:nth-child(2) {
        order: 1
    }
}


.template-module div.text-center{
	margin-top: 0px;
}

/**********************************************/
/********** CONTENT LISTAGEM MEDIA **********/
/**********************************************/

.listagem_media{
	margin-top: 105px;
	color: var(--black);
	font-family: var(--font-family1);
}


.listagem_media .col-lg-4{
	margin-bottom:80px;
	text-align: center;
}

@media (min-width:992px){
	.listagem_media .col-lg-4{
		max-width:320px;
	}
	.listagem_media .row{
		justify-content: space-between;
	}
	
}

.listagem_media .titulo_produto{
	font-size: 1.5rem;
	font-weight: normal;
	font-style: normal;
	line-height: 1.42;
	margin-top:10px;
	margin-bottom: 30px
}

.listagem_media .button{
	padding: 11px 36px
}

/*********************************************/
/********** CALENDAR (FullCalendar) **********/
/*********************************************/

#calendar {
	font-family: var(--font-family1);
	width: 230px;
	max-width: 100%;
	margin: 0 auto;
}

#calendar .fc-left,
#calendar .fc-right {
    float: none;
    position: relative;
}
#calendar .fc-right {
    order: 1;
}

#calendar .fc-center {
    flex: 1;
    display: flex;
}
#calendar .fc-center h2,
#calendar .fc-center select {
	letter-spacing: 0;
	text-transform: capitalize;
    margin: 0;
    width: 100%;
	background-color: #f6f6f6;
	font-family: var(--font-family1);
	font-size: 14px;
	font-weight: normal;
	font-style: normal;
	line-height: 2;
	text-align: left;
	color: #373636;
}
#calendar .fc-center .select-wrapper {
    flex: 1;
    margin: 0 5px;
    background-color: #f6f6f6;
    position: relative;
	
	
}
#calendar .fc-center .select-wrapper::before {
	font-family: 'Font Awesome\ 5 Free';
    content: "\f0d7";
	font-weight:900;
	font-size: 12px;
	color:#373636;
	display: block;
    width: 7px;
    height: auto;
    position: absolute;
    top: 11px;bottom: 0;
    right: 5px;
    margin: auto;
    pointer-events: none;
}
#calendar .fc-center select {
    appearance: none;
    -webkit-appearance: none;
    padding: 5px 10px;
    border-radius: 0;
}

#calendar .fc-toolbar {
	position: relative;
	font-size: 0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
#calendar .fc-toolbar button {
	background: transparent;
	box-shadow: none;
	border: none;
	border-radius: 0;
	padding: 5px;
	width: 30px;
    height: 19px;
}
#calendar .fc-toolbar button span {
	position: static;
	margin: 0;
	background-image: url(/assets/img/seta.svg);
	background-repeat: no-repeat;
	height: 13px;
	width: 100%;
}
#calendar .fc-toolbar button span::after {
	display: none;
}
#calendar .fc-toolbar .fc-left button {
	left: 0;
	transform: rotate(180deg);
}
#calendar .fc-toolbar .fc-right button {
	right: 0;
}

#calendar * {
	border: none !important;
}
#calendar td {
	width: auto;
	padding: 0;
	text-align: center;
	display: table-cell;
}
#calendar span {
	font-size: 12px;
	font-weight: 400;
	color: #434344;
	margin-bottom: 0;
	margin-top: 6px;
	float: none;
}
#calendar .fc-title {
	display: none;
}

#calendar .fc-event {
	display: block;
	background-color: var(--blue);
	border: none;
	border-radius: 10px;
	margin: 0 10px;
	margin-top: 5px;
	height: 12px;
	min-width: 12px;
	padding: 0;
}

#calendar .fc-head span {
	font-family: var(--font-family3);
	font-size: 12px;
	font-weight: bold;
	margin: 0;
	margin-bottom: 6px;
	color: black;
}
#calendar .fc-row {
	border-bottom: 1px solid #eeeded !important;
}
#calendar .fc-body .fc-row {
	min-height: 3em;
	font-family: var(--font-family4);
}
#calendar .fc-bg table tr td {
	border-right: 1px solid #eeeded !important;
	
}
#calendar .fc-bg table tr td.fc-today {
	background: rgba(var(--primary),.2)
}
#calendar .fc-bg table tr td:last-of-type {
	border-right: none !important;
}

#calendar .fc-day.fc-widget-content.fc-past:not(.fc-other-month){
	background:white
}

/* Custom class for event details */
#calendar .fc-event-details {
	display: block;
	padding: 20px 15px;
	margin-top: 20px;
	background-color: var(--blue);
	text-decoration: none;
	position: relative;
}
#calendar .fc-event-details::before {
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .15);
    opacity: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}
#calendar .fc-event-details:hover::before {
	opacity: 1;
}

#calendar .fc-event-details > * {
	position: relative;
	z-index: 1;
}

#calendar .fc-event-details p:first-of-type {
	color: #096355;
	font-family: var(--font-family3);
	font-size: 12px;
	letter-spacing: 0.96px;
	line-height: 2;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 5px;
}

#calendar .fc-event-details p {
	
}
#calendar .fc-event-details span {
	display: block;
	font-family: var(--font-family1);
	font-size: 1.25rem;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
}

#calendar .fc-time{
	display:none
}

.calendar .listing .items{
	display:flex;
	flex-flow: wrap;
	flex-wrap: wrap
}

.calendar .listing .items .article{
	width:100%;
	max-width: 280px

}

.calendar .listing .items .article img{
	width:100%;
	margin-top: 0;
	margin-bottom: 25px
}

.calendar .listing .items .article:nth-child(2){
	padding-top:0
}

.calendar .listing .items .article:nth-child(2n+1){
	margin-right:98px
}

.calendar .listing .items .article .date {
	font-family: var(--font-family3);
	font-size: 14px;
	font-weight: bold;
	line-height: 1.71;
	letter-spacing: 1.12px;
	text-align: left;
	color: var(--blue);
	text-transform: uppercase
}


.calendar .listing .items .article h3{
	color: var(--darkblack);
	margin-top:18px
}

.calendar .listing .article .button {
    padding: 8px 35px;
}

.calendar.content .template.has-sidebar .agenda_conteudos .container{
	flex-flow:column
}

.calendar.content .template.has-sidebar .agenda_conteudos .template-module:first-child{
	margin-top: 0
}

.content .template.has-sidebar.sidebar-left .agenda_conteudos .container > div:not(.sidebar) {
	width:100%;
    padding-left: 0px;
}

.calendar .agenda_conteudos .listing .items {
    display: block;
	width: 100%;
}


@media(max-width:768px){
	.calendar .listing .items .article:nth-child(2n+1){
		margin-right:30px
	}
	.calendar .listing .items .article{
		margin-left:30px;
		margin-right: 30px;
	}
}

.content .template-module a.button{
	overflow: inherit
}

/*************************************/
/********** NOTICIAS **********/
/*************************************/

.listing .article.mini-article .lower span {
    font-family: var(--font-family3);
	font-size: 12px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: normal;
	text-align: left;
	color: #272727;
}

.listing .article.mini-article h3 {
    font-family: var(--font-family3);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #13ba9f;
    text-transform: uppercase;
    margin-top: 13px;
    margin-bottom: 20px;
}

.listing .article.mini-article p {
    font-family: var(--font-family1);
    font-size: 0.938rem;
    font-weight: normal;
    line-height: 1.47;
    letter-spacing: normal;
    text-align: left;
    color: var(--black);
    margin-bottom: 27px;
}
@media(min-width:768px){
	.noticias.listing .container.container-sm .article.mini-article {
		max-width:223px;
		padding:34px 0;
		margin:0 43px
	}
	.noticias.listing.listing-mini-article .container.container-sm .items.row{
		margin-left:-35px!important;
		margin-right: -35px!important;
	}
}
@media(max-width:768px){
	.noticias.listing .article.mini-article .lower span {
		padding-left: 0;
		margin-top: 15px;
	}
	
	.noticias.listing .col-12{
		margin-bottom:10px
	}
	
	.noticias.listing.listing-mini-article .container.container-sm .items.row{
		justify-content: center
	}
	.noticias.listing .container.container-sm .article.mini-article {
		max-width: 100%;
		margin: 0 23px;
	}
}

@media(min-width:768px) and (max-width:768px){
	.noticias.listing.listing-mini-article .container.container-sm .items.row .col-md-4{
		flex: 0 0 38%;
	}
}






/*****************************/
/********** GALLERY **********/
/*****************************/

.listing.gallery .article.mini-article .image .img {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
}
.listing.gallery .article.mini-article .image .img img {
    transition: all 0.4s ease-in-out;
}
.listing.gallery .article.mini-article .image .img:hover img {
    transform: scale(1.1);
}

.listing.gallery .article.mini-article h3{
	text-align: center;
	margin-bottom: 11px;
}

.listing.gallery .article.mini-article .date{
	text-transform: uppercase;
}

.listing.gallery .article.mini-article .lower{
	margin-top:9px;
	margin-bottom: 22px;
}

.listing.gallery .article.mini-article .button{
	padding: 8px 21px;
}

.listing.gallery .container.container-sm .article.mini-article{
	padding-bottom:50px
}


.listing.gallery .article.mini-article .image .img{
	padding-top: 66.75%;
    background-color: white;
	position:relative;
}
.listing.gallery .article.mini-article .image .img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
	margin: auto
}

.template-module .slider .image{
	padding-top:66.8%!important
}

.template-module .slider .image img{
	margin: auto
}



/*************************************/
/********** CONTACT US PAGE **********/
/*************************************/
.content.contact-us {
	background:white
}

.content.contact-us .h3{
	text-transform:uppercase;
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 60px;
}

/**************************/
/********** FORM **********/
/**************************/
@media(min-width:992px){
	.contact-us .container.container-sm {
		max-width: 534px;
	}
}


.form {
	position: relative;
}

.content .template .form h4, .content .template .form .h4 {
	font-family: var(--font-family1);
	font-weight: normal;
	font-style: normal;
	text-align: center;
	text-transform: none;
	margin-bottom: 70px;
	font-size:2.188rem
}

.content .template .form .row {
	margin: -15px -10px;
}
.content .template .form .row > div {
	padding: 15px 10px;
	font-size: 0;
}

.content.contact-us .template .form .row > div {
	padding: 5px 10px;
}
.content.contact-us .template .form textarea{
	height: 180px;
	margin-bottom: 15px;
}

.content .template .form label {
	display: block;
	font-family: var(--font-family1);
	font-size: .813rem;
	text-transform: uppercase;
	font-weight: normal;
    color: #797979;
	line-height: 1;
    margin-bottom: 15px
}
.content .template .form label a {
	color: var(--blue);
	border-bottom: 1px solid currentColor;
}
.content .template .form label a:hover, .content .template .form label a:focus {
	border-bottom: 1px solid transparent;
}

.content .template .form .input-wrapper {
    padding-top: 12px;
    position: relative;

}
.content .template .form .input-wrapper label {
    position: relative;
    pointer-events: none;
    transition: var(--transition);
}

.content .template .form .input-wrapper.filled label {
    transform: translateX(0);
    font-size: .813rem;
}

.content .template .form input, .content .template .form textarea {
	font-size: 0.875rem;
	font-family: var(--font-family4);
	font-weight: normal;
	color: #373636;
	width: 100%;
	padding: 15px 21px;
	background-color: transparent;
	border: solid 1px rgba(103, 213, 183, 0.5);
    resize: none;
	transition: var(--transition);
}
.content .template .form input.not-filled, .content .template .form textarea.not-filled {
    border: 1px solid var(--warning);
}

.content .template .form .warning {
    font-size: .875rem;
    font-weight: 400;
    color: var(--warning);
    height: 20px;
    margin: 0;
    margin-top: 10px;
    line-height: 20px;
    padding-left: 35px;
    position: relative;
}
.content .template .form .warning::before {
    content: "!";
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--warning);
    border-radius: 100%;
    font-size: 17px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.content .template .form input[type='checkbox'] {
	display: none;
}
.content .template .form input[type='checkbox'] + label {
	display: inline-block;
	vertical-align: middle;
	height: 23px;
	width: 23px;
	background-color: white;
	cursor: pointer;
	position: relative;
	border: 1px solid #d0d1d1;
	transition: var(--transition);
}
.content .template .form input[type='checkbox'].not-filled + label {
	border: 1px solid var(--warning);
}
.content .template .form input[type='checkbox'] + label::before {
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-size: .875rem;
	font-weight: 900;
	color: var(--black);
	line-height: 1;
	width: 14px;
	height: 12px;
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
    -webkit-transition: var(--transition);
}
.content .template .form input[type='checkbox']:checked + label::before {
	opacity: 1;
}
.content .template .form input[type='checkbox'] + label + label {
	display: inline-block;
	vertical-align: middle;
	padding-left: 10px;
	font-size: .813rem;
	color: var(--black);
    font-weight: 300;
    line-height: 1.25;
	text-transform: none
}

.content .template .form .lower {
	display: flex;
	flex-wrap: wrap;
}
.content .template .form .lower span {
	display: block;
	font-size: .813rem;
	font-style: normal;
	color: var(--black);
	min-width: 100%;
	align-self: flex-end;
}


.content.contact-us .template .form a[submit] span{
	color: white!important
}
.content.contact-us .template .form a[submit]:before{
	background-image: linear-gradient(323deg, #00b499, #7edcbe);
	border:none
}


@media(max-width: 991px) {
	.content .template .form h4,
	.content .template .form .h4 {
		margin-bottom: 60px;
	}
}

@media(max-width: 767px) {
	.content .template .form h4,
	.content .template .form .h4 {
		margin-bottom: 40px;
	}

	.content .template .form .row {
		margin: -10px;
	}
	.content .template .form .row > div {
		padding: 10px;
	}
}



.listing .pagination ul li a{
	color:#b4b5b5!important;
}
.listing .pagination ul li.active a{
	color:var(--blue)!important;
}



/************************************/
/********** THANK YOU PAGE **********/
/************************************/

.content.thank-you .template {
	padding: 100px 0;
	text-align: center;
}

.content.thank-you .icon {
	width: 75px;
	height: 75px;
	margin: 0 auto 40px;
}

.content.thank-you h1 {
	margin-bottom: .75em;
}

.content.thank-you .button {
	margin-top: 30px;
}


@media(max-width: 991px) {
	.content.thank-you .template {
		padding: 70px 0;
	}

	.content.thank-you .button {
		padding: 20px 25px;
	}
}

@media(max-width: 767px) {
	.content.thank-you .template {
		padding: 50px 0;
	}
	
}

.swal-footer{text-align:center}
.swal-button,
.swal-button:focus,
.swal-button:hover
{color:#fff;outline: none}

.listing .accordion .description .button{
	overflow: visible
}

.at-share-dock.atss.lock{display:none}
.book-fixed.lock{display:none}



.bg-lightgrey .apoios, .apoios{
	padding:0 50px 60px;
	/* background-color: #ffffff; */
	width: 100%;
}

.apoios .container::before{
	content: "";
	width: 100%;
	height: 1px;
	background-color: #323232;
	opacity: .11;
	display: block;
}

@media(min-width: 768px) {
	.apoios{
		padding-top: 0;
	}
	
	.apoios .container.membro{
		display: flex;
		flex-wrap: wrap;
	}
	.apoios .container > div{
		flex: 0 0 50%;
		margin: 40px auto 0;
	}

	.apoios .container.membro > div:last-of-type{
		text-align: right;
	}

	.apoios .container:not(.membro) > div{
		text-align: center;
	}

	.apoios .container.membro > div:first-of-type:has(+div) h4{
		text-align: left;
	}
	.apoios .container.membro > div h4{
		text-align: center;
	}

	.apoios .container.membro > div + div:last-of-type h4{
		text-align: right;
	}

	.bg-lightgrey .apoios{
		padding-bottom: 90px;
	}

	.apoios .container.membro .slider-apoio{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 40px;
	}

	.apoios .container.membro > div:first-of-type:has(+div) .slider-apoio{
		justify-content: left;
	}

	.apoios .container.membro > div + div:last-of-type .slider-apoio{
		justify-content: right;
	}
}

.apoios h4{
	text-align: center;
	font-family: var(--font-family4);
	font-size: 10px;
	text-transform: uppercase;
	color:#343434;
	margin-bottom:39px;
}

.apoios img{
	height: 60px;
	width: auto;
}

.apoios .slick-track{
	display: flex;
	text-align: center;
	margin: auto;
	    justify-content: center;
}

.apoios .slick-slide{
	float: none;
	width: auto;
	height: 60px;
	padding-left: 5px;
	padding-right: 5px
}

.apoios .slick-dots{
	bottom:0;
}
.apoios .slick-dotted.slick-slider {
	padding-bottom:50px
}

.apoios .slick-dots li button{
	background: #b2e8e0;
	width: 7px;
	height:7px;
	border-radius: 50%
}
.apoios .slick-dots li.slick-active button{
	background:#00b499
}


@media(max-width: 768px) {
	.body_content footer{
		margin-bottom: 46px
	}
	.body_content .book-fixed{bottom: 46px}

	.apoios img{
		height: 50px;
		width: auto;
	}

	.bg-lightgrey .apoios, .apoios {
		padding: 30px 25px;
	}

	.apoios h4{
		text-align: left;
		margin-bottom: 20px;
	}

	.apoios .container > div{
		margin-top: 25px;
	}
}


.btn_covid{
	position: fixed;
	right: 28px;
	top:auto;
	bottom:-5px;
	transform: translateY(0%);
	background: #b20e14;
	padding: 10px 15px ;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	text-align: center;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	width: 208px;
	height: 54px;
	z-index: 99
}

/* .btn_eleicoes{
	display: flex;
	align-items: center;
	padding-left: 13px;
	padding-right: 13px;
	position: fixed;
	right: 28px;
	top:auto;
	bottom:-5px;
	color: rgba(255,255,255,0.8);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	transform: translateY(0%);
	background: rgb(247,112,31);
    background: -moz-linear-gradient(45deg, rgba(247,112,31,1) 0%, rgba(249,217,98,1) 100%);
    background: -webkit-linear-gradient(
45deg, rgba(247,112,31,1) 0%,rgba(249,217,98,1) 100%);
    background: linear-gradient(
45deg, rgba(247,112,31,1) 0%,rgba(249,217,98,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7701f', endColorstr='#f9d962',GradientType=1 );
	padding-top: 10px;
	padding-bottom: 14px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	text-align: center;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	width: 208px;
	height: 54px;
	z-index: 99
} */

/* a:hover .btn_eleicoes{
	bottom:0px;
}

a:hover .btn_eleicoes.active{
	bottom:5px;
}

.btn_eleicoes img.icon{
	width: 30px;
	height: 30px;
	display: inline;
	vertical-align: middle;
	margin-right: 16px
}
	
.btn_eleicoes img.txt{
	width: 79px;
	height: 14px;
	margin-top: 0px;
	display: inline;
	vertical-align: middle;
	margin-right: 11px
} */

a:hover .btn_covid{
	bottom:0px;
}

a:hover .btn_covid.active{
	bottom:5px;
}

.btn_covid img.icon{
	width: 37px;
	height: 36px;
	display: inline;
	vertical-align: middle;
	margin-right: 6px
}

.btn_covid img.txt{
	width: 79px;
	height: 14px;
	margin-top: 0px;
	display: inline;
	vertical-align: middle;
	margin-right: 11px
}

.covid_conteudo .template:first-of-type{
	padding-top:0
}

.covid_conteudo .titulo a:hover{
	color: #323232
}



@media(max-width: 768px) {
	.btn_covid{
		position: fixed;
		right: 0px;
		top:auto;
		bottom:0px;
		transform: translateY(0%);
		background: #b20e14;
		padding: 10px 15px ;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		text-align: center;
		transition: var(--transition);
		-webkit-transition: var(--transition);
		width: 50%;
		z-index: 99;
		height: 50px;
	}

	/* .btn_eleicoes{
		display: flex;
		align-items: center;
		padding-left: 13px;
		padding-right: 13px;
		position: fixed;
		right: 0px;
		top:auto;
		bottom:0px;
		color: rgb(255,255,255,0.8);
		text-transform: uppercase;
		font-size: 12px;
		font-weight: bold;
		transform: translateY(0%);
		background: rgb(247,112,31);
    background: -moz-linear-gradient(45deg, rgba(247,112,31,1) 0%, rgba(249,217,98,1) 100%);
    background: -webkit-linear-gradient(
45deg, rgba(247,112,31,1) 0%,rgba(249,217,98,1) 100%);
    background: linear-gradient(
45deg, rgba(247,112,31,1) 0%,rgba(249,217,98,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7701f', endColorstr='#f9d962',GradientType=1 );
		padding: 10px 15px ;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		text-align: center;
		transition: var(--transition);
		-webkit-transition: var(--transition);
		width: 50%;
		z-index: 99;
		height: 50px;
	} */
	
	.body_content .btn_covid{bottom: 49px}

	
	.btn_covid img.icon{
		width:30px;
		height: 30px;
		display: inline;
		vertical-align: middle
	}


	.btn_covid img.txt{
		width:60px;
		height: 15px;
		margin-top: 0px;
		display: inline;
		vertical-align: middle;
		margin-right: 6px
	}

	.btn_eleicoes img.icon{
		width:24px;
		height: 30px;
		display: inline;
		vertical-align: middle;
		margin-right: 6px
	}

	.book-fixed {
		right:auto;
		left:0px;
		width: 50%;
	}
	
	.book-fixed::after{
		display: none;
		background: none
	}
	.book-fixed::before {
		content: "";
		background: url(/assets/img/icon_book.svg) no-repeat;
		width: 16px;
		height: 26px;
		display: inline;
		margin-right: 6px;
	}
}

@media(min-width: 768px) and (max-width: 768px) {
	.btn_eleicoes, .btn_covid, .book-fixed{
		width: 250px;
	}
	.book-fixed{left:auto;right:273px}
}

@media(min-width: 768px) and (max-width: 1024px) {

	.body_content .book-fixed{bottom: 49px}
}

.template-module table td{
	padding: 15px 10px;
	font-family: var(--font-family1);
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--black);
    margin: 1em 0;
	letter-spacing: 0;
}

.template-module table td a {
    font-family: var(--font-family1);
    color: var(--blue);
    display: inline;
    font-weight: bold;
    border-bottom: 1px solid currentColor;
}



.agenda_content .mx-auto .mistos{
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 60px;
}


.agenda_content .mx-auto .mistos > div{
	width: 100%;
	text-align: center;
	border:1px solid #eae9e9;
	padding: 20px 25px 25px;
}

.agenda_content .mx-auto .mistos > div .preco{
	margin-bottom: 10px;
}

.agenda_content .mx-auto .mistos > div + div{
	border-top:0
}

.agenda_content .mistos .btn_enviar {
	padding: 15px 0;
	width: 100%;
}

@media(min-width:768px){
	.agenda_content .mx-auto .mistos{
		flex-direction: row;
		justify-content: center;
	}

	.agenda_content .mx-auto .mistos > div{
		width: 50%;
	}

	.agenda_content .mx-auto .mistos > div + div{
		border-top:1px solid #eae9e9;
		border-left:0
	}

	.agenda_content .mistos .btn_enviar {
		padding: 20px 55px;
		width: auto;
	}
}

.agenda_content .mx-auto .mistos .title{
	font-weight: bold;
	font-size: 18px;
	color:#323232;
	margin: 0;
	margin-bottom: 13px;
}



.agenda_content .mistos .btn_enviar.enviar_inactivo{
	pointer-events: none;
	cursor: default;
    background: rgb(169,169,169); /* Old browsers */
    background: -moz-linear-gradient(45deg, rgba(169,169,169,1) 0%, rgba(211,211,211,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(169,169,169,1) 0%,rgba(211,211,211,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, rgba(169,169,169,1) 0%,rgba(211,211,211,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#A9A9A9', endColorstr='#D3D3D3',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}


body:has(.cky-consent-container:not(.cky-hide)) .cky-overlay {
    display: block;
    z-index:99 !important;
}
.cky-notice-btn-wrapper .cky-btn.cky-btn-reject{
display:none
}