@font-face {
  font-family: "lanord-regular";
  src: url("../fonts/LaNord-Regular.woff2") format("woff2"), url("../fonts/LaNord-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "lanord";
  src: url("../fonts/LaNord-SemiLight.woff2") format("woff2"), url("../fonts/LaNord-SemiLight.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "lanord-light";
  src: url("../fonts/LaNord-Light.woff2") format("woff2"), url("../fonts/LaNord-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --maxWidth: 90%;
  --fontSize: 16px;
  --max-font: 17;
  --min-font: 14;
  --fontFamily: "lanord", sans-serif;
  --lineHeight: calc(var(--fontSize) * 1.5);
  --foreground-color: rgba(0,0,0, 1);
  --background-color: white;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

html {
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  line-height: calc(var(--lineHeight) / 2);
  background: var(--background-color);
  color: var(--foreground-color);
  letter-spacing: -0.01em;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding: 0;
  padding-bottom: calc(var(--lineHeight) * 2);
  margin: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
  font-family: var(--fontFamily);
  --responsive: calc((var(--min-font) * 1px) + (var(--max-font) - var(--min-font)) * ((100vw - 420px) / (1200 - 420)));
  --max-font: 18;
  --min-font: 16;
  font-size: var(--responsive);
  line-height: calc(var(--responsive) * 1.5);
}

::-moz-selection {
  background: #f4f4f4;
  color: inherit;
}

::selection {
  background: #f4f4f4;
  color: inherit;
}

html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

.c-scrollbar {
  position: absolute;
  right: 2px;
  top: 0;
  width: 11px;
  height: 100vh;
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  -webkit-transform: scaleX(1.5);
          transform: scaleX(1.5);
}

.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #aaa;
  opacity: 1;
  width: 6px;
  border-radius: 20px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

#hover-menu {
  position: fixed;
  top: -2px;
  left: 2vw;
  width: calc(50% - 2.3vw);
  height: 83px;
  z-index: 99;
  padding: 14px;
  -webkit-transform: translateX(0) translateY(0);
          transform: translateX(0) translateY(0);
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.8, 0, 0.25, 1);
  transition: all 0.4s cubic-bezier(0.8, 0, 0.25, 1);
  overflow: hidden;
}
#hover-menu > hr {
  margin: 16px 0;
  padding: 0;
  opacity: 1;
  border: none;
  border-bottom: 1px solid black;
}
#hover-menu #nav {
  margin-top: 0px;
  opacity: 1;
}
#hover-menu #nav a {
  z-index: 1;
  color: #000 !important;
  --max-font: 30;
  --min-font: 24;
  font-size: var(--responsive);
  color: #fff;
  text-decoration: none;
}
#hover-menu #nav a span {
  font-size: inherit;
}
#hover-menu #the-menu .row > div ul {
  margin: 0;
  padding: 0;
}
#hover-menu #the-menu .row > div ul li {
  list-style: none;
}
#hover-menu #the-menu .row > div ul li a {
  color: #000;
  list-style: none;
  text-decoration: none;
  position: relative;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
#hover-menu #the-menu .row > div ul li a:hover {
  color: #FF3228;
  -webkit-transform: translateX(14px);
          transform: translateX(14px);
}
#hover-menu #the-menu .row > div .small {
  margin-top: 36px;
  font-size: 11px;
  line-height: 13px;
}
#hover-menu #the-menu .row > div .porto {
  margin-top: 36px;
  width: 88px;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
#hover-menu #the-menu .row > div .porto:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#hover-menu:hover {
  opacity: 1;
  top: -2px;
  height: 294px;
}

#nav-content {
  border: 10px solid red;
  position: fixed;
  top: 0;
  left: 15px;
  width: calc(100% - 19px);
  height: 84px;
  background-color: white;
  -webkit-transform: translateY(-84px);
          transform: translateY(-84px);
  -webkit-transition: -webkit-transform 0.1s ease-in-out;
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  padding-top: 13px;
  padding-left: 11px;
}
#nav-content a {
  display: block;
  margin: 14px 14px 0 14px;
  --max-font: 30;
  --min-font: 24;
  font-size: var(--responsive);
  color: black;
  text-decoration: none;
}

#main-nav {
  max-width: 96%;
  margin: -2px auto 0 auto;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 99;
  width: 100%;
  mix-blend-mode: difference;
}
#main-nav .row #menu {
  position: relative;
}
#main-nav .row #menu:hover #nav-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#main-nav .row #menu:hover #logo-wrapper a {
  color: white;
}
#main-nav .row #menu:hover #burger-wrapper span {
  background-color: black;
}
#main-nav .row #menu #logo-wrapper {
  width: calc(100% + 9px);
  border: 2px solid #fff;
  padding: 14px;
}
#main-nav .row #menu #logo-wrapper a {
  --max-font: 30;
  --min-font: 24;
  font-size: var(--responsive);
  color: #fff;
  text-decoration: none;
}
#main-nav .row #menu #logo-wrapper a span {
  font-size: inherit;
}
#main-nav .row #menu #burger-wrapper {
  position: absolute;
  top: 2%;
  right: 0;
  z-index: 3;
  cursor: pointer;
}
#main-nav .row #menu #burger-wrapper:before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 40px;
  background-color: transparent;
}
#main-nav .row #menu #burger-wrapper span {
  position: absolute;
  width: 36px;
  height: 3px;
  top: 29px;
  right: 26px;
  background-color: #fff;
}
#main-nav .row #menu #burger-wrapper span:nth-child(2) {
  top: 39px;
}
#main-nav .row #menu #burger-wrapper span:nth-child(3) {
  top: 49px;
}
#main-nav .row ul li {
  display: inline;
}

#btn-grid {
  margin-top: 32px;
  font-size: 13px;
  --max-font: 13;
  --min-font: 11;
  font-size: var(--responsive);
  text-align: right;
  padding-right: 60px;
  color: #fff;
  cursor: pointer;
}
#btn-grid:hover span {
  background-color: white;
  color: #000;
}
#btn-grid span {
  font-size: 13px;
  position: absolute;
  width: 42px;
  height: 42px;
  top: -12px;
  right: 0;
  border-radius: 100%;
  border: 2px solid #fff;
  color: #fff;
  margin-top: 32px;
  margin-left: 12px;
  padding-top: 6px;
  text-align: center;
}

#grid {
  position: fixed;
  z-index: 3;
  top: -1px;
  pointer-events: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(6, 1fr);
  -ms-grid-rows: 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  height: 100vh;
  height: calc(100vh + 1px);
  max-width: 96%;
  margin: 0 auto;
  left: 0;
  right: 0;
  opacity: 0;
}

#grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

#grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

#grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

#grid > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

#grid > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}

#grid > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 11;
}

#grid > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

#grid > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

#grid > *:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

#grid > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}

#grid > *:nth-child(11) {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
}

#grid > *:nth-child(12) {
  -ms-grid-row: 3;
  -ms-grid-column: 11;
}

#grid > *:nth-child(13) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

#grid > *:nth-child(14) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}

#grid > *:nth-child(15) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}

#grid > *:nth-child(16) {
  -ms-grid-row: 5;
  -ms-grid-column: 7;
}

