/* RESETER AND INITIAL CONFIG */
	@font-face {
		font-family: leagueSpartan;  
		src: url(../fonts/leaguespartan-bold.ttf);
	}

	:root {
	  --azul: rgba(36,47,64,1);
	  --dourado: rgba(187,156,105,1);
	  --cinza: rgba(218,218,218,1);
	  --cinzaFonts: rgba(244,244,244,1);
	  --cinzaEscuroFonts: rgba(74,74,74,1);
	  --roboto: 'Roboto', sans-serif;
	  --leagueSpartan: 'leagueSpartan', sans-serif;
	  --padding: 15px;
	}

	html, body{
		background-color: var(--cinza);
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		text-rendering: optimizeLegibility;
		perspective: none;
		height: auto;
	}

	a, a:visited, a:hover, a:active, a:focus {
		text-decoration: none;
		text-transform: none;	
		outline: none;
		color: inherit;
	}
	a{
		text-decoration: underline;
		
	}
	a:hover{
		color:var(--dourado);
		text-decoration: underline;
	}

	input[type="text"]:focus, 
	input[type="email"]:focus, 
	input[type="url"]:focus, 
	input[type="password"]:focus, 
	input[type="search"]:focus, 
	input[type="number"]:focus, 
	input[type="tel"]:focus, 
	input[type="range"]:focus, 
	input[type="date"]:focus, 
	input[type="month"]:focus, 
	input[type="week"]:focus, 
	input[type="time"]:focus, 
	input[type="datetime"]:focus, 
	input[type="datetime-local"]:focus, 
	input[type="color"]:focus, 
	textarea:focus{
		outline: none;
	}
/* END RESETER */

/* HELPERS */
	.floatRight{
		float: right;
	}
	.fullWidth {
		width: 100%;
	}
	.centerTxt{
		text-align: center;
	}
	.noPad{
		padding: 0;
	}
/* END HELPERS */

.setaTop{
		position: fixed;
		bottom: 80px;
		right: 20px;
		font-size: 20px;
		background-color: var(--dourado);
		color: #fff;
		width: 30px;
		height: 30px;
		z-index: 15;
		text-align: center;
		opacity: 0.5;
		cursor: pointer;
		transition: all 300ms ease-in;
		transform: scale(0.8);
	}

