/* GLOBAL CSS */

/* Colors and fonts deafults */

:root {
    --menu-font-family: "Montserrat", Sans-serif;
	
    /* -- normal -- */
    --menu-bg-color: #ffffff;
    --menu-item-color: #000000;
    --menu-item-hover-color: #000000;
	--menu-item-active-color: #000000;

    /* -- transparente -- */
    --menu-t-item-color: #000000;
    --menu-t-item-hover-color: #000000;
	--menu-t-item-active-color: #000000;

    --sub-bg-color: #000000;
    --sub-border-color: #000000;
    --sub-menu-item-color: #000000;
    --sub-menu-item-hover-color: #ffffff;
	--sub-menu-item-active-color: #ffffff;
    --sub-menu-item-bg-hover-active-color: #000000;

    /* -- sub menu mobile -- */
    --hamburguer-color-mobile: #000000;
    --menu-list-bg-color-mobile: #ffffff;
    --sub-menu-item-color-mobile: #000000;
  }

 
body {
	overflow-x: hidden;
	background: #ffffff;
	transition: all 0.8s ease-out;
	will-change: background;
}

.elementor-section:not(.elementor-element-edit-mode) {
	background-color: initial !important;
}
 
nav {
	z-index: 9999999;
}

.menu-toggle {
	font-size: 1.075rem;
	float: right;
}

a:focus,
.menu-toggle:focus {
    outline: none;
}

.wrap {
	max-width: 1400px !important;
	padding-top: 0 !important;	
}

/* --- contact form --- */

.wpcf7 form .wpcf7-response-output {
    border: none;
}

div.wpcf7-mail-sent-ok {
	color: #398f14;
}

div.wpcf7-mail-sent-ng {
	color: #9c0505;
}

div.wpcf7-spam-blocked {
	color: #ffa500;
}


/* --- menu ---*/

header ul, 
.menu-container ul {
    list-style: none;
}

.burger {
	display: flex;
	outline: none;
	height: 16px;
	width: 32px;
	border: 0px;
	padding: 0px;
	background: transparent;
	transition: all 250ms ease-out;
	cursor: pointer;
	margin: 24px;
	align-items: center;
	outline: none !important;
    background: transparent !important;
    position: fixed;
    z-index: 1000000;
}

.burger:before, .burger:after {
	content: '';
	width: 32px;
	height: 3px;
	position: absolute;
	background: #0D202C;
	transition: all 250ms ease-out;
	will-change: transform;
	
}

.burger.burger-white:before, .burger.burger-white:after {
	background: #ffffff;	
}

.burger:before {
	transform: translateY(-8px);
}b

.burger:after {
	transform: translateY(8px);
}

.active.burger:before {
	transform: rotate(45deg);
}

.active.burger:after {
	transform: rotate(-45deg);
} 

.site-side-header {
	position: fixed;
	width: 80px;
	height: 100%;
	background-color: #ffffff;
	z-index: 999999;
}

.site-side-header:before {
	content: '';
	position: absolute;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #CECECE;
}

.menu-container.open ~ .site-side-header .scroller {
    background-color: #C2BFBD;
}

.site-side-header .scroller {
	position: absolute;
	right: -1px;
	top: 0;
	width: 3px;
	height: 100px;
	background: linear-gradient(90deg, #D1203A 0%, #FF7114 100%);
	transition: all 0.2s ease-out;
}

.site-side-header .scroller.scroller-white {
	background-color: #ffffff;
}

.site-side-header .small-logo {
	position: absolute;
	bottom: 15px;
	left: 15px;
}

.site-side-header .small-logo path {
	fill: #0D202C;
	transition: all 0.2s ease-out;
}

.site-side-header .small-logo.small-logo-white path {
	fill: #ffffff;
}

.menu-container {
	position: fixed;
	background-color: #ffffff;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	opacity: 0;
	z-index: 1000000;
	padding-left: 100px;
	transition: opacity 0.8s ease-in-out 0s, width 0s ease-in-out 0.8s, height 0s ease-in-out 0.8s;
}

.menu-container > .row {
	height: 100%;
    align-items: end;
}

.menu-container.open {
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 1;
	transition: opacity 0.8s ease-in-out 0.1s, width 0s ease-in-out 0s, height 0s ease-in-out 0s;
}

.main-menu-header a {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 300;
	font-size: 66px;
	line-height: 80px;
	color: #FFFFFF;
	transition: none !important;
}

.main-menu-header li {
    margin-bottom: 50px;
}

.main-menu-header li:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,0.25);
}