#grid > *:nth-child(17) {
  -ms-grid-row: 5;
  -ms-grid-column: 9;
}

#grid > *:nth-child(18) {
  -ms-grid-row: 5;
  -ms-grid-column: 11;
}

#grid > *:nth-child(19) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}

#grid > *:nth-child(20) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}

#grid > *:nth-child(21) {
  -ms-grid-row: 7;
  -ms-grid-column: 5;
}

#grid > *:nth-child(22) {
  -ms-grid-row: 7;
  -ms-grid-column: 7;
}

#grid > *:nth-child(23) {
  -ms-grid-row: 7;
  -ms-grid-column: 9;
}

#grid > *:nth-child(24) {
  -ms-grid-row: 7;
  -ms-grid-column: 11;
}
#grid > div {
  position: relative;
  width: 100%;
}
#grid > div span {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform;
}
#grid > div span.left {
  content: "";
  position: absolute;
  top: -100vh;
  left: 0;
  width: 1px;
  height: 300vh;
  background-color: rgba(128, 128, 128, 0.066);
}
#grid > div span.right {
  content: "";
  position: absolute;
  top: -100vh;
  left: 100%;
  width: 1px;
  height: 300vh;
  background-color: rgba(128, 128, 128, 0.066);
}
#grid > div span.top {
  content: "";
  position: absolute;
  top: 0px;
  left: -50vw;
  width: 1600vw;
  height: 1px;
  background-color: rgba(128, 128, 128, 0.066);
}
#grid > div span.bottom {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50vw;
  width: 1600vw;
  height: 1px;
  background-color: rgba(128, 128, 128, 0.066);
}