.setaTop:hover {
	opacity: 1;
	transform: scale(1);
}
@media (max-width: 768px) {
	.btnQuadV2{
		color: var(--azul);
	  border: 2px solid var(--azul);
	  padding: 7px 22px;  
	  font-family: var(--roboto);
	  font-weight: 500;
	  line-height: 36px;
	  font-size: 14px;
	  transition: all 300ms ease-out;
	  text-decoration: none;
	  text-align: center;
	}
	.btnQuadV2:hover{	
		color: #fff;
		background-color: var(--azul);
		text-decoration: none;

	}
	.socialIcons{
		height: 20px;
		width:50px;
		background-repeat: no-repeat;

	}

	.fbIcon{
		background-image: url("../img/icoFB.png"); ;
	}

	.fbIcon:hover{
		background-image: url("../img/icoFbH.png");
	}

	.googleIcon{
		background-image: url("../img/icog.png"); ;
	}

	.googleIcon:hover{
		background-image: url("../img/icoGH.png");
	}

	.youIcon{
		background-image: url("../img/icoYT.png"); ;
	}

	.youIcon:hover{
		background-image: url("../img/icoYT-H.png");
	}

	.instaIcon{
		background-image: url("../img/icoInsta.png"); ;
	}

	.instaIcon:hover{
		background-image: url("../img/icoInsta-H.png");
	}

	.site-footer .rowParceiros>div{
		min-height: 50px;
	}
	.search-field{display: none;}
	.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
	}
	#menu-menuprincipal{margin-top:20px;}
	.nav>li>a{
		font-size: 16px;
		margin-top: 10px;
	}
	.fixTamHoriz{max-width:100%;}
	.espacoHover{
		position: relative;
		max-width: 100%;
	}
	

	.espacoHover::before{
		content: "";
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height:100%;
		border: 4px solid var(--dourado);
		background-color:rgba(0,0,0,0.3);
		background-image:url("../img/lupa.png");
		background-repeat: no-repeat;
		background-position: center;
		opacity: 0;
		transition: all 300ms ease;
	}
	.espacoHover::after{
		content: attr(data-legenda);
		color: var(--dourado);
		position: absolute;
		bottom: 4px;
		left: 4px;
		height: 50px;
		width: calc(100% - 8px);
		background-color: rgba(0,0,0,0.2);
		font-family: var(--roboto);
		font-weight: 800;
		padding: 10px 20px;
		font-size: 18px;
		opacity: 0;
		transition: all 300ms ease;
	}

	.desktopVersion { display:none!important; }
	.mobileVersion { display:block }
	/* STARTERS */
		.setinha{ display: none!important; }
		.fa-long-arrow-right { display: inline-block!important; }
	/* END STARTERS */
	
	/* DEFAULTS */
		h1, h2, h3, h4, h5, h6 {
			font-family: var(--leagueSpartan);
			margin: 0;
		}
		
		h1 {
			font-size: 24px; 
			line-height: 36px;
			font-weight: bold;
			vertical-align: middle;
		}
		h2 {
			font-size: 20px;
			line-height: 30px;
			font-weight: bold;
			vertical-align: middle;
		}
		h4 {
			

		}

		p, a {
			font-family: var(--roboto);
			font-size: 15px;
			line-height: 20px;
			margin: 0;
		}
	/* END DEFAULTS */

	/* COMMONS */
		.hideMobile{ display:none!important; }
		.showMobile{ display:block; }
		.btnQuadOutlineAzul {
			border: 2px solid var(--azul)!important;
			color: var(--azul)!important;
			padding: 5px 10px!important;
			margin-bottom: 15px!important;
			display: inline-block!important;
			height: auto!important;
			font-weight: bold!important;
			text-decoration: none!important;
		}
		
		.btnQuadOutlineDourado {
			border: 2px solid var(--dourado);
			color: var(--dourado)!important;
			padding: 5px 15px;
			display: inline-block;
			height: auto;
			font-weight: bold;
			font-size: 14px;		
			text-decoration: none;
		}
		
			.btnQuadOutlineAzulH {
				border: 2px solid var(--azul)!important;
				color: var(--azul)!important;
				padding: 5px 10px!important;
				margin-bottom: 15px!important;
				display: inline-block!important;
				height: auto!important;
				font-weight: bold!important;
				text-decoration: none!important;
			}
			.btnQuadOutlineAzulH:after{
				content: "→";
		    position: absolute;
		    right: 25px;
			}
			.btnQuadOutlineDouradoH {
				border: 2px solid var(--dourado);
				color: var(--dourado)!important;
				padding: 5px 15px;
				display: inline-block;
				height: auto;
				font-weight: bold;
				font-size: 14px;		
				text-decoration: none;
			}
			.btnQuadOutlineDouradoH:after{
				content: "→";
		    position: absolute;
		    right: 25px;
			}
		.btnSetaDourado {
			color: var(--dourado)!important;
			font-size: 14px;
			line-height: 20px;
			text-decoration: none;
		}
		.btnSetaAzul {
			color: var(--azul)!important;
			font-size: 15px;
			line-height: 30px;
			text-decoration: none;
			font-family: var(--roboto);
			font-weight: 800;
		}
	/* END COMMONS */

	/* HEADER */
		.site-header {
			background-color: var(--azul);
			padding: var(--padding);
		}		
	/* END HEADER */

	/* NAV */
		.navbar {
			background-color: transparent;
			margin: 0;
			border: 0;
		}

		.navbar-collapse{
			border: 0;
			box-shadow: none;
		}

		.navbar-default .navbar-toggle {
			border-radius: 0;
			background-color: transparent;
			border-color: transparent;
			position: relative;
	    float: right;
		  padding: 10px 6px;
	    margin: 0;
	    transform: translateY(25%);
		}

		.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
			background-color: transparent;
		}

		.navbar-default .navbar-toggle .icon-bar{
			background-color: var(--cinza);
		}

		.nav>li {
		    float: none;
		    text-align: center;
		}
		
		.nav>li>a {
			color: var(--cinzaFonts);
			font-family: var(--leagueSpartan);
		}
	/* END NAV */

	/* FOOTER */
		.site-footer {
			background-color: var(--azul);
			padding-top: 15px;
			margin-top: 30px;
		}
		#menu-menufooter{
			margin: 0;
			margin-top: 15px;
		}
		#menu-menufooter li a{
			text-align: left;
			padding: 0;
			font-family: var(--roboto);
			font-size: 15px;
			font-weight: normal;
			line-height: 20px
		}
		.site-footer h5 {
			font-family: var(--roboto);
			font-size: 15px;
			font-weight: bold;
			line-height: 14px;
			color: var(--cinzaFonts);
			margin-bottom: 10px;
			margin-top: 30px;
		}
		.site-footer p{
			font-family: var(--roboto);
			font-weight: normal;
			font-size: 15px;
			line-height: 20px;
			color: var(--cinzaFonts);
		}

		.copyrights { font-size: 12px!important; margin-top: 30px!important;
    margin-bottom: 20px!important;}
	/* END FOOTER */
	
	/* HOMEPAGE */
		#myCarousel {
			display: none;
		}
		#mobileImage {
			display: block;
			width: 100%;
			height: 150px;
			background-position: center;
			background-size: cover;
		}
		.firstText h1 {
			margin-top: 20px;
			color: #242F40;
		}
		.atalhoEspacos{
			margin-top: 20px;
		}
		.proxEvento {
			margin-bottom:15px;

		}

		#btnvermaisfotos{
			width:100%; font-weight: 800; line-height:16px; height: 35px; 
		}

		.alignLeftOnMobile{
			text-align: left!important;
		}
		.proxEvento h2 {
			color: var(--dourado);
			margin: 0;
			border: 4px solid var(--dourado);
			padding: 5px 10px;
		}
		.detalheEventoDestaque{
			background-color: var(--azul);
			padding: 15px;
			margin-bottom: 15px;
		}
		.detalheEventoDestaque h4{
			font-family: var(--roboto);
			font-weight: normal;
			font-size: 12px;
			line-height: 11px;
			color: var(--cinzaFonts);
			margin-bottom: 10px;
		}
		.detalheEventoDestaque h2{			
			font-size: 20px;
			line-height: 30px;
			color: var(--dourado);
			margin-bottom: 20px;
		}
		.detalheEventoDestaque h5{			
			font-size: 15px;
			line-height: 12px;
			color: var(--cinzaFonts);
			font-family: var(--roboto);
			margin-bottom: 20px;
		}
		.detalheEventoDestaque .espaco_evento {
			font-size: 12px;
			line-height: 14px;
			color: var(--cinzaFonts);
			margin-bottom: 8px;
		}
		.detalheEventoDestaque .data_evento {
			font-size: 12px;
			line-height: 14px;
			color: var(--cinzaFonts);
			font-weight: bold;
		}
		.detalheEventoDestaque .hora_evento {
			font-size: 12px;
			line-height: 14px;
			color: var(--cinzaFonts);
			font-weight: bold;
			margin-bottom: 8px;
		}
		.detalheEventoDestaque .duracao_evento {
			font-size: 10px;
			line-height: 11px;
			color: var(--cinzaFonts);
		}
		.detalheEventoDestaque .classificacao_evento {
			font-size: 10px;
			line-height: 11px;
			color: var(--cinzaFonts);
			margin-bottom: 30px;
		}
		.detalheEventoDestaque .preco_evento {
			font-size: 15px;
			line-height: 20px;
			color:var(--dourado);
			font-family: var(--leagueSpartan);
			font-weight: bold;
			display: inline-block;
		}
		.removePaddingsMobi{margin-left: -15px;}
		.detalheEvento{
			background-color: #f4f4f4;
			padding: 15px;
			margin-bottom: 15px;
		}
		.detalheEvento h4{
			font-family: var(--roboto);
			font-weight: normal;
			font-size: 12px;
			line-height: 11px;
			color: var(--azul);
			margin-bottom: 10px;
		}
		.detalheEvento h2{			
			font-size: 20px;
			line-height: 30px;
			color: var(--dourado);
			margin-bottom: 20px;
		}
		.detalheEvento h5{			
			font-size: 12px;
			line-height: 12px;
			color: var(--azul);
			font-family: var(--roboto);
			margin-bottom: 20px;
		}
		.detalheEvento .espaco_evento {
			font-size: 12px;
			line-height: 14px;
			color: var(--azul);
			margin-bottom: 8px;
		}
		.detalheEvento .data_evento {
			font-size: 12px;
			line-height: 14px;
			color: var(--azul);
			font-weight: bold;
		}
		.detalheEvento .hora_evento {
			font-size: 12px;
			line-height: 14px;
			color: var(--azul);
			font-weight: bold;
			margin-bottom: 8px;
		}
		.detalheEvento .duracao_evento {
			font-size: 10px;
			line-height: 11px;
			color: var(--azul);
		}
		.detalheEvento .classificacao_evento {
			font-size: 10px;
			line-height: 11px;
			color: var(--azul);
			margin-bottom: 30px;
		}
		.detalheEvento .preco_evento {
			font-size: 15px;
			line-height: 20px;
			color:var(--dourado);
			font-family: var(--leagueSpartan);
			display: inline-block;
		}
	/* END HOMEPAGE */

	/* ALUGUER LISTAGEM */
		.containerAluguer .firstText {
			margin-bottom: 30px;	
		}
		.containerHomepage .firstText {
			margin-bottom: 15px;	
		}
		.infoEspaco {
			margin-left: 0px;
			margin-right: 0px;
			margin-bottom: 15px;
			position: relative;
		}
		.infoEspaco .tituloEspaco {
			border: 4px solid var(--dourado);
			color: var(--dourado);
			margin-bottom: 15px;
		}
		.infoEspaco .tituloEspaco h2 {
			padding-top: 5px;
		}
		.infoEspaco .imgEspaco {
			margin:0;
			padding:0!important;
		}
		.infoEspaco .imgEspaco .imgEsp{
			height: 200px;
			background-size:cover;
			background-position: center;
		}
		.infoEspaco .rightDetalheEspaco{
			background-color: var(--azul);
			padding: 20px 10px;
		}
		.infoEspaco .rightDetalheEspaco h2{ 
			font-size: 14px;
			line-height: 23px;
			color: var(--dourado);
			font-family: var(--roboto);
			font-weight: bold;
			margin-bottom: 5px;
		}
		.infoEspaco .rightDetalheEspaco p{ 
			font-size: 12px;
			line-height: 20px;
			color: var(--cinzaFonts);
			font-family: var(--roboto);
			font-weight: normal;
			margin-bottom: 10px;
		}
		.infoEspaco .rightDetalheEspaco ul {
			list-style: none;
			margin: 0;
			padding: 0;
			margin-bottom: 10px;
		}
		.infoEspaco .rightDetalheEspaco ul li{
			font-size: 12px;
			line-height: 20px;
			color: var(--cinzaFonts);
			font-family: var(--roboto);
			font-weight: normal;

		}
		.infoEspaco .rightDetalheEspaco ul li:before{
			content: "- ";
			font-size: 12px;
			line-height: 20px;
			color: var(--cinzaFonts);
			font-family: var(--roboto);
			font-weight: normal;
		}
		.infoEspaco .rightDetalheEspaco .btnSetaDourado{
			width: 80px;
			height: 30px;
			display: block;
			position: relative;
			left: calc(100% - 80px);
			text-decoration: none;
		}

		.capelaBgImg {
			padding: 20px 15px;
		}
		.capelaInfo {
			background-color: rgba(255,255,255,0.4);
			padding: 10px 5px;
		}
	/* END ALUGUER LISTAGEM */

	/* ALUGUER DETALHE */
		.containerBanner{
			display:none;
		}
		.detalheMobile{
			display:block;
		}
		.detalheMobile .imgEspacoTop{
			display: block;
			background-position: center; 
			background-size: cover; 
			width: 100%; height: 100px;
		}
		.detalheMobile .titEspaco{
			font-size: 24px;
			font-weight: bold;
			line-height: 36px;
			margin-left: 15px;
			margin-right: 15px;
			margin-top:30px;
			margin-bottom: 15px;
		}
		.containerDetalheEspaco .leftDetalheEspaco{
			background-color: var(--dourado);
			padding: 15px;
			
		}
		.containerDetalheEspaco .leftDetalheEspaco h2 {
			font-size: 14px;
			line-height: 23px;
			font-weight: bold;
			font-family: var(--roboto);
			color: var(--azul);
			margin-bottom: 5px;
		}
		.containerDetalheEspaco .leftDetalheEspaco p {
			font-size: 12px;
			line-height: 23px;
			font-weight: normal;
			font-family: var(--roboto);
			color: var(--cinzaFonts);
			margin-bottom: 30px;
		}
		.containerDetalheEspaco .leftDetalheEspaco ul{
			margin: 0; padding: 0;
			list-style: none;
			margin-bottom: 30px;
		}
		.containerDetalheEspaco .leftDetalheEspaco ul li {
			font-size: 12px;
			line-height: 23px;
			font-weight: normal;
			font-family: var(--roboto);
			color: var(--cinzaFonts);
		}
		.containerDetalheEspaco .leftDetalheEspaco ul li:before{
			content: "- ";
			font-size: 12px;
			line-height: 23px;
			font-weight: normal;
			font-family: var(--roboto);
			color: var(--cinzaFonts);
		}
		.containerDetalheEspaco .leftDetalheEspaco h2, 
		.containerDetalheEspaco .leftDetalheEspaco p,
		.containerDetalheEspaco .leftDetalheEspaco ul,
		.containerDetalheEspaco .leftDetalheEspaco div{
			display: none;
		}
		.containerDetalheEspaco .leftDetalheEspaco h2:first-of-type {
			display: block;
		}
		.containerDetalheEspaco .leftDetalheEspaco p:first-of-type {
			display: block;
			margin-bottom:0px;
		}

		#btnVerMaisCaracteristicas{
			display:block;
			width: 100%;
			height: 40px;
			background-color: var(--dourado);
			font-family: var(--roboto);
			font-size: 14px;
			font-weight: bold;
			color: var(--cinzaFonts);
			text-align: center;
			cursor: pointer;
			text-decoration: none;
		}
		.imgsEspacos{
			margin: 0!important;
			padding: 5px 15px!important;
		}
		.btnReservarDesktop{
			display:none!important;
		}
		.btnReservarMobile{
			display: block!important;
			margin-top: 15px;
		}
		.verMaisFotos{
			display: none;
		}
		.rowRefs{
			margin-top: 30px!important;
		}
		.rowRefs h3{
			border: 4px solid var(--dourado);
			font-family: var(--leagueSpartan);
			font-weight: bold;
			color: var(--dourado);
			padding: 10px 10px 5px 10px;
			margin-bottom: 15px;
		}
	/* END ALUGUER DETALHE */

	/* AGENDA */
		.imgDetalheEv{
			transform: translateY(0px)!important;
		}
	/* END AGENDA*/

	/* FORM */
		.inputContainer .lblTxt {
			width: 100%;
			margin-top: 20px;
			margin-bottom: 0px;
			font-size: 12px;
			line-height: 14px;
			font-family: var(--roboto);
			font-weight: normal;
		}

		.inputContainer .lblSelect {
		
			margin-top: 20px;
			margin-bottom: 0px;
			font-size: 12px;
			line-height: 14px;
			font-family: var(--roboto);
			font-weight: normal;
		}

		.inputContainer input[type="text"] {
			width: 100%;
			border: 0px solid transparent;
			height: 40px;
			border-radius: 0;
		}
	/* END FORM */

	/* SERVIÇOS */
		.mobileSpacing{
			margin-top: 15px;
			margin-bottom: 10px;
		}
		.blocoServ {
			margin-bottom: 15px;
		}
		.centerMobile{ text-align: center; margin-top: 15px; }

		.blocoServ .imagemServ{
			width: 100%; 
			height: 200px; 
			background-position: center; 
			background-size: cover;
		}

		.blocoServ .conteudoServ{
			background-color: var(--dourado);
			padding: 15px;
			color: var(--cinzaFonts);
		}
		.blocoServ .conteudoServ h5{
			font-size: 12px;
			line-height: 11px;
			font-family: var(--roboto);
		}
		.blocoServ .conteudoServ h2{
			font-size: 20px;
			line-height: 11px;
			font-family: var(--leagueSpartan);
			font-weight: bold;
			font-size: 20px;
			color: var(--azul);
			margin-top:20px;
		}
		.blocoServ .conteudoServ p strong{
			display: block;
			font-size: 15px;
			margin-top: 10px;
			margin-bottom: 5px;
		}
		.blocoServ ul {
			list-style: none;
			font-size: 15px;
			line-height: 18px;
			font-family: var(--roboto);
			padding: 0;
			margin: 0;
			margin-bottom: 15px;
		}
		.blocoServ ul li:before{
			content:"- ";
		}
	/* END SERVIÇOS */

	/* EVENTO DETELHE */
		.rightDetalheEventoM{
			background-color: var(--azul);
			color: var(--cinzaFonts);			
    	padding: 15px;
    	margin-bottom: 15px;

		}
		.rightDetalheEventoM h1{
			font-family: var(--leagueSpartan);
			font-size: 20px;
			line-height: 30px;
			color: var(--dourado);
			margin-bottom: 5px;
		}
		.rightDetalheEventoM h2{
			font-family: var(--roboto);
			font-size: 10px;
			line-height: 11px;
			margin-top: 10px;
			margin-bottom: 15px;
		}
		.rightDetalheEventoM h3{
			font-family: var(--roboto);
			font-size: 12px;
			line-height: 23px;
			margin-bottom: 15px;
		}
		.rightDetalheEventoM .espaco_evento{
			font-family: var(--roboto);
			font-size: 12px;
			line-height: 14px;
			margin-bottom: 5px;
		}
		.rightDetalheEventoM .data_hora_evento{
			font-family: var(--roboto);
			font-size: 12px;
			line-height: 14px;
			font-weight: bold;
		}
		.rightDetalheEventoM .duracao_classificacao_evento{
			font-family: var(--roboto);
			font-size: 10px;
			line-height: 11px;
		}
		.hora_do_evento{ margin-bottom: 5px; }
		.classificao_do_evento{ margin-bottom: 15px; }
		.rightDetalheEventoM .preco_evento{
			font-family: var(--leagueSpartan);
			font-size: 20px;
			color: var(--dourado);
			line-height: 30px;
			font-weight: bold;
			margin-bottom: 15px;
		}
		.rightDetalheEventoM .duvidas_evento{
			display: block;
			font-size: 9px;
			line-height: 17px;
			font-family: var(--roboto);
			margin-top: 5px;
			margin-bottom: 30px;
		}
		.rightDetalheEventoM h4{
			font-family: var(--roboto);
			font-size: 14px;
			color: var(--dourado);
			font-weight: bold;
			line-height: 23px;
		}
		.rightDetalheEventoM .descricao_evento p strong{
			margin-top: 10px;
			display: block;
		}

		.rightDetalheEventoM .partilhar_evento {
			margin-top: 15px;
			margin-bottom: 10px;
			color: var(--dourado);
			font-weight: bold;
		}
		.rightDetalheEventoM a .socialIcons {
			height: 30px;
			margin-bottom: 10px;
			text-align: center;
	    vertical-align: middle;
	    padding: 0;
		}
		.customHrEvento{
			width: 100%;
			height: 2px; 
			background-color: var(--dourado);
			margin-bottom: 15px;
		}

		.promotoresEvento{
			margin-top: 15px;
			margin-bottom: 15px;
		}
		.imgEvento {
			margin-bottom: 15px;
		}
	/* END EVENTO DETALHE*/



	/* DETALHE PORTFOLIO */
		.containerDetalhePortefolio .rightDetalheEvento{
			background-color: var(--dourado);
			color: var(--cinzaFonts);
			margin-top: 15px;
			padding-top: 10px;
			padding-bottom: 10px;
			padding: 15px;
		}

		.containerDetalhePortefolio .rightDetalheEvento .row div *{
			display:none;
		}

		.containerDetalhePortefolio .rightDetalheEvento .btnOpenDescricao{ 
			display: block!important; 
			color: var(--cinzaFonts);
			font-family: var(--leagueSpartan);
			font-size: 14px;
			font-weight: bold;
			line-height: 45px;
			
			text-align: center;
		}
		.containerDetalhePortefolio .rightDetalheEvento .btnOpenDescricao:after{
			content:" +";
		}
		.hidePlusSign:after{
			content:""!important;
		}
		.showElement{ display: block!important; }
		.containerDetalhePortefolio .rightDetalheEvento h1{
			font-family: var(--leagueSpartan);
			font-size: 20px;
			line-height: 30px;
			color: var(--azul);
			margin-bottom: 5px;
		}
		.containerDetalhePortefolio .rightDetalheEvento h2{
			font-family: var(--roboto);
			font-size: 10px;
			line-height: 11px;
			margin-top: 10px;
			margin-bottom: 15px;
		}
		.containerDetalhePortefolio .rightDetalheEvento h3{
			font-family: var(--roboto);
			font-size: 12px;
			line-height: 23px;
			margin-bottom: 15px;
		}
		.containerDetalhePortefolio .rightDetalheEvento .espaco_evento{
			font-family: var(--roboto);
			font-size: 12px;
			line-height: 14px;
			margin-bottom: 5px;
		}
		.containerDetalhePortefolio .rightDetalheEvento .data_hora_evento{
			font-family: var(--roboto);
			font-size: 12px;
			line-height: 14px;
			font-weight: bold;
		}
		.containerDetalhePortefolio .rightDetalheEvento .duracao_classificacao_evento{
			font-family: var(--roboto);
			font-size: 10px;
			line-height: 11px;
		}
		.hora_do_evento{ margin-bottom: 5px; }
		.classificao_do_evento{ margin-bottom: 15px; }
		.containerDetalhePortefolio .rightDetalheEvento .preco_evento{
			font-family: var(--leagueSpartan);
			font-size: 20px;
			color: var(--azul);
			line-height: 30px;
			font-weight: bold;
			margin-bottom: 15px;
		}
		.containerDetalhePortefolio .rightDetalheEvento .duvidas_evento{
			display: block;
			font-size: 9px;
			line-height: 17px;
			font-family: var(--roboto);
			margin-top: 5px;
			margin-bottom: 30px;
		}
		.containerDetalhePortefolio .rightDetalheEvento h4{
			font-family: var(--roboto);
			font-size: 14px;
			color: var(--azul);
			font-weight: bold;
			line-height: 23px;
		}
		.containerDetalhePortefolio .rightDetalheEvento .descricao_evento p strong{
			margin-top: 10px;
			display: block;
		}

		.containerDetalhePortefolio .rightDetalheEvento .partilhar_evento {
			margin-top: 15px;
			margin-bottom: 10px;
			color: var(--azul);
			font-weight: bold;
		}
		.containerDetalhePortefolio .rightDetalheEvento a .socialIcons {
			height: 30px;
			margin-bottom: 10px;
			text-align: center;
	    vertical-align: middle;
	    padding: 0;
		}
		.containerDetalhePortefolio .imgEvento, .containerDetalhePortefolio .promotoresEvento .custom_row_evento{
			margin-left: -15px; margin-right: -15px;
		}
		.custom_row_evento h3 { font-size: 20px;  }
		.containerDetalhePortefolio .promotoresEvento{
			margin-top: 15px; margin-bottom: 30px;}
	/* END DETALHE PORTFOLIO */

	#formPedidoContacto{
		margin-left: -15px;
		margin-right: -15px;
	}

	.selectMobile .dropItem {
		display: none;
		width: 100%;
		height: 40px;
		line-height: 40px;
		text-align: center;
		vertical-align: center;
		background-color: var(--azul);
		font-family: var(--roboto);
		color: var(--cinzaFonts);

	}
	.selectMobile{
		margin-bottom: 15px;
		position: relative;
	}
	.selectMobile::after{
		content: "↓";
		position: absolute;
		right: 20px;
		top: 9px;
		color:var(--cinzaFonts);
		pointer-events: none;
	}

	.selectMobile .itemVisible{
		display: block;

	}
	.selectMobile .itemActive {
		display: block;
		color: var(--dourado);
		font-weight: bold;
	}

}
@media (min-width: 769px) and (max-width: 1025px) {
	.infoListEventoSingle h2 { font-size: 20px!important; }
}
@media (min-width: 769px) {
	.desktopVersion { display:block!important; }
	.mobileVersion { display:none }
	.hideMobile{ display:block; }
		.showMobile{ display:none!important; }
	.containerFlex{
		display: flex;
	}

	.clear:after {
	    clear: both;
	    display: table;
	    content: "";
	}


	::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	    color:    var(--cinzaFonts);
	    font-family: var(--roboto);
	}
	:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	   color:    var(--cinzaFonts);
	   font-family: var(--roboto);
	   opacity:  1;
	}
	::-moz-placeholder { /* Mozilla Firefox 19+ */
	   color:    var(--cinzaFonts);
	   font-family: var(--roboto);
	   opacity:  1;
	}
	:-ms-input-placeholder { /* Internet Explorer 10-11 */
	   color:    var(--cinzaFonts);
	   font-family: var(--roboto);
	}
	::-ms-input-placeholder { /* Microsoft Edge */
	   color:    var(--cinzaFonts);
	   font-family: var(--roboto);
	}

	.bg{
		background-position: top center; 
		background-size: cover; 
		background-repeat: no-repeat;
		padding-top: 30px;
	}

	h1{
		font-family: var(--leagueSpartan);
		font-weight: bold;
		/*color: var(--cinzaFonts);
		line-height: 85px;
		font-size: 57px;*/
		margin: 0;
	}

	h2{
		font-family: var(--leagueSpartan);
		font-weight: bold;
		color: var(--cinzaEscuroFonts);
		font-size: 26px;
		line-height: 38px;
		margin: 0;
	}

	p{
		font-family: var(--roboto);
		font-size: 17px;
		line-height: 23px;
		color: var(--cinzaEscuroFonts);
	}

	.containerGeral{
		padding-top: 35px;
		padding-bottom: 75px;
	}

	.centerTxt{
		text-align: center;
	}

	/*.modal {
	  text-align: center;
	}

	.modal-dialog {
	  display: inline-block;
	  text-align: left;
	  vertical-align: middle;
	}*/

	.modal-backdrop.in {
	    opacity: 0.9;
	    background-color: var(--azul);
	}

	.modal-body {
	    position: relative;
	    padding: 0;
	}

	.show{
		display:flex!important;
		align-items: center;
	}

	.ekko-lightbox .ekko-lightbox-container {
	    /*overflow: hidden !important;*/
	    /*-webkit-transition: width 300ms ease-in-out, height 300ms ease-in-out !important;
	    -moz-transition: width 300ms ease-in-out, height 300ms ease-in-out !important;
	    -o-transition: width 300ms ease-in-out, height 300ms ease-in-out !important;
	    transition: width 300ms ease-in-out, height 300ms ease-in-out !important;*/
	}

	.ekko-lightbox-nav-overlay{
	    position: absolute;
	    top: 0;
	    height: 100%;
	    width: 100%;
	    display: flex;
	    align-items: center;
	}

	.ekko-lightbox-nav-overlay a{
		text-align: center;
	}

	.ekko-lightbox-nav-overlay a:first-child{
		position: absolute;
	    left: -100px;
	}

	.ekko-lightbox-nav-overlay a:last-child{
		position: absolute;
	    right: -100px;
	}

	.ekko-lightbox-nav-overlay a span{
		font-size: 50px;
		color: var(--cinzaFonts);
		height: 100px;
		line-height: 100px;
		width: 50px;
	}

	.ekko-lightbox-nav-overlay a:not(:first-child) span{
		float: right;
	}

	.ekko-lightbox-nav-overlay a:focus, .ekko-lightbox-nav-overlay a:hover {
	    text-decoration: none;
	}

	#thumbnailsDiv .current{
	    border: 3px solid var(--dourado);
	}
	.ekko-lightbox-container{
		display: flex;
    justify-content: center;
    align-items: baseline;
	}
	.ekko-lightbox-item, .ekko-lightbox-nav-overlay{
		max-width: 85%;
	}

	.modal-content{
		background-color: transparent;
		border: 0;
		box-shadow: none;
	}
	/** 
		BUTÃO GENÉRICO
	**/

	.containerPagServicos .ulPagServicos{
		margin-top: 40px;
		margin-bottom: 40px;
		margin-left: 0;
	    display: flex;
	    justify-content: center;
	}

	.containerPagServicos .ulPagServicos li{
		min-width: 130px;
		text-align: center;
	}

	.containerPagServicos .ulPagServicos li:not(:last-child){
		margin-right: 25px;
	}

	.containerPagServicos .ulPagServicos li a{
		font-family: var(--roboto);
		color: var(--azul);
		font-size: 14px;
		line-height: 16px;
		background-color: transparent;
	    border: 2px solid var(--azul);
	    border-radius: 0px;
	    padding: 7px 0;
	}

	.containerPagServicos .ulPagServicos li a:hover, .containerPagServicos .ulPagServicos li.active a{
		border: 2px solid var(--dourado);
		color: var(--dourado);
		background-color: transparent;
	}

	.btnBorder {

	}

	.btnBorder a {
		border: none;
	}

	/** HEADER **/
	.navbar {
		margin-bottom: 0;
	}

	.navbar-default {
		background-color: var(--azul);
		border-color: transparent;
		border-radius: 0px;
	}

	#lupaHeader{
		color: var(--dourado);
		font-size: 18px;
	    line-height: 40px;
	    cursor: pointer;
	}

	.search-field, input[type="search"], input[type="search"]:focus{
		background-color: transparent;
	    border: transparent;
	    border-bottom: 1px solid var(--dourado);
	    border-radius: 0;
	    color: var(--cinzaFonts);
	}


	/** TEMPLATE PÁGINA SIMPLES **/
	.carousel-indicators {
	    bottom: 0;
	    top: calc(50% - 40px);
	    /* left: 0; */
	    /* right: auto; */
	    width: 20px;
	    /* margin-left: 30px; */
	    text-align: center;
	    /* float: right; */
	    position: absolute;
	    right: 20%;
	    left: auto;
	}

	.carousel-indicators li {
	    float:none!important;
	    display: block;
	    margin-bottom: 10px;
	    border-radius: 0;
	    border-color: var(--dourado);
	}
	.carousel-indicators li.active {
	    margin-bottom:10px!important;
	    background-color: var(--dourado);
	}

	.containerFluidHomepage .carousel-caption{
			right: 20%;
	    left: 0%;
	    padding-bottom: 30px;
	    position: absolute;
	    top: 20px;
	    z-index: 10;
	    padding-top: 20px;
	    padding-bottom: 20px;
	    color: #fff;
	    text-align: left;
	    text-shadow: 0 1px 2px rgba(0,0,0,.6);
	    margin-left: calc(50% - 585px);
	}

	.containerFluidHomepage .carousel-caption p{
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 38px;
		line-height: 56px;
		color: var(--cinzaFonts);
	}

	.containerFluidHomepage .bottomEspacoElems{
		position: absolute; 
		width: 100%; 
		bottom: 0; 
		height: 60px;
	}

	.containerFluidHomepage .espacoHomepage{
		padding: 13px 0 16px 17px; 
		/*background-color: var(--dourado);*/
		background-color: rgba(187, 156, 105, 0.7);
	  position: relative;
	  top: -10px;
	  transition: all 200ms cubic-bezier(.07,.76,.5,1.4);
	  height: 115px;
	}

	.containerFluidHomepage .espacoHomepage:hover{
		top: -35px;
	}

	.containerFluidHomepage .espacoHomepage:hover .saberMaisEspaco{
		display: block;
	}

	.containerFluidHomepage .espacoHomepage h3{
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 18px;
		line-height: 31px;
		color: var(--azul);
		margin: 0;

	}

	.containerFluidHomepage .espacoHomepage .saberMaisEspaco{
		display: block;
		margin-top: 5px;
		color: var(--azul);
		font-weight: 700;
		font-size: 12px;
	}

	.containerFluidHomepage .espacoHomepage .saberMaisEspaco a{
		font-family: var(--roboto);
		font-size: 12px;
		line-height: 16px;
		color: var(--cinzaFonts);
		text-decoration: none;
	}


	.containerPagSimples h2{
		margin-bottom: 15px;
	}

	.containerPagSimples h2:not(:first-child){
		margin-top: 55px;
	}

	.current-menu-item a{
		color: var(--dourado)!important;
	}

	/** TEMPLATE HOMEPAGE **/
	.containerHomepage .firstText{
		margin-bottom: 50px;
	}

	.containerHomepage .firstText h1{
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 38px;
		line-height: 56px;
		text-align: center;
		color: var(--azul);
		margin: 0;
		margin-bottom: 18px;
	}

	.containerHomepage .firstText p{
		font-family: var(--roboto);
		font-size: 17px;
		line-height: 23px;
		color: var(--azul);
		margin: 0;
	}

	.containerHomepage .proxEvento{
		border: 4px solid var(--dourado);
		padding: 8px 16px 36px 28px;
		z-index: 2;
		transform: translate3d(15px, 0px, 0px);
	}

	.containerHomepage .proxEvento h2{
		color: var(--dourado);
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 38px;
		line-height: 56px;
	}

	.containerHomepage .rightDetalheEvento{
		background-color: var(--azul);
		padding: 35px 25px;
		transform: translate3d(15px, -350px, 0px);
		margin-bottom: -250px;
		width:360px;
	}

	.containerHomepage .rightDetalheEvento h4{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 16px;
		margin-top: 0px;
	}

	.containerHomepage .rightDetalheEvento h2{
		color: var(--dourado);
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 26px;
		line-height: 30px;
	}

	.containerHomepage .rightDetalheEvento h5{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-size: 17px;
		line-height: 23px;
	}	

	.containerHomepage .rightDetalheEvento .espaco_evento{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 16px;
		margin-top: 25px;
	}

	.containerHomepage .rightDetalheEvento .data_evento{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-weight: bold;
		font-size: 14px;
		line-height: 16px;
		margin: 0;
	}

	.containerHomepage .rightDetalheEvento .duracao_evento, .containerHomepage .rightDetalheEvento .classificacao_evento{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-size: 10px;
		line-height: 11px;
		margin: 0;
	}
	.containerHomepage .rightDetalheEvento .duracao_evento{
		margin-top: 5px;
	}
	.containerHomepage .rightDetalheEvento .preco_evento{
		color: var(--dourado);
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 21px;
		line-height: 31px;
		margin-top: 15px;
		margin-bottom: 45px;
	}

	.containerHomepage .rightDetalheEvento .preco_evento sup{
		font-size: 12px;
		line-height: 14px;
		top: -0.8em;
	}

	.containerHomepage .rightDetalheEvento .botao_evento{
		color: var(--dourado);
		border: 2px solid var(--dourado);
		padding: 7px 22px;
		margin-top: 45px;
		text-decoration: none;
		font-family: var(--roboto);
		font-weight: 500;
		line-height: 16px;
		font-size: 14px;
		transition: all 300ms ease-in;
	}

	.containerHomepage .rightDetalheEvento .botao_evento:hover{
		background-color: var(--dourado);
		color: var(--azul);
	}

	.containerHomepage .rightDetalheEvento .verDetalheEvento{
		color: var(--cinzaFonts);
		float: right;
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 16px;
		text-decoration: none;
	}

	.containerHomepage .rightDetalheEvento .verDetalheEvento:hover{
		color: var(--dourado);
	}

	 .irParaAgenda{
		margin-top: 30px;
	}

	 .irParaAgenda a{
		color: var(--azul);
		font-family: var(--roboto);
		font-size: 17px;
		line-height: 20px;
		text-decoration: none;
		font-weight: bold;
	}

	/** TEMPLATE PAGINA ALUGUER **/

	.capelaInfo h2{
		color: #f4f4f4;
		font-size: 38px;
		padding-top: 45px;
		font-weight: bold;
		line-height: 56px;
	}
	.capelaInfo p{
		color: #f4f4f4;
		font-size: 14px;
		line-height: 23px;
		font-weight: normal;
	}

	.containerAluguer{
		padding-bottom: 0px;
	}

	.containerAluguer .firstText {
		margin-bottom: 50px;
	}
	.containerAluguer .firstText h1{
		font-size: 38px;
		line-height: 56px;
		font-family: var(--leagueSpartan);
		font-weight: bold;
		color: var(--azul);
		margin-bottom: 18px;
	}

	.containerAluguer .firstText p{
		font-size: 17px;
		line-height: 23px;
	}

	.containerAluguer .infoEspaco{
		margin-top: 0px;
		margin-bottom: 120px;
	}

	.inputContainerBTN{
		text-align: center;
		margin-bottom: 75px;
	}

	.inputContainer input[type="text"] {
		width: 100%;
		height: 40px!important;
		padding: 5px;
		padding-left:15px;
		padding-right:15px;
		border: none;
		margin-bottom: 30px;
		border-radius: 0;
	}
	.inputContainer label {
		font-size: 17px;
		line-height: 20px;
		font-weight: normal;
		font-family: var(--roboto);
	}

	.inputContainer textarea {
		width: 100%;
		padding: 5px;
		padding-left:15px;
		padding-right:15px;
		border: none;
		margin-bottom: 30px;
		border-radius: 0;
		max-width: 100%;
	}

	.inputContainer input[type=checkbox] {
		border: none;
		border-radius: 0;
	}

	/*******/

	.containerPedidoContacto{
		padding-bottom: 0px;
		padding-top: 50px;
	}

	.containerPedidoContacto .firstText {
		margin-bottom: 50px;
	}
	.containerPedidoContacto .firstText h1{
		font-size: 38px;
		line-height: 56px;
		font-family: var(--leagueSpartan);
		font-weight: bold;
		color: var(--azul);
		margin-bottom: 18px;
	}

	.containerPedidoContacto .firstText p{
		font-size: 17px;
		line-height: 23px;
	}

	.containerPedidoContacto .infoEspaco{
		margin-top: 0px;
		margin-bottom: 120px;
	}

	/*.containerAluguer .infoEspaco:not(:first-child){
		margin-top: 130px;
	}*/

	.imgEsp {
		display: block;
		width: 750px;
		height: 400px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}


	.containerAluguer .tituloEspaco{
		z-index: 2;
	}

	.containerAluguer .tituloEspaco h2{
		border: 4px solid var(--dourado);
		padding-top: 8px ;
		padding-bottom: 20px;
		padding-left: 28px;
		padding-right: 28px;
		padding: 8px 16px 36px 28px;
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 38px;
		line-height: 56px;
		color: var(--dourado);
		
		
	}

	.containerAluguer .tituloEspaco .nomeEspacoDir{
		text-align:right;
	}

	.containerAluguer .rightDetalheEspaco{
		padding: 30px 25px;
		background-color: var(--azul);
	    margin-top: -90%;
	    overflow: auto;
	}

	.containerAluguer .rightDetalheEspaco h2{
		margin: 0;
		color: var(--dourado);
		font-family: var(--roboto);
		font-weight: bold;
		font-size: 17px;
		line-height: 23px;
	}

	.containerAluguer .imgEspaco{
		margin-top: -3%;
	}

	.containerAluguer .rightDetalheEspaco p{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 20px;
		margin-top: 10px;
		margin-bottom: 20px;
	}

	.containerAluguer .rightDetalheEspaco ul{
		margin-left: 0;
		padding-left: 0;
		list-style: none;
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 20px;
		margin-top: 10px;
		margin-bottom: 20px;
	}

	.containerAluguer .rightDetalheEspaco ul li:before {
		content: "- ";
	}

	.containerAluguer .rightDetalheEspaco a{
		text-decoration: none;
		float: right;
		font-family: var(--roboto);
		color: var(--dourado);
		font-size: 14px;
		line-height: 16px;
	}

	.containerAluguer .rightDetalheEspaco a:hover{
		color: var(--cinzaFonts);
	}


	/** TEMPLATE DETALHE ESPACOS **/
	.containerBanner h1{
		color: var(--cinzaFonts);
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 38px;
		line-height: 56px;
	}

	.containerDetalheEspaco{
		padding-top: 45px;
		padding-bottom: 75px;
	}

	.containerDetalheEspaco .leftDetalheEspaco{
		background-color: var(--dourado);
		padding-left: 50px;
		padding-right: 50px;
		padding-top: 25px;
		padding-bottom: 25px;
		overflow: auto;
		z-index: 19;
    position: relative;
    height:805px!important;
	}

	.containerDetalheEspaco .leftDetalheEspaco h2{
		font-family: var(--roboto);
		color: var(--azul);
		font-size: 17px;
		line-height: 23px;
		font-weight: bold;
		margin-bottom: 5px;
	}

	.containerDetalheEspaco .leftDetalheEspaco h2:not(:first-child){
		margin-top: 16px;
	}

	.containerDetalheEspaco .leftDetalheEspaco p{
		font-family: var(--roboto);
		color: var(--cinzaFonts);
		font-size: 14px;
		line-height: 23px;
		overflow: auto;
	}

	.containerDetalheEspaco .leftDetalheEspaco ul{
		margin-left: 0;
		padding-left: 0;
		list-style: none;
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 23px;
		color: var(--cinzaFonts);
	}

	.containerDetalheEspaco .leftDetalheEspaco ul li:before{
		content: '- ';
	}

	.containerDetalheEspaco .leftDetalheEspaco p a{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		/*float: left;*/
		text-decoration: underline;
		display: inline-block;
		/*width: 100%;*/
		margin-top: 0px;
	}
	.customScroll ul li a{
		font-weight: 800;
	}
	.customScroll ul li a:hover {
		color:white;
	}
	/*.containerDetalheEspaco .leftDetalheEspaco .downCondicoes{
		margin-bottom: 30px;
	}*/

	


	.containerDetalheEspaco .leftDetalheEspaco .btnReservar{
		padding: 7px 8px;
		color: var(--azul);
		border: 2px solid var(--azul);
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 16px;
		font-weight: 500;
		text-decoration: none;
		transition: all 300ms ease;
	    display: inline-block;
		margin-top: 20px;
	}
	.containerDetalheEspaco .leftDetalheEspaco .btnReservar:hover {
		color : var(--dourado);
		background-color: var(--azul);
		text-decoration: none;
	}

	.rowRefs h3{
		color: var(--dourado);
		font-family: var(--leagueSpartan);	
		font-size: 38px;	
		font-weight: bold;	
		line-height: 56px;
		margin: 0;
		margin-bottom: -5px;
	}

	.rowRefs .customHrEspaco{
		height: 4px;
		width: 100%;
		background-color: var(--dourado);
	}

	.rowRefs p{
		color: var(--azul);
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 23px;
		margin-top: 25px;
	}

	.rowRefs .myBtnServicos {
		margin: 0 auto;
		margin-top: 46px;
		margin-bottom: 25px;
		padding-top: 8px;
		padding-bottom: 8px;
		padding-left: 16px;
		border: 0;
		border-radius: 0px;
		color: var(--cinzaFonts);
	    font-family: var(--roboto);
	    font-weight: bold;
	    font-size: 14px;
	    line-height: 23px;
	    -webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		background-color: var(--azul);
		background-position: top right;
		background-repeat: no-repeat;
		background-image: url('../img/setabaixo2.png');
		text-decoration: none;
	}

	/*#todos div a img { border:4px solid transparent; transition:all 300ms ease;}
	#todos div a img:hover { border:4px solid var(--dourado); }
*/
	.rowRefs .myBtnServicos[aria-expanded="true"]{
		background-image: url('../img/setacima.png');
		transition: 0.3s;
	}

	.rowRefs .option {
		margin-top: -27px;
		border-radius: 0;
	    background-color: var(--cinzaFonts);
	    border: 0;
	}

	.rowRefs .dropdown .dropdown-menu {
	    -webkit-transition: all 0.3s;
	    -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	    -o-transition: all 0.3s;
	    transition: all 0.3s;
	    max-height: 200px;
	    display: block;
	    overflow: hidden;
	    overflow-y: scroll;
	    opacity: 0;
	}

	.rowRefs .dropdown.open .dropdown-menu {
	    max-height: 200px;
	    opacity: 1;
	}

	.rowRefs .option li a{
		color: var(--azul);
		font-family: var(--roboto);
	    font-size: 14px;
	    line-height: 16px;
	}

	.rowRefs .option li.active a, .rowRefs .option li:hover a{
		color: var(--dourado);
		background-color: var(--cinzaFonts);
	}

	.rowRefs .select button {
		width:100%; 
		text-align:left;
	}

	.rowRefs .select:last-child>.btn {
		border-top-left-radius:5px; 
		border-bottom-left-radius:5px;
	}

	.rowRefs .selected {
		padding-right:10px;
	}

	.rowRefs .option {
		width:100%;
	}

	/** TEMPLATE PAGINA SERVIÇOS **/
	.containerPagServicos h1{
		font-size: 38px;
		line-height: 56px;
		color: var(--azul);
	}

	.containerPagServicos > div > div p{
		color: var(--azul);
	}
	.containerPostServicos:nth-child(-n+2){
		margin-top: 0px;
	}
	.containerPostServicos{
		border: none;
		margin-top: 30px;
		
	}

	.containerPostServicos:nth-child(n+3) {
		
	}

	.containerPostServicos:hover .border-nice{
		opacity: 1;
	}
	.imgsEspacos:hover .border-nice-dourado {
		opacity: 1;
	}
	.rightDetalheEspaco:hover .border-nice-dourado{
		opacity: 1;
		border: 5px solid var(--dourado);
	}
	.evDest:hover .border-nice-dourado{
		opacity: 1;

	}
	.rightDetalheEspaco{
		position: relative;
	}
	.border-nice{
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		border: 5px solid var(--azul);
		z-index: 2;
		pointer-events: none;
		opacity: 0;
	}

	.border-nice-dourado{
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		border: 5px solid var(--dourado);
		z-index: 2;
		pointer-events: none;
		opacity: 0;
	}


	.conteudoPostServicos{
		background-color: var(--dourado);
		padding: 15px 35px 90px 35px;
		min-height: 505px;
	}

	.conteudoPostServicos p, .conteudoPostServicos ul{
		color: var(--cinzaFonts)!important;
		line-height: 23px;
		font-size: 14px;
		font-family: var(--roboto);
	}

	.conteudoPostServicos h4{
		font-weight: bold;
		color: var(--cinzaFonts);
	}

	.conteudoPostServicos h4:not(:first-child){
		margin-top: 17px;
	}

	.conteudoPostServicos ul{
		margin-left: 0;
	    padding-left: 0px;
	    list-style: none;
	    margin-bottom: 0px;
	    color: var(--cinzaFonts)!important;
	}

	.conteudoPostServicos ul li:before{
		content: "- ";
	}

	.conteudoPostServicos h5{
		font-family: var(--roboto);
		color: var(--cinzaFonts);
		font-size: 14px;
		line-height: 23px;
		margin: 0;
	}

	.conteudoPostServicos h3{
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 26px;
		line-height: 38px;
		color: var(--azul);
		margin-top: 0;
	}

	.conteudoPostServicos a{
		color: var(--azul);
		font-family: var(--roboto);
		font-weight: bold;
		font-size: 14px;
		line-height: 16px;
		text-decoration: none;
		margin-top: 25px;
		position: absolute;
		right: 35px;
		bottom: 30px;
	}

	/** PAGINA DETALHE EVENTO **/
	.containerDetalheEvento{
		padding-top: 100px;
		padding-bottom: 75px;
		position: relative;
	}
	.containerDetalheEvento .rightDetalheEvento{
		padding:30px;
		background-color: var(--azul);
	}

	.containerDetalheEvento .rightDetalheEvento h1{
		color: var(--dourado);
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 26px;
		line-height: 30px;
		margin: 0;
		margin-bottom: 5px;
	}

	.containerDetalheEvento .rightDetalheEvento h3{
		font-family: var(--roboto);
		font-size: 17px;
		line-height: 23px;
		color: var(--cinzaFonts);
		font-weight: normal;
		margin: 0;
	}

	.containerDetalheEvento .rightDetalheEvento h2{
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 16px;
		color: var(--cinzaFonts);
		font-weight: normal;
		margin: 0;
		margin-bottom: 12px;
	}

	.containerDetalheEvento .rightDetalheEvento .data_hora_evento{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-weight: bold;
		font-size: 14px;
		line-height: 16px;
		margin: 0;
	}

	.containerDetalheEvento .rightDetalheEvento .duracao_classificacao_evento{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-weight: normal;
		font-size: 10px;
		line-height: 11px;
		margin: 0;
		margin-top: 5px;
	}

	.containerDetalheEvento .rightDetalheEvento .espaco_evento{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-weight: normal;
		font-size: 14px;
		line-height: 16px;
		margin: 0;
		margin-top: 35px;
		margin-bottom: 10px;
	}

	.containerDetalheEvento .rightDetalheEvento .preco_evento{
		color: var(--dourado);
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 21px;
		line-height: 31px;
		margin-top: 20px;
		margin-bottom: 15px;
	}

	.containerDetalheEvento .rightDetalheEvento .preco_evento sup{
		font-size: 12px;
		line-height: 14px;
		font-family: var(--roboto);
		font-weight: bold;
		top: -1em;
	}

	.containerDetalheEvento .rightDetalheEvento .botao_evento{
		color: var(--dourado);
		border: 2px solid var(--dourado);
		padding: 7px 22px;
		margin-top: 45px;
		text-decoration: none;
		font-family: var(--roboto);
		font-weight: 500;
		line-height: 16px;
		font-size: 14px;
	}

	.containerDetalheEvento .rightDetalheEvento .botao_evento:hover{
		background-color: var(--dourado);
	  color: var(--cinzaFonts);
	}

	.pedidoContacto .botao_evento{
		color: var(--dourado);
		border: 2px solid var(--dourado);
		padding: 7px 22px;
		text-decoration: none;
		font-family: var(--roboto);
		font-weight: 500;
		line-height: 16px;
		font-size: 14px;
		border-radius: 0;
		background-color: transparent;
		transition: all 300ms ease-in;
	}

	.pedidoContacto .botao_evento:hover{
		background-color: var(--dourado);
	  color: var(--cinzaFonts);
	  border: 2px solid var(--dourado);
	}

	.containerDetalheEvento .rightDetalheEvento .duvidas_evento{
		margin-top: 10px;
		margin-bottom: 25px;
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-weight: normal;
		font-size: 9px;
		line-height: 17px;
		text-decoration: none;
		display: block;
	}

	.containerDetalheEvento .rightDetalheEvento h4{
		font-family: var(--roboto);
		font-weight: bold;
		font-size: 17px;
		line-height: 23px;
		color: var(--dourado);
	}

	.containerDetalheEvento .rightDetalheEvento .descricao_evento p{
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 23px;
		color: var(--cinzaFonts);
		margin-bottom: 10px;
	}

	.containerDetalheEvento .rightDetalheEvento .partilhar_evento{
		color: var(--dourado);
		font-size: 12px;
		font-family: var(--roboto);
		line-height: 14px;
		font-weight: bold;
		margin-top: 23px;
		margin-bottom: 0px;
	}

	.galeriaEvento {
		margin-top: 25px;
		text-align: center;
	}

	.custom_row_evento{
		margin-left: -15px;
	}

	.galeriaEvento .vidEvento{
		background-position: center;
		background-repeat: no-repeat;
		height: 145px;
		display: flex;
		align-items: center;
		text-align: center;
	}

	.galeriaEvento .vidEvento img{
		width: 20%;
		margin: 0 auto;
	}

	.galeriaEvento .imgEvento{
		height: auto;
		margin-bottom: 15px;
	}

	.promotoresEvento{
		/*margin-top: 40px;*/
	}

	.promotoresEvento h3{
		color: var(--azul);
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 21px;
		line-height: 20px;
		margin-top: 30px;
	}

	.customHrEvento{
		width: 100%;
		height: 2px; 
		background-color: var(--dourado);
		margin-bottom: 15px;
	}

	.containerBaixoDetalheEvento{
		padding-bottom: 40px;
		text-align: center;
	}

	.containerBaixoDetalheEvento a{
		color: var(--azul);
		font-family: var(--roboto);
		font-weight: bold;
		font-size: 17px;
		line-height: 20px;
		text-decoration: none;
	}

	/** TEMPLATE PAGINA DETALHE PORTEFOLIOS **/
	.containerDetalhePortefolio .rightDetalheEvento{
		background-color: var(--dourado);
	}

	.containerDetalhePortefolio .rightDetalheEvento h1, .containerDetalhePortefolio .rightDetalheEvento h4{
		color: var(--azul);
	}

	.containerDetalhePortefolio .rightDetalheEvento .partilhar_evento{
		color: var(--azul);
	}

	.containerDetalhePortefolio .galeriaEvento .imgEvento {
		height: 170px;
	}

	.containerDetalhePortefolio .rightDetalheEvento .fbIcon:hover {
		background-image: url(../img/fb_azul.png);
	}

	.containerDetalhePortefolio .rightDetalheEvento .googleIcon:hover {
	    background-image: url(../img/g_azul.png);
	}

	/** TEMPLATE PAGINA AGENDA **/
	.containerPagAgenda h1{
		font-family: var(--leagueSpartan);
		font-weight: bold;
		color: var(--azul);
		font-size: 38px;
		line-height: 56px;
	}

	.containerPagAgenda .centerTxt{
		margin-bottom: 45px;
	}

	.containerPagAgenda .centerTxt p{
		font-family: var(--roboto);
		font-size: 17px;
		line-height: 23px;
		color: var(--azul);
	}

	.containerPagAgenda .proxEvento{
		border: 4px solid var(--dourado);
	    padding: 8px 26px 36px 22px;
	    z-index: 2;
	}

	.containerPagAgenda .proxEvento h2{
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 38px;
		line-height: 56px;
		color: var(--dourado);
	}

	.containerPagAgenda .divImg{
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		transform: translateY(-30px);
	}

	.containerPagAgenda .rightDetalheEvento{
		background-color: var(--azul);
		padding: 35px 25px;
		transform: translateY(-350px);
		margin-bottom: -40px;
	}

	.containerPagAgenda .rightDetalheEvento h4{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 16px;
	}

	.containerPagAgenda .rightDetalheEvento h2{
		color: var(--dourado);
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 26px;
		line-height: 30px;
	}

	.containerPagAgenda .rightDetalheEvento h5{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-size: 17px;
		line-height: 23px;
	}	

	.containerPagAgenda .rightDetalheEvento .espaco_evento{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 16px;
		margin-top: 25px;
	}

	.containerPagAgenda .rightDetalheEvento .data_evento{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-weight: bold;
		font-size: 14px;
		line-height: 16px;
		margin: 0;
	}

	.containerPagAgenda .rightDetalheEvento .duracao_evento, .containerPagAgenda .rightDetalheEvento .classificacao_evento{
		color: var(--cinzaFonts);
		font-family: var(--roboto);
		font-size: 10px;
		line-height: 11px;
		margin: 0;
	}

	.containerPagAgenda .rightDetalheEvento .preco_evento{
		color: var(--dourado);
		font-family: var(--leagueSpartan);
		font-weight: bold;
		font-size: 21px;
		line-height: 31px;
		margin-top: 15px;
		margin-bottom: 45px;
	}

	.containerPagAgenda .rightDetalheEvento .preco_evento sup{
		font-size: 12px;
		line-height: 14px;
		top: -0.8em;
	}

	.containerPagAgenda .rightDetalheEvento .botao_evento{
		color: var(--dourado);
		border: 2px solid var(--dourado);
		padding: 7px 22px;
		margin-top: 45px;
		text-decoration: none;
		font-family: var(--roboto);
		font-weight: 500;
		line-height: 16px;
		font-size: 14px;
	}

	.containerPagAgenda .rightDetalheEvento .botao_evento:hover{
		background-color: var(--dourado);
		color: var(--cinzaFonts);
	}

	.containerPagAgenda .rightDetalheEvento .verDetalheEvento{
		color: var(--cinzaFonts);
		float: right;
		font-family: var(--roboto);
		font-size: 14px;
		line-height: 16px;
		text-decoration: none;
	}

	.containerPagAgenda .rightDetalheEvento .verDetalheEvento:hover{
		color: var(--dourado);
	}

	.containerPagAgenda .eventoSingle, .containerHomepage .eventoSingle{
		/*float: left;*/
	    margin-top: -230px;
	}

	.listEventoSingle:nth-child(-n+3){
		margin-top: 0px;
	}

	.listEventoSingle {
		background-color: var(--cinzaFonts);
		font-family: var(--roboto);
		color: var(--azul);
		margin-top: 30px;
		position: relative;
	}

	.infoListEventoSingle{
		padding-top: 7px;
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 25px;
		min-height: 390px;
	}

	.infoListEventoSingle h4{
		font-size: 14px;
		line-height: 16px;
		margin-bottom: 16px;
	}

	.infoListEventoSingle .titListEventoSingle{
		min-height: 60px;
	}

	.infoListEventoSingle .captionListEventoSingle{
		min-height: 46px;
	}

	.infoListEventoSingle h2{
		font-family: var(--leagueSpartan);
		font-weight: bold; 
		color: var(--dourado);
		font-size: 26px;
		line-height: 30px;
	}

	.infoListEventoSingle h3{
		font-size: 17px;
		line-height: 23px;
		margin-top: 7px;
	}

	.infoListEventoSingle .espaco_evento{
		color: var(--azul);
		font-size: 14px;
		line-height: 16px;
		margin-top: 10px;
		margin-bottom: 5px;
	}

	.infoListEventoSingle .data_evento{
		color: var(--azul);
		font-size: 14px;
		line-height: 20px;
		font-weight: bold;
		margin: 0;
	}

	.infoListEventoSingle .duracao_evento{
		color: var(--azul);
		font-size: 10px;
		line-height: 11px;
		margin-top: 5px;
		margin-bottom: 0;
	}

	.infoListEventoSingle .classificacao_evento{
		color: var(--azul);
		font-size: 10px;
		line-height: 11px;
		margin-top: 5px;
		margin-bottom: 0;
	}

	.infoListEventoSingle .preco_evento{
		color: var(--dourado);
		font-size: 21px;
		line-height: 31px;
		margin-top: 15px;
		margin-bottom: 15px;
		font-weight: bold;
	}

	.infoListEventoSingle .preco_evento sup{
		font-size: 12px;
		line-height: 14px;
	}

	.infoListEventoSingle .botao_evento{
		border: 2px solid var(--azul);
		color: var(--azul);
		font-size: 14px;
		line-height: 16px;
		font-weight: 500;
		padding: 7px 23px;
		text-decoration: none;
		transition: all 300ms ease-out;
	}

	.infoListEventoSingle .botao_evento:hover{
		background-color: var(--azul);
		color: var(--cinzaFonts);
	}

	.infoListEventoSingle .verDetalheEvento{
		float: right;
		font-size: 14px;
		line-height: 16px;
		color: var(--dourado);
		text-decoration: none;
	}


	.infoListEventoSingle .verDetalheEvento:hover{
		color: var(--azul);
	}

	/** FOOTER **/
	.site-footer{
		background-color: var(--azul);
		padding: 30px 0;
	}

	.site-footer h5{
		line-height: 14px;
		font-size: 12px;
		font-weight: bold;
		font-family: var(--roboto);
		color: var(--cinzaFonts);
		margin-bottom: 10px;
	}

	.site-footer div h5:first-child{
		margin-top: 75px;
	}

	.site-footer p, .site-footer p a{
		color: var(--cinzaFonts);
		font-size: 12px;
		line-height: 20px;
		font-family: var(--roboto);
		margin: 0;
		text-decoration: none;
	}

	.site-footer p a:hover{
		color: var(--dourado);
	}

	.site-footer ul {
		margin-left: 0;
		margin-top: 20px;
	}

	.site-footer ul li a{
		padding: 0;
		font-family: var(--roboto);
		font-size: 12px;
		line-height: 25px; text-decoration: none;
	}

	.site-footer .rowParceiros>div{
		min-height: 50px;
	}

	.site-footer .copyrights{
		margin-top: 45px;
	}

	.site-footer .txtPeqFooter{
		font-size: 10px;
		line-height: 11px;
		font-family: var(--roboto);
	}

	.site-footer .txtPeqFooterNews{
		margin-bottom: 20px;
		text-decoration: none;
	}
	.site-footer .txtPeqFooterNews:hover{
	
		color: var(--dourado);
	}

	#formNewsletter{
		margin-top: 10px;
		margin-bottom: 5px;
	}

	#formNewsletter .form-group{
		float: left;
	}

	.socialIcons{
		height: 20px;
		background-repeat: no-repeat;
		margin-right:5px;
	}

	.fbIcon{
		background-image: url("../img/icoFB.png"); ;
	}

	.fbIcon:hover{
		background-image: url("../img/icoFbH.png");
	}

	.googleIcon{
		background-image: url("../img/icog.png"); ;
	}

	.googleIcon:hover{
		background-image: url("../img/icoGH.png");
	}

	.youIcon{
		background-image: url("../img/icoYT.png"); ;
	}

	.youIcon:hover{
		background-image: url("../img/icoYT-H.png");
	}

	.instaIcon{
		background-image: url("../img/icoInsta.png"); ;
	}

	.instaIcon:hover{
		background-image: url("../img/icoInsta-H.png");
	}

	#piIcon{
		float: left;
		margin-top: 30px;
		margin-left: -20px;
	}

	.site-footer #inputFooter{
	    background-color: var(--cinza);
	    border-radius: 0px;
	    border: 0px;
	    height: 31px;
	    color: var(--azul);
	}

	.site-footer .btnFooter{
		background-color: var(--dourado);
		color: var(--cinzaFonts);
	    border-radius: 0px;
	    border: 0px;
	    font-family: var(--leagueSpartan);
	    font-weight: bold;
	    font-size: 10px;
	    line-height: 15px;
	    padding: 8px 11px;
	    text-decoration: none;
	}

	.sombra-bottom {
		-webkit-box-shadow: 0px 6px 10px -3px rgba(0,0,0,0.5);
		box-shadow: 0px 6px 10px -3px rgba(0,0,0,0.5);
	}
	.sombra-top {
		-webkit-box-shadow: 0px -6px 10px -3px rgba(0,0,0,0.5);
		box-shadow: 0px -6px 10px -3px rgba(0,0,0,0.5);
	}

	.sombra {
		-webkit-box-shadow: 0 10px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
		box-shadow: 0 10px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	}

	.site-header {
		transition: all 200ms ease-in;
	}
	.custom-logo {
		transition: all 300ms ease-out;
	}
	.right-items {
		transition: all 300ms ease-out;
	}

	.fixedPos {
		position: fixed;
		z-index: 100;
		top: 0;	left: 0;
		width: 100%;
	}
	.fixMargin {
		margin-top: 82px;
	}
	.fixLogo {
		width: 80px;
		
	}
	.fixAltura {

		padding-top: 7px!important;
		padding-bottom: 5px!important;
	}

	.fixTranslateY {
		transform: translateY(0%)!important;
	}

	.espacoHomepage {
		transition: all 200ms ease-out;

	}
	.saberMaisEspaco {
		text-decoration: none;
		text-transform: none;
		color: #fff;
		width: 110px;
	}
	.saberMaisEspaco:hover, .saberMaisEspaco:focus {
		text-decoration: none!important;
		color: #fff;
	}

	.margTop-50{
		margin-top: 50px;
	}

	.floatRight{ float:right; }

	.btnQuadV1{
		color: var(--dourado)!important;
	  border: 2px solid var(--dourado);
	  padding: 7px 22px;  
	  font-family: var(--roboto);
	  font-weight: 500;
	  line-height: 20px;
	  font-size: 14px;
	  transition: all 300ms ease-out;
	  display:inline-block;
		text-decoration: none;
		text-align: center;
	}
	.btnQuadV1:hover{	
		color: var(--azul)!important;
		background-color: var(--dourado);
		text-decoration: none;
	}

	.btnQuadV2{
		color: var(--azul);
	  border: 2px solid var(--azul);
	  padding: 7px 22px;  
	  font-family: var(--roboto);
	  font-weight: 500;
	  line-height: 36px;
	  font-size: 14px;
	  transition: all 300ms ease-out;
	  text-decoration: none;
	  text-align: center;
	}
	.btnQuadV2:hover{	
		color: #fff;
		background-color: var(--azul);
		text-decoration: none;
	}

	.btnSetaV1, .btnSetaV1:visited, .btnSetaV1:focus, .btnSetaV1:hover{
		position: relative;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-right: 0px;
		transition: all 300ms ease-out;
		display:inline-block;
		line-height: 15px;
		color: var(--azul);
		font-family: var(--roboto);
		font-size: 14px;
		font-weight: 700;
		text-decoration: none;
	}
	.btnSetaV1:hover { padding-right: 25px; }
	.btnSetaV1 .setinha {
		display: block; 
		opacity: 0; 
		background-color: var(--azul); 
		height: 2px; 
		width: 0px; 
		top: calc(50% - 1px);
	  position: absolute; 
	  left: calc(100% - 20px); 
	  transition: all 300ms ease-out;
	}
	.btnSetaV1 .setinha::before{
		content: ""; 
		height: 2px; 
		width: 6px; 
		position: absolute; 
		top: 0px; 
		right: 1px; 
		background-color: var(--azul);
	  transform: rotate(0deg); 
	  transform-origin: 100% 50%;
	}
	.btnSetaV1 .setinha::after {
		content: ""; 
		height: 2px;	
		width: 6px;	
		position: absolute;	
		top: 0;	right: 1px;	
		background-color: var(--azul);
		transform: rotate(0deg); 
		transform-origin: 100% 50%;
	}
	.btnSetaV1:hover .setinha{
		transition: opacity 300ms ease 300ms, width 300ms ease 300ms;					
		width: 16px;
		opacity:1;
	}
	.btnSetaV1:hover .setinha::before{
		transition: transform 300ms ease 600ms;
		transform: rotate(35deg);
	}
	.btnSetaV1:hover .setinha::after{
		transition: transform 300ms ease 600ms;
		transform: rotate(-35deg);
	}

	.btnSetaV2, .btnSetaV2:visited, .btnSetaV2:focus, .btnSetaV2:hover{
		position: relative;
		float:right;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-right: 0px;
		transition: all 300ms ease-out;
		display:inline-block;
		line-height: 16px;
		color: var(--dourado)!important;
		font-family: var(--roboto);
		font-size: 14px;
		font-weight: 700;text-decoration: none;
	}
	.btnSetaV2:hover { padding-right: 25px; }
	.btnSetaV2 .setinha {
		display: block; 
		opacity: 0; 
		background-color: var(--dourado); 
		height: 2px; 
		width: 0px; 
		top: calc(50% - 1px);
	  position: absolute; 
	  left: calc(100% - 20px); 
	  transition: all 300ms ease-out;
	}
	.btnSetaV2 .setinha::before{
		content: ""; 
		height: 2px; 
		width: 6px; 
		position: absolute; 
		top: 0px; 
		right: 1px; 
		background-color: var(--dourado);
	  transform: rotate(0deg); 
	  transform-origin: 100% 50%;
	}
	.btnSetaV2 .setinha::after {
		content: ""; 
		height: 2px;	
		width: 6px;	
		position: absolute;	
		top: 0;	right: 1px;	
		background-color: var(--dourado);
		transform: rotate(0deg); 
		transform-origin: 100% 50%;
	}
	.btnSetaV2:hover .setinha{
		transition: opacity 300ms ease 300ms, width 300ms ease 300ms;					
		width: 16px;
		opacity:1;
	}
	.btnSetaV2:hover .setinha::before{
		transition: transform 300ms ease 600ms;
		transform: rotate(35deg);
	}
	.btnSetaV2:hover .setinha::after{
		transition: transform 300ms ease 600ms;
		transform: rotate(-35deg);
	}

	.btnSetaV3, .btnSetaV3:visited, .btnSetaV3:focus, .btnSetaV3:hover{
		position: relative;
		float:right;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-right: 0px;
		transition: all 300ms ease-out;
		display:inline-block;
		line-height: 18px;
		color: var(--dourado)!important;
		font-family: var(--roboto);
		font-size: 14px;
		font-weight: 700;text-decoration: none;
	}
	.btnSetaV3:hover { padding-right: 30px; }
	.btnSetaV3 .setinha {
		display: block; 
		opacity: 0; 
		background-color: var(--dourado); 
		height: 2px; 
		width: 0px; 
		top: calc(50% - 1px);
	  position: absolute; 
	  left: calc(100% - 25px); 
	  transition: all 300ms ease-out;
	}
	.btnSetaV3 .setinha::before{
		content: ""; 
		height: 2px; 
		width: 6px; 
		position: absolute; 
		top: 0px; 
		right: 1px; 
		background-color: var(--dourado);
	  transform: rotate(0deg); 
	  transform-origin: 100% 50%;
	}
	.btnSetaV3 .setinha::after {
		content: ""; 
		height: 2px;	
		width: 6px;	
		position: absolute;	
		top: 0;	right: 1px;	
		background-color: var(--dourado);
		transform: rotate(0deg); 
		transform-origin: 100% 50%;
	}
	.btnSetaV3:hover .setinha{
		transition: opacity 300ms ease 300ms, width 300ms ease 300ms;					
		width: 16px;
		opacity:1;
	}
	.btnSetaV3:hover .setinha::before{
		transition: transform 300ms ease 600ms;
		transform: rotate(35deg);
	}
	.btnSetaV3:hover .setinha::after{
		transition: transform 300ms ease 600ms;
		transform: rotate(-35deg);
	}
	#btnvermaisfotos{
		display:inline; color:var(--azul); font-weight: 800; line-height:16px; height: 35px; margin-left: -15px; font-family: var(--roboto);
	}

	.btnSetinha {
		position: relative;
		padding-top: 5px;
		padding-bottom: 5px;
		padding-right: 0px;
		transition: all 300ms ease-out;
		cursor:pointer;
	}
	.btnSetinha .setinha {
		display: block; opacity: 0; background-color: var(--azul); height: 2px; width: 0px; top: calc(50% - 1px);
	  position: absolute; left: calc(100% - 37px); transition: all 300ms ease 0ms;
	}
	.btnSetinha .setinha::before{
		content: ""; height: 2px; width: 6px; position: absolute; top: 0; right: 1px; background-color: var(--azul);
	  transform: rotate(0deg); transform-origin: 100% 50%;
	}
	.btnSetinha .setinha::after {
		content: ""; height: 2px;	width: 6px;	position: absolute;	top: 0;	right: 1px;	background-color: var(--azul);
		transform: rotate(0deg); transform-origin: 100% 50%;
	}
	.btnSetinha:hover { padding-right: 43px; }
	.btnSetinha:hover .setinha{
		transition: opacity 300ms ease 300ms, width 300ms ease 300ms;					
		width: 16px;
		opacity:1;
	}
	.btnSetinha:hover .setinha::before{
		transition: transform 300ms ease 600ms;
		transform: rotate(35deg);
	}
	.btnSetinha:hover .setinha::after{
		transition: transform 300ms ease 600ms;
		transform: rotate(-35deg);
	}
	.btnSetinhaHome{
		position: relative;
		padding-top: 5px;
		padding-bottom: 5px;
		padding-right: 0px;
		transition: all 300ms ease-in;
	}
	.btnSetinhaHome .setinha {
		display: block; opacity: 0; background-color: var(--dourado); height: 2px; width: 0px; top: calc(50% - 1px);
	  position: absolute; left: calc(100% - 35px); transition: all 300ms ease 0ms;
	}
	.btnSetinhaHome .setinha::before{
		content: ""; height: 2px; width: 8px; position: absolute; top: 0; right: 1px; background-color: var(--dourado);
	  transform: rotate(0deg); transform-origin: 100% 50%;
	}
	.btnSetinhaHome .setinha::after {
		content: ""; height: 2px;	width: 8px;	position: absolute;	top: 0;	right: 1px;	background-color: var(--dourado);
		transform: rotate(0deg); transform-origin: 100% 50%;
	}
	.btnSetinhaHome:hover { padding-right: 38px; }
	.btnSetinhaHome:hover .setinha{
		transition: opacity 300ms ease 200ms, width 300ms ease 300ms;					
		width: 20px;
		opacity:1;
	}
	.btnSetinhaHome:hover .setinha::before{
		transition: transform 300ms ease 600ms;
		transform: rotate(35deg);
	}
	.btnSetinhaHome:hover .setinha::after{
		transition: transform 300ms ease 600ms;
		transform: rotate(-35deg);
	}

	.btnSetinhaHomeDestaque{
		position: relative;
		padding-top: 5px;
		padding-bottom: 5px;
		padding-right: 0px;
		transition: all 300ms ease-in;
		color: var(--dourado)!important;
	}

	.btnSetinhaHomeDestaque .setinha {
		display: block; opacity: 0; background-color: #fff; height: 2px; width: 0px; top: calc(50% - 1px);
	  position: absolute; left: calc(100% - 35px); transition: all 300ms ease 0ms;
	}
	.btnSetinhaHomeDestaque .setinha::before{
		content: ""; height: 2px; width: 8px; position: absolute; top: 0; right: 1px; background-color: #fff;
	  transform: rotate(0deg); transform-origin: 100% 50%;
	}
	.btnSetinhaHomeDestaque .setinha::after {
		content: ""; height: 2px;	width: 8px;	position: absolute;	top: 0;	right: 1px;	background-color: #fff;
		transform: rotate(0deg); transform-origin: 100% 50%;
	}
	.btnSetinhaHomeDestaque:hover { padding-right: 38px; color:#fff!important;}
	.btnSetinhaHomeDestaque:hover .setinha{
		transition: opacity 300ms ease 200ms, width 300ms ease 300ms;					
		width: 20px;
		opacity:1;
		

	}
	.btnSetinhaHomeDestaque:hover .setinha::before{
		transition: transform 300ms ease 600ms;
		transform: rotate(35deg);
	}
	.btnSetinhaHomeDestaque:hover .setinha::after{
		transition: transform 300ms ease 600ms;
		transform: rotate(-35deg);
	}
	.listEventoSingle:hover .border-nice {
		border: 5px solid var(--azul);
	}
	.border-nice {
		transition: opacity 200ms ease-in, border-width 200ms ease-out; 
		border: 0px solid var(--azul);
		opacity: 1;
	}
	.rightDetalheEvento:hover .border-nice-dourado {
		border: 5px solid var(--dourado);
	}
	.listEventoSingle:hover .border-nice-dourado {
		border: 5px solid var(--dourado);
	}
	.border-nice-dourado {
		transition: opacity 200ms ease-in, border-width 200ms ease-out; 
		border: 0px solid var(--dourado);
		opacity: 1;
		top: 0px;
		left: 0px;
	}

	.capelaBgImg{
		display: block;
		width: 100%;
		height: 666px;
		background-position: center;
		background-size: cover;
	}
	/** HEADER **/
	.navbar-default {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.container>.navbar-collapse {
		float: right;
	}

	.nav>li>a {
		color: var(--cinzaFonts);
		font-family: var(--leagueSpartan);
		font-size: 14px;
		padding-bottom: 0px;
	}

	.right-items{
		padding: 0;
		transform: translateY(80%);
	}

	.nav>li>a:focus, .nav>li>a:hover {
		background-color: transparent;
		color: var(--dourado);
	}

	.nav-menu {
		position: relative;
		right: 30px;
		float:right;
	}

	.toTheLeft{
	  animation: toTheLeftFrames ease 1s;
	  animation-iteration-count: 1;
	  transform-origin: 50% 50%;
	  animation-fill-mode:forwards; /*when the spec is finished*/
	  -webkit-animation: toTheLeftFrames ease 1s;
	  -webkit-animation-iteration-count: 1;
	  -webkit-transform-origin: 50% 50%;
	  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
	  -moz-animation: toTheLeftFrames ease 1s;
	  -moz-animation-iteration-count: 1;
	  -moz-transform-origin: 50% 50%;
	  -moz-animation-fill-mode:forwards; /*FF 5+*/
	  -o-animation: toTheLeftFrames ease 1s;
	  -o-animation-iteration-count: 1;
	  -o-transform-origin: 50% 50%;
	  -o-animation-fill-mode:forwards; /*Not implemented yet*/
	  -ms-animation: toTheLeftFrames ease 1s;
	  -ms-animation-iteration-count: 1;
	  -ms-transform-origin: 50% 50%;
	  -ms-animation-fill-mode:forwards; /*IE 10+*/
	}

	.espacoHover{
		position: relative;
	}

	.espacoHover::before{
		content: "";
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height:100%;
		border: 4px solid var(--dourado);
		background-color:rgba(0,0,0,0.3);
		
		background-repeat: no-repeat;
		background-position: center;
		opacity: 0;
		transition: all 300ms ease;
	}
	.espacoHover::after{
		content: attr(data-legenda);
		color: var(--dourado);
		position: absolute;
		bottom: 4px;
		left: 4px;
		height: 50px;
		width: calc(100% - 8px);
		background-color: rgba(0,0,0,0.2);
		font-family: var(--roboto);
		font-weight: 800;
		padding: 15px 20px;
		font-size: 14px;
		opacity: 0;
		transition: all 300ms ease;
	}


	.espacoHoverPromotores{
		position: relative;
	}

	.espacoHoverPromotores::before{
		content: "";
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height:100%;
		border: 2px solid var(--dourado);
		
		background-repeat: no-repeat;
		background-position: center;
		opacity: 0;
		transition: all 300ms ease;
	}
	.espacoHoverPromotores::after{
		content: attr(data-legenda);
		color: var(--dourado);
		position: absolute;
		bottom: 4px;
		left: 4px;
		height: 50px;
		width: calc(100% - 8px);
		font-family: var(--roboto);
		font-weight: 800;
		padding: 15px 20px;
		font-size: 14px;
		opacity: 0;
		transition: all 300ms ease;
	}

	#piIcon{
		margin-left: -8px;
	}
	.espacoHover:hover::before, .espacoHover:hover::after {
		opacity: 1;
	}
	.espacoHoverPromotores:hover::before, .espacoHoverPromotores:hover::after {
		opacity: 1;
	}

	.espacoHoverRef{
		width:auto;
		height:100%;
		position: relative;
		display: block; 
	}

	.espacoHoverRef::before{
		content: "";
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height:100%;
		border: 4px solid var(--dourado);
		
		
		background-repeat: no-repeat;
		background-position: center;
		opacity: 0;
		transition: all 300ms ease;
	}
	.espacoHoverRef::after{
		content: attr(data-legenda);
		color: var(--dourado);
		position: absolute;
		bottom: 4px;
		left: 4px;
		height: 50px;
		width: calc(100% - 8px);
		
		font-family: var(--roboto);
		font-weight: 800;
		padding: 15px 20px;
		font-size: 14px;
		opacity: 0;
		transition: all 300ms ease;
	}
	.espacoHoverRef:hover::before, .espacoHoverRef:hover::after {
		opacity: 1;
	}

	@keyframes toTheLeftFrames{
	  0% {
	    transform:  translate(0px,0px)  ;
	  }
	  20% {
	    transform:  translate(10px,0px)  ;
	  }
	  100% {
	    transform:  translate(-180px,0px)  ;
	  }
	}

	@-moz-keyframes toTheLeftFrames{
	  0% {
	    -webkit-transform:  translate(0px,0px)  ;
	  }
	  20% {
	    -webkit-transform:  translate(20px,0px)  ;
	  }
	  100% {
	    -webkit-transform:  translate(-180px,0px)  ;
	  }
	}

	@-webkit-keyframes toTheLeftFrames {
	  0% {
	    -webkit-transform:  translate(0px,0px)  ;
	  }
	  20% {
	    -webkit-transform:  translate(20px,0px)  ;
	  }
	  100% {
	    -webkit-transform:  translate(-180px,0px)  ;
	  }
	}

	@-o-keyframes toTheLeftFrames {
	  0% {
	    -webkit-transform:  translate(0px,0px)  ;
	  }
	  20% {
	    -webkit-transform:  translate(20px,0px)  ;
	  }
	  100% {
	    -webkit-transform:  translate(-180px,0px)  ;
	  }
	}

	@-ms-keyframes toTheLeftFrames {
	  0% {
	    -webkit-transform:  translate(0px,0px)  ;
	  }
	  20% {
	    -webkit-transform:  translate(20px,0px)  ;
	  }
	  100% {
	    -webkit-transform:  translate(-180px,0px)  ;
	  }
	}

	.search-field, input[type="search"]{
		display:none;
	}

	.search-form{
		float: right;
		right: 0;
		position: absolute;
	}


	/** PAG DETALHE EVENTO **/
	.containerDetalheEvento .rightDetalheEvento{
		
		margin-top: -350px;
	}


	.embed-responsive{
		min-width: 560px;
	}
	.fa-long-arrow-right{display: none;}
	.setinha{display: block;}
	.atalhoEspacos{ display: none; }
	.fixPosDesk {width: 100%; transform: translate3d(0,-35px,0);}


		.detalheMobile{
			display: none;
		}

	#btnVerMaisCaracteristicas{
		display:none;
	}
	.btnReservarDesktop{
		display:block!important;
		margin-top: 15px;
	}
	.btnReservarMobile{
		display: none!important;
	}

	.hideOnDesktop{ display: none; visibility: hidden; }


	.wlb-container{
		padding-top:100px;
	}

}