.main-menu-header li:hover:after {
	background-color: #B4AEAA;
}

.main-menu-header ul {
	padding-left: 75px;
}

.menu-header-title {
	font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
	padding-left: 100px;
	margin-bottom: 35px;
}

.explore-menu-header ul,
.units-menu-header ul {
	padding-left: 100px;
	margin-bottom: 70px;
}

.explore-menu-header a, .units-menu-header a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 40px;
    color: #FFFFFF;
    transition: none !important;
}

.main-menu-header a:hover,
.explore-menu-header a:hover,
.units-menu-header a:hover {
	text-decoration: none !important;
	transition: none !important;
}

.main-menu-header li:hover a,
.explore-menu-header li:hover a,
.units-menu-header li:hover a {
	color: #B4AEAA;
}


.text-gradient-blue > div {
    background: -webkit-linear-gradient(0deg, #893EC9 0%, #69D8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
}

.text-gradient-orange > div {
    background: -webkit-linear-gradient(0deg, #D1203A 0%, #FF7114 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
}
























/* --- menu ---*/

.lang-item a {
	padding: 10px 5px !important;
}

.menu-header ul li.lang-item:after {
	content: '';
	height: 15px;
	width: 2px;
	position: relative;
	background-color: #ffffff;
	display: inline-block;
	top: 3px;
	left: 2px;
}

.menu-header ul li.lang-item:last-child:after {
	content: '';
	display: none;
}

.header-container {
    max-width: 1120px;
    margin: 0 auto;
    height: 100%;
}

.brand-logo {
    width: 130px;
    height: 40px;
    left: -25px;
    bottom: 70px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 99999;
    transform: rotate(-90deg);
}

.site-header .brand-logo-t {
	display: none;
}

.site-header.transparent .brand-logo-t {
	display: block;
}

.site-header .brand-logo-nt {
	display: block;
}

.site-header.transparent .brand-logo-nt {
	display: none;
}

.site-header {
    position: fixed !important;
    width: 100%;
    height: 75px;
    z-index: 99999999 !important;
    background: var(--menu-bg-color);
    -webkit-box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.25);
	transition: background-color 0.5s;
}

.site-header.transparent {
    background: transparent !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
	transition: background-color 0.5s;
}

.menu-header {
	height: 100%;
}

.menu-header .menu {
    padding: 0px;
    position: absolute;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100vh;
    justify-content: center;
    gap: 20px;
    margin: 0;
    transform: rotate(-90deg);
    transform-origin: top left;
    bottom: 0px;
    left: 30px;
}

.menu-header li {
    display: inline-block;
	text-align:center;
	position: relative;
}

.menu-header li a {
    display: inline-block;
	text-align:center;
    font-family: "Rubik", Sans-serif;
	font-weight: 400;
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
}

.menu-header li:hover a {
	font-weight: 800;
    background: -webkit-linear-gradient(90deg, #D1203A 0%, #FF7114 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-header a:not([href]):not([tabindex]):focus,
.menu-header a:not([href]):not([tabindex]):hover {
    color: var(--menu-item-color);
    text-decoration: none;
	
}

.menu-header a:not([href]):not([tabindex]) {
    color: var(--menu-item-color);
}

.site-header .menu-header li a {
    padding: 10px 15px;
}

.site-header .menu-header .sub-menu li a {
	width: 100%;
    display: block;
    padding: 10px 15px;
}

.site-header.transparent .menu-header li a {
    color: var(--menu-t-item-color);
}

.transparent .menu-header li a {
    color: var(--menu-item-color);
}

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

.sub-menu {
    display: none;
    position: absolute;
    min-width: 230px;
    width: 100%;
    left: 50%;
    transform: translate(-50%);
    margin: 0;
    background-color: var(--sub-bg-color);
    text-align: center;
    top: 53px;
    padding: 5px 0;
    border: 1px solid var(--sub-border-color);
}

.pll-parent-menu-item .sub-menu {
    min-width: 60px !important;
}

.menu-item-has-children.active > ul {
	display: block;
}

.sub-menu li {
	display: block;
	margin: 0;
}

.sub-menu li a {
    color: var(--sub-menu-item-color) !important;
}

.sub-menu li:hover a,
.sub-menu li.current-menu-item a {
    color: var(--sub-menu-item-hover-color) !important;
}

.sub-menu li:hover,
.sub-menu li.current-menu-item {
    background-color: var(--sub-menu-item-bg-hover-active-color);
}

.menu-header ul li.current-lang a:after,
.menu-header ul li.lang-item:hover a:after {
	content: '';
    width: calc( 100% - 15px );
    border-bottom: 1px solid #ffffff;
    position: absolute;
    bottom: 9px;
    left: 8px;
}

.article-share-links {
	display: inline-block;
}

.article-share-links a {
	margin: 0 8px;
	font-size: 20px;
	line-height: 20px;
	color: #E2B75A;
}

.article-share-links a:first-child {
	margin-left: 0;
}

.article-share-links a:last-child {
	margin-right: 0;
}
.article-share-links a i {
	vertical-align: middle;
}

/* -- Blog pagination -- */

.hp-articles .grid-pagination div {
	margin: 20px 8px;
	display: inline-block;
	color: #C1925A;
	font-family: "Montserrat", Sans-serif;
	font-weight: 400;
	font-size: 18px;
}

.hp-articles .grid-pagination div:hover{
	cursor: pointer;
}

.hp-articles .grid-pagination div.actual {
	color: #C1925A;
	font-weight: 600;
}

.hp-articles .grid-pagination div.actual:hover {
	cursor: pointer;
	pointer-events: none;
}

.grid-pagination {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.hp-articles.loading {
	opacity: 0.6;
}



/* GLOBAL CSS */

/* Extra large devices (large desktops, 1200px and down) */
@media (max-width: 1200px) { 
	
}

/* Large devices (desktops, 992px and downp) */
@media (max-width: 992px) {  	
	
	
	
	.menu-header ul li.lang-item {
		padding: 10px 5px;
	}
	
	.menu-header ul li.lang-item {
		display: inline-block;
	}
	
	.menu-header ul li.lang-item:after {
		content: '';
		height: 15px;
		width: 2px;
		position: relative;
		background-color: #E5BA57;
		display: inline-block;
		top: 3px;
		left: 8px;
	}

	.menu-header ul li.lang-item:last-child:after {
		content: '';
		display: none;
	}
	
	.sub-menu {
		top: 0px;
	}
	
	.sub-menu {
		position: relative;
	}
		
	.pll-parent-menu-item .sub-menu {
		background-color: #ffffff;
	}
	
	.mobile-brand-logo {
		display: block;
		width: 215px;
		height: 75px;
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		position: fixed;
		margin: 0px 20px;
	}
	
	.brand-logo {
		display: none !important;
	}
	
	.menu-header li {
		display: block;
		padding: 15px 15px;
	}

	.sub-menu > .menu-item > a:after {
		content: '';
		display: none;
	}
	
	.site-header,
	.site-header.transparent {
		background: var(--menu-bg-color) !important;
	}
	
	.menu-header > ul > li > a,
	.transparent .menu-header > ul > li > a {
		color: var(--menu-item-color) !important
	}
	
	.sub-menu li a {
		color: var(--sub-menu-item-color-mobile) !important;
	}
	
	.menu-header .menu {
		padding: 0;
		height: 0;
		position: relative;
		background-color: var(--menu-list-bg-color-mobile) !important;
		width: 100%;
		margin: 0px;
		top: 75px;
		overflow: hidden;
		text-align: center;
		transition: height 0.8s;
	}
	
	.sub-menu {
		border: none;
	}
	
	.menu-header.open .menu {
		height: calc(100vh + 15px);
		transition: height 0.8s;
		overflow: auto;
	}
		
	.mobile-menu-toggler {
		display: block;
		position: fixed;
		z-index: 9;
		right: 0;
		top: 0;
	}
	
	.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
		width: 35px;
		height: 1px;
		background-color: var(--hamburguer-color-mobile);
	}
	
	.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
		background-color: var(--hamburguer-color-mobile);
	}

	.hamburger {
		padding: 23px 15px;
	}
	
	button.hamburger {
		background: transparent;
		border: none;
		outline: none;
	}
	
	
	/* --- Blog mobile --- */
	
	.hp-articles .atualidade-grid .post-thumbnail {
		height: auto;
		min-height: 170px;
	}
	
	.hp-articles .container-article-title {
		height: auto;
		min-height: 170px;
	}
	
	.hp-articles .first-item {
		position: relative;
	}

	.hp-articles .first-item .post-thumbnail {
		height: 375px;
		width: 100%;
	}
	
	.hp-articles time {
		padding: 0px 0px 0px 0px;
	}
}

/* Medium devices (tablets, 768px and down) */
@media (max-width: 768px) { 
	
}

/* Small devices (landscape phones, 576px and down) */
@media (max-width: 576px) { 
	
}