@media only screen and (max-width: 600px) {
  .no-mobile {
    display: none;
  }
  #hover-menu {
    position: fixed;
    top: -2px;
    left: 5px;
    width: calc(100% - 11px);
  }
  #hover-menu #the-menu .row div {
    width: 100%;
  }
  #hover-menu #the-menu .row div:nth-child(1) {
    margin-bottom: 20px;
  }
  #hover-menu #the-menu .row div:nth-child(3) ul li a {
    color: #A8A8A8;
  }
  #hover-menu #the-menu .row div ul {
    width: 100%;
  }
  #hover-menu #the-menu .row div ul li {
    width: 100%;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  #hover-menu #the-menu .row div ul li br {
    display: none;
  }
  #hover-menu #the-menu .row div ul li .termos {
    display: none;
  }
  #hover-menu:hover {
    height: 380px;
  }
  #main-nav {
    top: 0;
    left: -10px;
    width: calc(100vw - 20px);
  }
  #main-nav .row #menu #logo-wrapper a {
    font-family: "lanord-regular";
  }
  #main-nav .row #menu #logo-wrapper a span {
    display: none;
  }
  #main-nav .row #menu #burger-wrapper {
    top: -7px;
  }
  #btn-grid {
    display: none;
  }
  #btn-grid #grid {
    display: none;
  }
}
.page-home {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  /*
  	#ultimas {
  		&:hover {
  			.row {
  				>div {

  					.ico {
  						transition: transform .75s ease-in-out;
  						transform: rotate(60deg);
  					}

  				}
  			}
  		}
  		.row {
  			>div {
  				// border: 1px solid purple

  				.title-wrapper {
  					.ico {
  						margin-right: 10px;
  					}
  					span {
  						display: inline-block;
  						transform: translateY(2px);
  					}
  				}
  			}
  			#pic {
  				// border: 1px solid purple;
  				// transform: scale(1.1);
  				img {
  					min-width: 101%;
  				}
  			}
  			#data {
  				background-color: $red;
  				border-right: 7px solid white;
  				margin-left: -6px;
  				padding: 40px 16px;
  				.date {

  				}
  				.title {
  					--max-font: 36;
  					--min-font: 24;
  					font-size: var(--responsive);
  					line-height: 1;
  				}
  				.desc {

  				}
  				.btn {

  				}
  			}
  		}
  	} // ultimas
  */
}
.page-home header {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.page-home header #bg {
  background-color: transparent;
  background-position: center center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  z-index: -99;
  overflow: hidden;
  will-change: transform;
}
.page-home header #bg:before {
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  left: 0;
}
.page-home header .content {
  width: 100%;
  position: absolute;
  z-index: 9;
  margin-top: 0%;
  top: 0;
}
.page-home header .content .row > div h1 {
  margin-top: 30vh;
  --max-font: 90;
  --min-font: 64;
  font-size: var(--responsive);
  line-height: 1;
  font-family: "lanord";
  color: #FF3228;
  -webkit-transform-origin: center left;
          transform-origin: center left;
}
.page-home header .content .row > div h2 {
  margin-top: 6vh;
  color: #f4f4f4;
  --max-font: 30;
  --min-font: 24;
  font-size: var(--responsive);
  line-height: 1.3;
  font-family: "lanord";
  -webkit-transform-origin: center left;
          transform-origin: center left;
}
.page-home header .content .row > div .btn {
  -webkit-transform-origin: center left;
          transform-origin: center left;
}
.page-home #destaque {
  padding: calc(20px / 20);
  max-height: 75vh;
  overflow: hidden;
}
.page-home #destaque:hover .row > div .ico {
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.page-home #destaque .row {
  /*
  #pic {

  	// border: 1px solid purple;
  	// transform: scale(1.1);
  	.is-parallax {
  		.parallax-wrapper {
  			overflow: hidden;
  		}
  	}
  	img {

  		min-width: 101%;
  		object-fit: cover;
  		max-height: 60vh;
  	}
  	.no-pic {
  		position: absolute; 
  		top: 0;
  		left: 0;
  		width: 100%;
  		height: 100%;
  		padding: calc(20px * 2) $padding;

  		h1 {

  			width: 75%;
  			--max-font: 36;
  			--min-font: 24;
  			font-size: var(--responsive);
  			line-height: 1;
  			color: $white;

  		}
  	}
  }
  #data {
  	background-color: $red;
  	border-right: 7px solid white;
  	margin-left: -6px;
  	padding: 40px 16px;
  	position: relative;
  	min-height: 55vh;
  	max-height: 60vh;
  	.date {
  		color: $black;
  	}
  	.title {
  		--max-font: 36;
  		--min-font: 24;
  		font-size: var(--responsive);
  		line-height: 1;
  		color: $black;
  	}
  	.desc {
  		color: $black;
  	}
  	.btn {
  		position: absolute;
  		bottom: calc((20px * 2) + 20px);
  	}
  }
  */
}
.page-home #destaque .row > div {
  padding-right: 6px;
}
.page-home #destaque .row > div .title-wrapper .ico {
  margin-right: 10px;
}
.page-home #destaque .row > div .title-wrapper span {
  display: inline-block;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.page-home #destaque .swiper-container {
  position: relative;
}
.page-home #destaque .swiper-container #right-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(34vw - 30px);
  height: 100%;
  background-color: white;
  z-index: 999;
  padding: calc(20px * 2) 20px;
}
.page-home #destaque .swiper-container #right-panel .get-date {
  position: relative;
  display: block;
  overflow: hidden;
  height: 30px;
}
.page-home #destaque .swiper-container #right-panel .get-date:before {
  content: "Estreia: ";
  color: #000;
  padding-right: 8px;
}
.page-home #destaque .swiper-container #right-panel .get-date > span {
  position: absolute;
  top: 0px;
  color: #000;
}
.page-home #destaque .swiper-container #right-panel .get-title {
  position: relative;
  display: block;
  overflow: hidden;
  height: auto;
  min-height: 40px;
  width: 90%;
}
.page-home #destaque .swiper-container #right-panel .get-title span {
  --max-font: 36;
  --min-font: 24;
  font-size: var(--responsive);
  line-height: 1;
  color: #000;
  position: absolute;
  top: 0px;
}
.page-home #destaque .swiper-container #right-panel .get-desc {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
  width: 90%;
}
.page-home #destaque .swiper-container #right-panel .get-desc span {
  --max-font: 20;
  --min-font: 16;
  font-size: var(--responsive);
  line-height: 1.3;
  color: #000;
  position: absolute;
  top: 0px;
}
.page-home #destaque .swiper-container #right-panel .btn {
  min-width: 200px;
  position: absolute;
  bottom: 120px;
}
.page-home .panel-scroll-horizontal {
  overflow-x: hidden;
}
.page-home .panel-scroll-horizontal .title {
  white-space: nowrap;
  margin-left: -55%;
  margin-bottom: 15vh;
}
.page-home .panel-scroll-horizontal .title a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}
.page-home .panel-scroll-horizontal .title a:hover {
  color: rgba(0, 0, 0, 0.3);
}
.page-home .panel-scroll-horizontal .title span {
  font-family: "lanord-regular";
  --max-font: 90;
  --min-font: 64;
  font-size: var(--responsive);
  margin-left: 2%;
}
.page-home #wpcf7-f335-o1, .page-home #wpcf7-f336-o2, .page-home #wpcf7-f363-o1, .page-home #wpcf7-f364-o2, .page-home #wpcf7-f200-o1, .page-home #wpcf7-f201-o2 {
  border-bottom: 1px solid #000;
  padding: 6vh 14px;
  margin-bottom: 12vh;
}
.page-home #wpcf7-f335-o1 .wpcf7-response-output, .page-home #wpcf7-f336-o2 .wpcf7-response-output, .page-home #wpcf7-f363-o1 .wpcf7-response-output, .page-home #wpcf7-f364-o2 .wpcf7-response-output, .page-home #wpcf7-f200-o1 .wpcf7-response-output, .page-home #wpcf7-f201-o2 .wpcf7-response-output {
  all: unset;
  border: none;
  color: #FF3228;
}
.page-home #wpcf7-f335-o1 form p .wpcf7-list-item, .page-home #wpcf7-f336-o2 form p .wpcf7-list-item, .page-home #wpcf7-f363-o1 form p .wpcf7-list-item, .page-home #wpcf7-f364-o2 form p .wpcf7-list-item, .page-home #wpcf7-f200-o1 form p .wpcf7-list-item, .page-home #wpcf7-f201-o2 form p .wpcf7-list-item {
  margin: -20px 0 0 0;
}
.page-home #wpcf7-f335-o1 form p label input[type=checkbox], .page-home #wpcf7-f336-o2 form p label input[type=checkbox], .page-home #wpcf7-f363-o1 form p label input[type=checkbox], .page-home #wpcf7-f364-o2 form p label input[type=checkbox], .page-home #wpcf7-f200-o1 form p label input[type=checkbox], .page-home #wpcf7-f201-o2 form p label input[type=checkbox] {
  width: 16px;
  float: left;
  display: inline;
  margin-right: 20px;
}
.page-home #wpcf7-f335-o1 form p label span.wpcf7-list-item-label, .page-home #wpcf7-f336-o2 form p label span.wpcf7-list-item-label, .page-home #wpcf7-f363-o1 form p label span.wpcf7-list-item-label, .page-home #wpcf7-f364-o2 form p label span.wpcf7-list-item-label, .page-home #wpcf7-f200-o1 form p label span.wpcf7-list-item-label, .page-home #wpcf7-f201-o2 form p label span.wpcf7-list-item-label {
  cursor: pointer;
  width: 50%;
  display: inline-block;
  color: #000;
  --max-font: 14;
  --min-font: 12;
  font-size: var(--responsive);
  line-height: 1.2;
  margin: 0 0 0 0;
  padding: 0;
}
.page-home #wpcf7-f335-o1 form p label span input, .page-home #wpcf7-f336-o2 form p label span input, .page-home #wpcf7-f363-o1 form p label span input, .page-home #wpcf7-f364-o2 form p label span input, .page-home #wpcf7-f200-o1 form p label span input, .page-home #wpcf7-f201-o2 form p label span input {
  width: 60%;
  display: block;
  margin: 0 0 30px 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #000;
  --max-font: 30;
  --min-font: 24;
  font-size: var(--responsive);
  line-height: 1.3;
}
.page-home #wpcf7-f335-o1 form p label span input::-webkit-input-placeholder, .page-home #wpcf7-f336-o2 form p label span input::-webkit-input-placeholder, .page-home #wpcf7-f363-o1 form p label span input::-webkit-input-placeholder, .page-home #wpcf7-f364-o2 form p label span input::-webkit-input-placeholder, .page-home #wpcf7-f200-o1 form p label span input::-webkit-input-placeholder, .page-home #wpcf7-f201-o2 form p label span input::-webkit-input-placeholder {
  color: #000;
  --max-font: 25;
  --min-font: 22;
  font-size: var(--responsive);
}
.page-home #wpcf7-f335-o1 form p label span input::-moz-placeholder, .page-home #wpcf7-f336-o2 form p label span input::-moz-placeholder, .page-home #wpcf7-f363-o1 form p label span input::-moz-placeholder, .page-home #wpcf7-f364-o2 form p label span input::-moz-placeholder, .page-home #wpcf7-f200-o1 form p label span input::-moz-placeholder, .page-home #wpcf7-f201-o2 form p label span input::-moz-placeholder {
  color: #000;
  --max-font: 25;
  --min-font: 22;
  font-size: var(--responsive);
}
.page-home #wpcf7-f335-o1 form p label span input:-ms-input-placeholder, .page-home #wpcf7-f336-o2 form p label span input:-ms-input-placeholder, .page-home #wpcf7-f363-o1 form p label span input:-ms-input-placeholder, .page-home #wpcf7-f364-o2 form p label span input:-ms-input-placeholder, .page-home #wpcf7-f200-o1 form p label span input:-ms-input-placeholder, .page-home #wpcf7-f201-o2 form p label span input:-ms-input-placeholder {
  color: #000;
  --max-font: 25;
  --min-font: 22;
  font-size: var(--responsive);
}
.page-home #wpcf7-f335-o1 form p label span input::-ms-input-placeholder, .page-home #wpcf7-f336-o2 form p label span input::-ms-input-placeholder, .page-home #wpcf7-f363-o1 form p label span input::-ms-input-placeholder, .page-home #wpcf7-f364-o2 form p label span input::-ms-input-placeholder, .page-home #wpcf7-f200-o1 form p label span input::-ms-input-placeholder, .page-home #wpcf7-f201-o2 form p label span input::-ms-input-placeholder {
  color: #000;
  --max-font: 25;
  --min-font: 22;
  font-size: var(--responsive);
}
.page-home #wpcf7-f335-o1 form p label span input::placeholder, .page-home #wpcf7-f336-o2 form p label span input::placeholder, .page-home #wpcf7-f363-o1 form p label span input::placeholder, .page-home #wpcf7-f364-o2 form p label span input::placeholder, .page-home #wpcf7-f200-o1 form p label span input::placeholder, .page-home #wpcf7-f201-o2 form p label span input::placeholder {
  color: #000;
  --max-font: 25;
  --min-font: 22;
  font-size: var(--responsive);
}
.page-home #wpcf7-f335-o1 form p .wpcf7-submit, .page-home #wpcf7-f336-o2 form p .wpcf7-submit, .page-home #wpcf7-f363-o1 form p .wpcf7-submit, .page-home #wpcf7-f364-o2 form p .wpcf7-submit, .page-home #wpcf7-f200-o1 form p .wpcf7-submit, .page-home #wpcf7-f201-o2 form p .wpcf7-submit {
  cursor: pointer;
  display: inline-block;
  width: auto;
  min-width: 33%;
  height: 56px;
  position: relative;
  border-radius: 100px;
  margin: 6vh 0 0 0;
  padding-top: 0;
  padding-left: 0;
  background-color: #fff;
  border-color: #000;
  position: relative;
}
.page-home #forms > div .bg-gray {
  position: relative;
  background-color: #E6E6E6;
  border-top: 10px solid #000;
  padding: calc(20px * 1);
}
.page-home #forms > div .bg-gray h2 {
  --max-font: 36;
  --min-font: 24;
  font-size: var(--responsive);
  line-height: 1.3;
  padding-right: 30%;
}
.page-home #forms > div .bg-gray h2 u {
  font-size: inherit;
  text-decoration-thickness: 3px;
}
.page-home #forms > div .bg-gray p {
  padding-right: 30%;
  --max-font: 20;
  --min-font: 16;
  font-size: var(--responsive);
  line-height: 1.3;
  margin-bottom: 15vh;
}
.page-home #forms > div .form {
  border-bottom: 1px solid #000;
  padding: 6vh 14px;
}
.page-home #forms > div .form form input[type=text] {
  width: 60%;
  display: block;
  margin: 0 0 30px 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #000;
  --max-font: 30;
  --min-font: 24;
  font-size: var(--responsive);
  line-height: 1.3;
}
.page-home #forms > div .form form input[type=text]::-webkit-input-placeholder {
  color: #000;
  --max-font: 25;
  --min-font: 22;
  font-size: var(--responsive);
}
.page-home #forms > div .form form input[type=text]::-moz-placeholder {
  color: #000;
  --max-font: 25;
  --min-font: 22;
  font-size: var(--responsive);
}
.page-home #forms > div .form form input[type=text]:-ms-input-placeholder {
  color: #000;
  --max-font: 25;
  --min-font: 22;
  font-size: var(--responsive);
}
.page-home #forms > div .form form input[type=text]::-ms-input-placeholder {
  color: #000;
  --max-font: 25;
  --min-font: 22;
  font-size: var(--responsive);
}
.page-home #forms > div .form form input[type=text]::placeholder {
  color: #000;
  --max-font: 25;
  --min-font: 22;
  font-size: var(--responsive);
}
.page-home #forms > div .form form input[type=checkbox] {
  width: 16px;
  float: left;
  border: 1px solid red;
  display: inline;
}
.page-home #forms > div .form form label {
  cursor: pointer;
  display: inline-block;
  color: #000;
  --max-font: 14;
  --min-font: 12;
  font-size: var(--responsive);
  line-height: 1.2;
  margin: 0 0 0 -6%;
  padding: 0;
}
.page-home #forms #panel-newsletter {
  padding-left: 0.86%;
  padding-right: 6px;
  min-height: 900px;
}
.page-home #forms #panel-cartao-amigo {
  padding-left: 6px;
  padding-right: 0.86%;
  position: relative;
}
.page-home #forms #panel-cartao-amigo #ico-amigo {
  cursor: pointer;
  position: absolute;
  bottom: -12%;
  right: 12%;
}
.page-home #forms #panel-cartao-amigo #ico-amigo a {
  position: relative;
}
.page-home #forms #panel-cartao-amigo #ico-amigo a .main-ico {
  position: inherit;
  z-index: 2;
}
.page-home #forms #panel-cartao-amigo #ico-amigo a .repeater {
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: -400%;
  left: 0px;
  opacity: 1;
  z-index: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.page-home #forms #panel-cartao-amigo #google-forms-btn {
  margin-top: -200px;
  margin-left: -60px;
}
@media only screen and (max-width: 600px) {
  .page-home header {
    overflow: hidden;
  }
  .page-home header #bg {
    position: relative;
  }
  .page-home header .content .row > div h1 {
    margin-top: 100px;
    font-size: 3.6rem;
  }
  .page-home #destaque {
    all: unset;
  }
  .page-home #destaque #right-panel {
    all: unset;
    position: relative;
    min-width: 100vw;
    width: 100vw;
    max-height: 200px;
    min-height: 200px;
    height: 200px;
    right: 0;
    left: 0;
  }
  .page-home #destaque .row {
    all: unset;
  }
  .page-home #destaque .row > div {
    all: unset;
  }
  .page-home #destaque .row > div .title-wrapper {
    padding: 0 20px;
  }
  .page-home #destaque .conteudo-desktop {
    display: none;
  }
  .page-home #destaque .conteudo-mobile {
    padding: 20px;
  }
  .page-home #destaque .conteudo-mobile .row > div a {
    text-decoration: none;
    color: #000;
  }
  .page-home #destaque .conteudo-mobile .row > div a > img {
    margin-bottom: 10px;
  }
  .page-home #destaque .conteudo-mobile .row > div a h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .page-home #destaque .conteudo-mobile .row > div a .desc {
    margin-bottom: 110px;
  }
  .page-home .panel-scroll-horizontal .title {
    all: unset;
    margin-left: 0;
  }
  .page-home .panel-scroll-horizontal .title a {
    padding-bottom: 200px;
    text-align: center;
  }
  .page-home .panel-scroll-horizontal .title a span {
    white-space: nowrap;
    font-size: 10vw;
    font-size: 9.7vw;
    line-height: 1.2;
    color: #000;
    position: relative;
    margin-left: -2px;
  }
  .page-home .panel-scroll-horizontal .title a span:nth-child(4) {
    display: none;
  }
  .page-home #wpcf7-f335-o1 form p label span.wpcf7-list-item-label, .page-home #wpcf7-f336-o2 form p label span.wpcf7-list-item-label, .page-home #wpcf7-f363-o1 form p label span.wpcf7-list-item-label, .page-home #wpcf7-f364-o2 form p label span.wpcf7-list-item-label, .page-home #wpcf7-f200-o1 form p label span.wpcf7-list-item-label, .page-home #wpcf7-f201-o2 form p label span.wpcf7-list-item-label {
    cursor: pointer;
    width: 80%;
  }
  .page-home #wpcf7-f335-o1 form p label span input, .page-home #wpcf7-f336-o2 form p label span input, .page-home #wpcf7-f363-o1 form p label span input, .page-home #wpcf7-f364-o2 form p label span input, .page-home #wpcf7-f200-o1 form p label span input, .page-home #wpcf7-f201-o2 form p label span input {
    width: 100%;
  }
  .page-home #wpcf7-f335-o1 form p .wpcf7-submit, .page-home #wpcf7-f336-o2 form p .wpcf7-submit, .page-home #wpcf7-f363-o1 form p .wpcf7-submit, .page-home #wpcf7-f364-o2 form p .wpcf7-submit, .page-home #wpcf7-f200-o1 form p .wpcf7-submit, .page-home #wpcf7-f201-o2 form p .wpcf7-submit {
    width: auto;
    min-width: 100%;
    color: #000;
  }
  .page-home #wpcf7-f335-o1 form p .wpcf7-submit:disabled, .page-home #wpcf7-f336-o2 form p .wpcf7-submit:disabled, .page-home #wpcf7-f363-o1 form p .wpcf7-submit:disabled, .page-home #wpcf7-f364-o2 form p .wpcf7-submit:disabled, .page-home #wpcf7-f200-o1 form p .wpcf7-submit:disabled, .page-home #wpcf7-f201-o2 form p .wpcf7-submit:disabled {
    color: #A8A8A8;
    border-color: #A8A8A8;
  }
}