.lg-outer .lg-thumb-item{
	border: 1px solid transparent;
	border-radius: 0;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover{
	border-color: var(--dourado);
}

.lg-backdrop{
	z-index: 2000000001 !important;
	background-color: rgba(36,47,64, 0.98);
}
.lg-outer{
	z-index: 2000000002 !important;
}



@media (max-width: 768px) {
	.contenidodef{
		overflow:hidden; height:440px;
	}		
	.imgDestaqueFix{
		width:100%; object-fit: cover;
	}				
	#piIcon{
		margin-left: -8px;
	}
		.btnFooter{
			background-color: var(--dourado)!important;
			color: var(--cinzaFonts)!important;
	    border-radius: 0px!important;
	    border: 0px!important;
	    font-family: var(--leagueSpartan)!important;
	    font-weight: bold!important;
	    font-size: 10px!important;
	    line-height: 15px!important;
	    padding: 8px 11px!important;
	    text-decoration: none!important;
		}
}
@media (min-width: 769px) {
	.contenidodef{
		overflow:hidden; height:387px;
	}
	.imgDestaqueFix{
		width:750px; height:400px; object-fit: cover;
	}
	
}
a.ss-button-facebook, a.ss-button-googleplus, a.ss-button-twitter, a.ss-button-linkedin, a.ss-button-pinterest, a.ss-button-xing{
	filter:grayscale(1);
}

#btnSearchSubmit{
	display:none;
  border: 0px solid;
  padding: 0px;
  border-radius: 0px;
  background: transparent;
  color: var(--dourado);
  font-size: 18px;
  line-height: 40px; cursor: pointer;
  
}
.search-form{ top: -2px; }
.search-field{
	font-family: var(--leagueSpartan);
	font-weight: 400;
}
.main-navigation ul {
	    margin-right: 30px;
}


#myCarousel{
	max-width: 1920px;
	margin: 0 auto;
}



/** bzca css **/
#myModal.in{
    padding: 0!important;
}

#myModal .modal-dialog{
	background-color: #fff;
	padding: 0 20px 20px 0;
}

/** end bzca css **/