.page-about {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
.page-about header {
  background-color: #FCED00;
  min-height: 100vh;
  padding-bottom: 16vh;
}
.page-about header h1 {
  font-family: "lanord-regular";
  margin-top: 22vh;
  margin-bottom: 6vh;
  --max-font: 90;
  --min-font: 40;
  font-size: var(--responsive);
  line-height: 1.1;
}
.page-about header p {
  font-family: "lanord-regular";
  --max-font: 36;
  --min-font: 24;
  font-size: var(--responsive);
  line-height: 1.3;
}
.page-about .block-section:hover .section-title > div .ico {
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.page-about .block-section .row {
  margin: 0;
  padding: 0;
}
.page-about .block-section .menu > div {
  height: 26px;
  padding: 0;
}
.page-about .block-section .menu > div ul {
  margin: 0;
  padding: 0 calc(20px / 2);
}
.page-about .block-section .menu > div ul li {
  display: inline;
  margin-right: 40px;
}
.page-about .block-section .menu > div ul li a {
  color: inherit;
  text-decoration: none;
  padding: 0;
  margin: 0;
}
.page-about .block-section .sub-menu > div a {
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  padding: 0;
  margin: 0 0.3% 0 0;
}
.page-about .active {
  color: #000;
}
.page-about .tab-btn {
  opacity: 0;
}
.page-about label {
  color: #A8A8A8;
}
.page-about label.active:hover {
  color: #000;
  cursor: default;
}
.page-about label:hover {
  cursor: pointer;
  color: #FF3228;
}
.page-about .tabs > div, .page-about .tabs-cct > div {
  display: none;
}
.page-about .tabs > div .row div small, .page-about .tabs-cct > div .row div small {
  display: block;
  color: #A8A8A8;
  font-family: "lanord";
  --max-font: 14;
  --min-font: 12;
  font-size: var(--responsive);
  line-height: 1;
  margin-bottom: calc(var(--responsive) * 2);
}
.page-about .tabs .sub-menu > div button, .page-about .tabs-cct .sub-menu > div button {
  border: none;
  background-color: transparent;
  color: #A8A8A8;
  font-family: "lanord";
  --max-font: 14;
  --min-font: 12;
  font-size: var(--responsive);
  line-height: 1;
  text-transform: uppercase;
}
.page-about .tabs .sub-menu > div button:hover, .page-about .tabs-cct .sub-menu > div button:hover {
  color: #FF3228;
}
.page-about .tabs .sub-menu > div button.active, .page-about .tabs-cct .sub-menu > div button.active {
  color: #000;
}
.page-about .tabs .sub-menu > div button.active:hover, .page-about .tabs-cct .sub-menu > div button.active:hover {
  color: #000;
  cursor: default;
}
.page-about #content-actores .results > div, .page-about #content-dramaturgos .results > div {
  opacity: 0;
  display: none;
  visibility: hidden;
}
.page-about #content-actores .results .show, .page-about #content-dramaturgos .results .show {
  opacity: 1;
  display: block;
  visibility: visible;
}
.page-about #tab-equipa:checked ~ .tabs #content-equipa,
.page-about #tab-actores:checked ~ .tabs #content-actores,
.page-about #tab-dramaturgos:checked ~ .tabs #content-dramaturgos,
.page-about #tab-criativos:checked ~ .tabs #content-criativos {
  display: block;
  -webkit-animation-name: moveUp;
          animation-name: moveUp;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
.page-about #tab-assembleia:checked ~ .tabs-cct #content-assembleia,
.page-about #tab-direcao:checked ~ .tabs-cct #content-direcao,
.page-about #tab-conselho-fiscal:checked ~ .tabs-cct #content-conselho-fiscal {
  display: block;
  -webkit-animation-name: moveUp;
          animation-name: moveUp;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
@-webkit-keyframes moveUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes moveUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.page-about #cct-tep {
  margin-top: 8vh;
}
.page-about #contactos {
  margin-top: 8vh;
  margin-bottom: 8vh;
}
.page-about #contactos > p {
  padding: 14px;
}
.page-about #contactos > p a {
  color: inherit;
  text-decoration: none;
}
.page-about #contactos > p a:hover {
  color: #FF3228;
}
@media only screen and (max-width: 600px) {
  .page-about label {
    padding-left: 10px;
    padding-right: 30px;
  }
  .page-about .tab-btn {
    width: 0;
    margin-left: -3px;
  }
}

.page-programacao header {
  min-height: 20vh;
  padding-top: 20vh;
}
.page-programacao header #destaque {
  padding: calc(20px / 20);
  max-height: 75vh;
  overflow: hidden;
}
.page-programacao header #destaque:hover .row > div .ico {
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.page-programacao header #destaque .row > div {
  padding-right: 6px;
}
.page-programacao header #destaque .row > div .title-wrapper .ico {
  margin-right: 10px;
}
.page-programacao header #destaque .row > div .title-wrapper span {
  display: inline-block;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.page-programacao header #destaque .row #pic .is-parallax .parallax-wrapper {
  overflow: hidden;
}
.page-programacao header #destaque .row #pic img {
  min-width: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 60vh;
}
.page-programacao header #destaque .row #pic .no-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: calc(20px * 2) 20px;
}
.page-programacao header #destaque .row #pic .no-pic h1 {
  width: 75%;
  --max-font: 36;
  --min-font: 24;
  font-size: var(--responsive);
  line-height: 1;
  color: #fff;
}
.page-programacao header #destaque .row #data {
  background-color: #FF3228;
  border-right: 7px solid white;
  margin-left: -6px;
  padding: 40px 16px;
  position: relative;
  min-height: 55vh;
  max-height: 60vh;
}
.page-programacao header #destaque .row #data .date {
  color: #000;
}
.page-programacao header #destaque .row #data .date span {
  font-variant-numeric: tabular-nums;
}
.page-programacao header #destaque .row #data .title {
  --max-font: 36;
  --min-font: 24;
  font-size: var(--responsive);
  line-height: 1;
  color: #000;
}
.page-programacao header #destaque .row #data .desc {
  color: #000;
}
.page-programacao header #destaque .row #data .btn {
  position: absolute;
  bottom: calc((20px * 2) + 20px);
}
.page-programacao #the-content {
  margin-top: 16vh;
  padding-bottom: 16vh;
}
.page-programacao #the-content:hover .section-title > div .ico {
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.page-programacao #the-content form#filter .row > div .btn-sort {
  width: 30px;
  height: 30px;
}
.page-programacao #the-content form#filter .row > div .btn-sort.asc:after:checked {
  opacity: 1;
}
.page-programacao #the-content form#filter .row > div .btn-sort.desc {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-programacao #the-content form#filter .row > div input[type=radio] {
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  margin-right: 5px;
  position: relative;
  width: 30px;
  top: 6px;
  -webkit-appearance: none;
}
.page-programacao #the-content form#filter .row > div input[type=radio]:after {
  background: transparent url("../img/order-down.png") scroll no-repeat center center;
  opacity: 0.5;
  content: "";
  display: block;
  height: 30px;
  left: 0px;
  position: relative;
  top: 0;
  width: 30px;
}
.page-programacao #the-content form#filter .row > div input[type=radio]:checked:after {
  opacity: 1;
}
.page-programacao #the-content form#filter .row > div #input-term {
  padding: 8px 8px 8px 48px;
  border: none;
  background: transparent url("../img/lupa@2x.png") scroll no-repeat 18px 12px;
  background-size: 20px;
}
.page-programacao #the-content form#filter .row > div button {
  border: none;
  background-color: transparent;
  font-family: "lanord";
  --max-font: 90;
  --min-font: 40;
  font-size: var(--responsive);
  line-height: 1.1;
  color: #000;
  padding: 14px 8px;
}
.page-programacao #the-content #intro {
  padding: 2vh 0 4vh 0;
}
.page-programacao #the-content #intro h3, .page-programacao #the-content #intro p {
  text-decoration: underline;
}
.page-programacao #the-content #intro p {
  text-align: right;
}
.page-programacao #the-content h3, .page-programacao #the-content p {
  font-family: "lanord";
  margin-bottom: 6vh;
  --max-font: 22;
  --min-font: 16;
  font-size: var(--responsive);
  line-height: 1.5;
  color: #000;
}
.page-programacao #the-content .item {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.page-programacao #the-content .item a {
  display: block;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  text-decoration: none;
}
.page-programacao #the-content .item a .content {
  padding: 20px;
}
.page-programacao #the-content .item a .content .title {
  font-family: "lanord";
  margin-bottom: 6vh;
  --max-font: 32;
  --min-font: 16;
  font-size: var(--responsive);
  line-height: 1.2;
  color: #000;
  padding-right: 20px;
}
.page-programacao #the-content .item a .content .subtitle {
  font-family: "lanord";
  --max-font: 18;
  --min-font: 12;
  font-size: var(--responsive);
  line-height: 1.3;
  color: #000;
  position: absolute;
  bottom: 46px;
}
.page-programacao #the-content .item a .content .btn {
  position: absolute;
  bottom: 20px;
  cursor: pointer;
  display: inline-block;
  width: 50%;
  height: 56px;
  overflow: hidden;
  border-radius: 100px;
  padding-top: 0;
  padding-left: 0;
}
.page-programacao #the-content .item a .content .btn a {
  text-decoration: none;
}
.page-programacao #the-content .item a .content .btn.black .btn-border {
  border: 2px solid #000;
}
.page-programacao #the-content .item a .content .btn.black .name {
  color: #000;
}
.page-programacao #the-content .item a .content .btn.black .name span {
  color: #000;
}
.page-programacao #the-content .item a .content .btn.msg-enviar {
  margin-top: 0;
  margin-left: 0;
}
.page-programacao #the-content .item a .content .btn.msg-enviar .name span:before {
  content: "Abrir";
}
.page-programacao #the-content .item a .content .btn .btn-border {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  overflow: hidden;
  z-index: 99;
  border: 2px solid #fff;
}
.page-programacao #the-content .item a .content .btn .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0px;
  background-color: #FF3228;
  border-radius: 100px;
  overflow: hidden;
  -webkit-transform: translateY(105%) scaleX(0.75);
          transform: translateY(105%) scaleX(0.75);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1), -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}
.page-programacao #the-content .item a .content .btn .name {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 13px 40px 0 60px;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  color: white;
}
.page-programacao #the-content .item a .content .btn .name span.text_color:before {
  color: #fff;
}
.page-programacao #the-content .item a .content .btn .name span:before {
  width: 100%;
  text-align: center;
  opacity: 1;
  width: 100%;
  text-align: center;
  content: "Ver mais";
  position: absolute;
  top: 25%;
  left: 0;
  padding-left: 20px;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.page-programacao #the-content .item a .event-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  will-change: transform;
}
.page-programacao #the-content .item:hover a .content .title, .page-programacao #the-content .item:hover a .content .subtitle {
  color: #fff;
}
.page-programacao #the-content .item:hover a .content .btn.text_color .btn-border {
  border-color: #fff;
}
.page-programacao #the-content .item:hover a .content .btn .bg {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-programacao #the-content .item:hover a .content .btn .name {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  color: white;
}
.page-programacao #the-content .item:hover a .event-background {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.page-programacao #past-events {
  padding: calc(20px);
  margin-bottom: 16vh;
}
.page-programacao #past-events:hover .row > div .ico {
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.page-programacao #past-events .row > div {
  padding-right: 6px;
}
.page-programacao #past-events .row > div .title-wrapper .ico {
  margin-right: 10px;
}
.page-programacao #past-events .row > div .title-wrapper span {
  display: inline-block;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.page-programacao #past-events a.past-event {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  -webkit-transition: color 0.1s ease-out;
  transition: color 0.1s ease-out;
}
.page-programacao #past-events a.past-event:hover {
  color: #fff;
}
.page-programacao #past-events a.past-event:hover .row span.bg {
  opacity: 1;
}
.page-programacao #past-events a.past-event .row {
  padding: 20px 0;
  border-top: 1px solid #A8A8A8;
  position: relative;
}
.page-programacao #past-events a.past-event .row span.bg {
  opacity: 0;
  position: absolute;
  z-index: -1;
  margin: -20px 0 0 0;
  padding: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
}
.page-programacao #past-events a.past-event .row div span.date {
  font-variant-numeric: tabular-nums;
}
@media only screen and (max-width: 600px) {
  .page-programacao #destaque {
    display: none;
  }
  .page-programacao #the-content #filter .row {
    margin-left: 0px;
  }
  .page-programacao #the-content #filter .row div #input-term {
    margin-left: -10px;
  }
  .page-programacao #the-content #filter .row .por-data {
    padding-left: 18px;
    margin-bottom: 8px;
  }
  .page-programacao #the-content #filter .row label .btn-sort {
    -webkit-transform: translateY(4px) scale(0.5);
            transform: translateY(4px) scale(0.5);
    margin-left: 10px;
  }
  .page-programacao #the-content #filter .row label .desc {
    -webkit-transform: scale(0.5) translateY(8px) rotate(180deg) !important;
            transform: scale(0.5) translateY(8px) rotate(180deg) !important;
    margin-left: 0;
  }
  .page-programacao #the-content .item a .content .title {
    font-size: 40px;
  }
  .page-programacao #the-content .item a .content .btn {
    width: calc(100% - 40px);
  }
  .page-programacao #the-content .item a .content .btn {
    width: calc(100% - 40px);
  }
}

.page-single header {
  min-height: 50vh;
  background-color: #3228AF;
}
.page-single header .row > div h1 {
  font-family: "lanord-regular";
  margin-top: 22vh;
  margin-bottom: 6vh;
  --max-font: 90;
  --min-font: 40;
  font-size: var(--responsive);
  line-height: 1.1;
  color: #000;
}
.page-single header .row > div h2 {
  font-family: "lanord";
  margin-bottom: 6vh;
  --max-font: 36;
  --min-font: 26;
  font-size: var(--responsive);
  line-height: 1.2;
  color: #000;
}
.page-single header .row > div .is-parallax {
  position: relative;
  max-height: 30vh;
}
.page-single header .row > div .is-parallax .parallax-wrapper {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}
.page-single header .row > div .is-parallax .parallax-wrapper img {
  will-change: transform;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
}
.page-single #the-content {
  padding-top: 36vh;
}
.page-single #the-content #intro {
  padding: 0 0 0 0;
  margin-top: 2vh;
  margin-bottom: 4vh;
}
.page-single #the-content #intro h3, .page-single #the-content #intro p {
  text-decoration: underline;
}
.page-single #the-content #intro p {
  text-align: right;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.page-single #the-content #intro:hover p {
  color: rgba(0, 0, 0, 0.1);
}
.page-single #the-content #intro .linha a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.page-single #the-content #intro .linha .local {
  margin-bottom: 0;
  text-align: left;
  text-decoration: none;
}
.page-single #the-content #intro .linha .data {
  margin-bottom: 0;
  text-decoration: none;
}
.page-single #the-content #intro .linha:hover p {
  color: #000;
}
.page-single #the-content #intro .previous-event {
  opacity: 0.33;
}
.page-single #the-content #intro .future-event {
  cursor: pointer;
}
.page-single #the-content #the-content-content-wrapper p em, .page-single #the-content #the-content-content-wrapper p i, .page-single #the-content #the-content-content-wrapper p b, .page-single #the-content #the-content-content-wrapper p u {
  font-size: inherit;
}
.page-single #the-content h3, .page-single #the-content p {
  font-family: "lanord";
  margin-bottom: 6vh;
  --max-font: 22;
  --min-font: 16;
  font-size: var(--responsive);
  line-height: 1.5;
  color: #000;
}
.page-single #the-content #creditos {
  margin-bottom: 12vh;
}
.page-single #the-content #creditos ul {
  padding: 0;
}
.page-single #the-content #creditos ul li {
  font-family: "lanord";
  --max-font: 22;
  --min-font: 16;
  font-size: var(--responsive);
  line-height: 1.5;
  color: #000;
  list-style: none;
  border-bottom: 1px solid #000;
  padding: 12px 0;
}
.page-single #the-content #ficha {
  padding-top: 12px;
}
.page-single #the-content #ficha p {
  margin: 0;
  padding: 0;
}
.page-single #the-content #ficha a {
  font-family: "lanord";
  --max-font: 22;
  --min-font: 16;
  font-size: var(--responsive);
  line-height: 1.5;
  color: #000;
}
.page-single #the-content #ficha a:hover {
  color: #FF3228;
}
@media only screen and (max-width: 600px) {
  .page-single #intro {
    overflow: hidden;
    margin: 0;
    padding: 0;
    min-width: 106%;
    margin-left: -3%;
  }
  .page-single #intro .row div {
    width: 50%;
    text-align: left;
  }
}

.page-noticias header {
  min-height: 20vh;
  padding-top: 20vh;
}
.page-noticias header #destaque {
  padding: calc(20px / 20);
  max-height: 75vh;
  overflow: hidden;
}
.page-noticias header #destaque:hover .row > div .ico {
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.page-noticias header #destaque .row > div {
  padding-right: 6px;
}
.page-noticias header #destaque .row > div .title-wrapper .ico {
  margin-right: 10px;
}
.page-noticias header #destaque .row > div .title-wrapper span {
  display: inline-block;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.page-noticias header #destaque .row #pic .is-parallax .parallax-wrapper {
  overflow: hidden;
}
.page-noticias header #destaque .row #pic img {
  min-width: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 60vh;
}
.page-noticias header #destaque .row #pic .no-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: calc(20px * 2) 20px;
}
.page-noticias header #destaque .row #pic .no-pic h1 {
  width: 75%;
  --max-font: 36;
  --min-font: 24;
  font-size: var(--responsive);
  line-height: 1;
  color: #fff;
}
.page-noticias header #destaque .row #data {
  background-color: #FF3228;
  border-right: 7px solid white;
  margin-left: -6px;
  padding: 40px 16px;
  position: relative;
  min-height: 55vh;
  max-height: 60vh;
}
.page-noticias header #destaque .row #data .date {
  color: #000;
}
.page-noticias header #destaque .row #data .title {
  --max-font: 36;
  --min-font: 24;
  font-size: var(--responsive);
  line-height: 1;
  color: #000;
}
.page-noticias header #destaque .row #data .desc {
  color: #000;
}
.page-noticias header #destaque .row #data .btn {
  position: absolute;
  bottom: calc((20px * 2) + 20px);
}
.page-noticias #the-content {
  margin-top: 16vh;
  padding-bottom: 16vh;
}
.page-noticias #the-content:hover .section-title > div .ico {
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.page-noticias #the-content form#filter-noticias .row > div .btn-sort {
  width: 30px;
  height: 30px;
}
.page-noticias #the-content form#filter-noticias .row > div .btn-sort.asc:after:checked {
  opacity: 1;
}
.page-noticias #the-content form#filter-noticias .row > div .btn-sort.desc {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-noticias #the-content form#filter-noticias .row > div input[type=radio] {
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  margin-right: 5px;
  position: relative;
  width: 30px;
  top: 6px;
  -webkit-appearance: none;
}
.page-noticias #the-content form#filter-noticias .row > div input[type=radio]:after {
  background: transparent url("../img/order-down.png") scroll no-repeat center center;
  opacity: 0.5;
  content: "";
  display: block;
  height: 30px;
  left: 0px;
  position: relative;
  top: 0;
  width: 30px;
}
.page-noticias #the-content form#filter-noticias .row > div input[type=radio]:checked:after {
  opacity: 1;
}
.page-noticias #the-content form#filter-noticias .row > div #input-term {
  padding: 8px 8px 8px 48px;
  border: none;
  background: transparent url("../img/lupa@2x.png") scroll no-repeat 18px 12px;
  background-size: 20px;
}
.page-noticias #the-content form#filter-noticias .row > div button {
  border: none;
  background-color: transparent;
  font-family: "lanord";
  --max-font: 90;
  --min-font: 40;
  font-size: var(--responsive);
  line-height: 1.1;
  color: #000;
  padding: 14px 8px;
}
.page-noticias #the-content #intro {
  padding: 2vh 0 4vh 0;
}
.page-noticias #the-content #intro h3, .page-noticias #the-content #intro p {
  text-decoration: underline;
}
.page-noticias #the-content #intro p {
  text-align: right;
}
.page-noticias #the-content h3, .page-noticias #the-content p {
  font-family: "lanord";
  margin-bottom: 6vh;
  --max-font: 22;
  --min-font: 16;
  font-size: var(--responsive);
  line-height: 1.5;
  color: #000;
}
.page-noticias #the-content .item {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.page-noticias #the-content .item a {
  display: block;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  text-decoration: none;
}
.page-noticias #the-content .item a .content {
  padding: 20px;
}
.page-noticias #the-content .item a .content .title {
  font-family: "lanord";
  margin-bottom: 6vh;
  --max-font: 32;
  --min-font: 16;
  font-size: var(--responsive);
  line-height: 1.2;
  color: #000;
  padding-right: 20px;
}
.page-noticias #the-content .item a .content .subtitle {
  font-family: "lanord";
  --max-font: 18;
  --min-font: 12;
  font-size: var(--responsive);
  line-height: 1.3;
  color: #000;
  position: absolute;
  bottom: 46px;
}
.page-noticias #the-content .item a .content .btn {
  position: absolute;
  bottom: 20px;
  cursor: pointer;
  display: inline-block;
  width: 50%;
  height: 56px;
  overflow: hidden;
  border-radius: 100px;
  padding-top: 0;
  padding-left: 0;
}
.page-noticias #the-content .item a .content .btn a {
  text-decoration: none;
}
.page-noticias #the-content .item a .content .btn.black .btn-border {
  border: 2px solid #000;
}
.page-noticias #the-content .item a .content .btn.black .name {
  color: #000;
}
.page-noticias #the-content .item a .content .btn.black .name span {
  color: #000;
}
.page-noticias #the-content .item a .content .btn.msg-enviar {
  margin-top: 0;
  margin-left: 0;
}
.page-noticias #the-content .item a .content .btn.msg-enviar .name span:before {
  content: "Abrir";
}
.page-noticias #the-content .item a .content .btn .btn-border {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  overflow: hidden;
  z-index: 99;
  border: 2px solid #fff;
}
.page-noticias #the-content .item a .content .btn .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0px;
  background-color: #FF3228;
  border-radius: 100px;
  overflow: hidden;
  -webkit-transform: translateY(105%) scaleX(0.75);
          transform: translateY(105%) scaleX(0.75);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1), -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}
.page-noticias #the-content .item a .content .btn .name {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 13px 40px 0 60px;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  color: white;
}
.page-noticias #the-content .item a .content .btn .name span.text_color:before {
  color: #fff;
}
.page-noticias #the-content .item a .content .btn .name span:before {
  width: 100%;
  text-align: center;
  opacity: 1;
  width: 100%;
  text-align: center;
  content: "Ver mais";
  position: absolute;
  top: 25%;
  left: 0;
  padding-left: 20px;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.page-noticias #the-content .item a .event-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  will-change: transform;
}
.page-noticias #the-content .item:hover a .content .title, .page-noticias #the-content .item:hover a .content .subtitle {
  color: #fff;
}
.page-noticias #the-content .item:hover a .content .btn.text_color .btn-border {
  border-color: #fff;
}
.page-noticias #the-content .item:hover a .content .btn .bg {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-noticias #the-content .item:hover a .content .btn .name {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  color: white;
}
.page-noticias #the-content .item:hover a .event-background {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.wp-block-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.spacer {
  margin: 0;
  padding: 0;
  height: 16vh;
}

#loader {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  overflow: hidden;
  z-index: 999;
}
#loader #loader-bg {
  background-color: white;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#loader img {
  position: absolute;
  -webkit-transform: scale(0);
          transform: scale(0);
  top: calc(50vh - 88px);
  left: calc(50vw - 88px);
  will-change: transform;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  opacity: 1;
}

.page {
  z-index: 2;
}
.page .container {
  max-width: 100%;
}
.page .row {
  max-width: calc(98% - 6px);
  margin: 0 auto;
}

#footer {
  background-color: #e1e1e1;
}
#footer .row.pad-6vh {
  padding: 6vh 0 2vh 0;
}
#footer .row.no-pad {
  padding: 0;
}
#footer .row.last {
  padding-bottom: 6vh;
}
#footer .row > div a {
  color: inherit;
  text-decoration: none;
}
#footer .row > div a:hover {
  color: #FF3228;
}
#footer .row > div .icon {
  will-change: transform;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
#footer .row > div .icon:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
#footer .row > div .icon:hover path {
  fill: #FF3228;
}
#footer .row > div .logo-apoio {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
#footer .row > div .logo-apoio:hover {
  -webkit-transform: scale(0.65);
          transform: scale(0.65);
}

.gray {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  border: 1px solid red;
  position: absolute;
  overflow: visible;
}
.gray .text {
  font-size: 5vw;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn {
  cursor: pointer;
  display: inline-block;
  width: auto;
  min-width: 33%;
  height: 56px;
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  margin: 6vh 0 0 0;
  padding-top: 0;
  padding-left: 0;
}
.btn a {
  text-decoration: none;
}
.btn.black .btn-border {
  border: 2px solid #000;
}
.btn.black .name {
  color: #000;
}
.btn.black .name span {
  color: #000;
}
.btn.bg-evento {
  width: 50%;
}
.btn.bg-evento:hover .bg {
  background-color: #fff;
}
.btn.msg-enviar {
  margin-top: 0;
  margin-left: calc(20% + 20px);
  width: 100%;
}
.btn.msg-enviar .name span:before {
  content: "Enviar";
}
.btn .btn-border {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  overflow: hidden;
  z-index: 99;
  border: 2px solid #fff;
}
.btn .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0px;
  background-color: #FF3228;
  border-radius: 100px;
  overflow: hidden;
  -webkit-transform: translateY(105%) scaleX(0.75);
          transform: translateY(105%) scaleX(0.75);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1), -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}
.btn .name {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 13px 40px 0 60px;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  color: white;
}
.btn .name span:before {
  width: 100%;
  text-align: center;
  opacity: 1;
  width: 100%;
  text-align: center;
  content: "Ver mais";
  position: absolute;
  top: 25%;
  left: 0;
  padding-left: 20px;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.btn:hover .bg {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.btn:hover .name {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  color: white;
}
.swiper-container {
  height: calc(75vh - 20px);
  margin: 2%;
  position: relative;
}

.swiper-slide {
  overflow: hidden;
}

.slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
}

.slide-content {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 100px;
  top: 100px;
  z-index: 2;
}

.hide-desktop {
  display: none;
}

@media only screen and (max-width: 600px) {
  .hide-desktop {
    display: inline-block;
  }
  .hide-mobile {
    display: none;
  }
}