:root {
  --var-primary-color:#fff;
  --var-max-blur:20px;
  --var-max-header-blur:3px;
  --var-margem:35px;
  --var-margem-eventos:15px;
  --var-footer-h:0px;
  --unnamed-font-size-16: 16px;
  --unnamed-font-size-18: 18px;
  --unnamed-font-size-22: 22px;
  --unnamed-font-size-28: 28px;
  --unnamed-font-size-32: 32px;
  --unnamed-font-size-38: 38px;
  --unnamed-font-size-48: 48px;
  --unnamed-character-spacing-0: 0px;
  --unnamed-line-spacing-20: 20px;
  --unnamed-line-spacing-22: 22px;
  --unnamed-line-spacing-28: 28px;
  --unnamed-line-spacing-32: 32px;
  --unnamed-line-spacing-40: 40px;
  --unnamed-line-spacing-44: 44px;
}
@media only screen and (max-width: 880px) {
  :root {
    --var-margem:20px;
  }
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
  background-color: #000;
  font-family: "Roboto Mono", monospace;
  color: var(--var-primary-color);
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  -moz-transition: all 0.3s ease-out;
  /* WebKit */
  -webkit-transition: all 0.3s ease-out;
  /* Opera */
  -o-transition: all 0.3s ease-out;
  /* Standard */
  transition: all 0.3s ease-out;
}

a:hover {
  opacity: 0.5;
}

.bold, strong, b {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.upper {
  text-transform: uppercase;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

.relative {
  position: relative;
}

.acenter {
  text-align: center;
}

input, textarea, select {
  outline: none;
}

.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

::selection {
  background-color: #000;
  color: #fff;
}

textarea,
input[type=text],
input[type=button],
input[type=submit],
input[type=password],
input[type=date] {
  -webkit-appearance: none;
  border-radius: 0;
}

.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-space-between {
  justify-content: space-between;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.ta-right {
  text-align: right;
}

.background-image {
  position: fixed;
  width: calc(100vw + 60px);
  height: calc(100vh + 60px);
  top: -30px;
  left: -30px;
  z-index: 900;
}
.background-image video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
  object-fit: cover;
}
.background-image.blur {
  -webkit-filter: blur(var(--var-max-blur));
  /* Safari 6.0 - 9.0 */
  filter: blur(var(--var-max-blur));
}
.background-image .h1 {
  max-width: 880px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 880px) {
  .background-image .h1 {
    width: 70%;
  }
}
.background-image .h1 .h1-wrap {
  position: relative;
}
.background-image .h1 .h1-wrap h1 img {
  max-width: 100%;
  height: auto;
  display: block;
}
.background-image .h1 .h1-wrap .data {
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  top: 65%;
  font-size: clamp(12px, 3.5vw, 50px);
  letter-spacing: -1px;
  word-spacing: 15px;
}
@media only screen and (max-width: 900px) {
  .background-image .h1 .h1-wrap .data {
    font-size: 5vw;
  }
}

#main {
  width: 100%;
  position: relative;
  min-height: 100vh;
}

#cookie_msg {
  display: none;
  width: 100%;
  position: fixed;
  background-color: #41ff40;
  left: 0px;
  bottom: 0px;
  z-index: 99997;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}
#cookie_msg a {
  text-decoration: underline;
}

.loader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 99998;
}

header {
  position: absolute;
  width: 100%;
  padding: var(--var-margem);
  padding-top: calc(var(--var-margem) - 10px);
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 880px) {
  header {
    padding-top: calc(var(--var-margem) - 0px);
  }
}
header.blur {
  -webkit-backdrop-filter: blur(var(--var-max-header-blur));
  backdrop-filter: blur(var(--var-max-header-blur));
}
header .header-wrap {
  position: relative;
}
header .header-wrap nav {
  align-self: flex-end;
  margin-bottom: 5px;
  font-size: var(--unnamed-font-size-18);
  line-height: var(--unnamed-line-spacing-20);
  font-weight: 500;
  letter-spacing: 0px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1112px) {
  header .header-wrap nav {
    font-size: var(--unnamed-font-size-16);
    line-height: var(--unnamed-line-spacing-20);
  }
}
@media only screen and (max-width: 1023px) {
  header .header-wrap nav {
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    margin-left: calc(-1 * var(--var-margem));
    z-index: 1020;
    align-self: auto;
    margin-bottom: 0px;
    top: calc(-1 * var(--var-margem));
  }
}
header .header-wrap nav ul {
  margin: 0;
  padding: 0;
}
header .header-wrap nav ul li {
  list-style: none;
}
header .header-wrap nav ul.menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  header .header-wrap nav ul.menu {
    display: block;
    justify-content: inherit;
    margin-left: var(--var-margem);
    margin-right: var(--var-margem);
    padding-top: 130px;
    width: calc(100vw - 2 * var(--var-margem));
  }
}
header .header-wrap nav ul.menu li {
  -moz-transition: border-bottom-color 0.2s ease-out;
  -webkit-transition: border-bottom-color 0.2s ease-out;
  -o-transition: border-bottom-color 0.2s ease-out;
  transition: border-bottom-color 0.2s ease-out;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  margin-right: 80px;
}
@media only screen and (max-width: 1340px) {
  header .header-wrap nav ul.menu li {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 1160px) {
  header .header-wrap nav ul.menu li {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 1023px) {
  header .header-wrap nav ul.menu li {
    margin-right: 0px;
    font-size: var(--unnamed-font-size-38);
    line-height: var(--unnamed-line-spacing-40);
    width: 100%;
    border-bottom: none;
    padding-bottom: 0px;
    border-bottom: solid 2px #fff;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  header .header-wrap nav ul.menu li:first-child {
    border-top: solid 2px #fff;
  }
}
@media only screen and (max-width: 767px) {
  header .header-wrap nav ul.menu li {
    font-size: var(--unnamed-font-size-32);
    line-height: var(--unnamed-line-spacing-40);
  }
}
header .header-wrap nav ul.menu li.sel, header .header-wrap nav ul.menu li:hover {
  padding-bottom: 2px;
  border-bottom-color: #fff;
}
@media only screen and (max-width: 1023px) {
  header .header-wrap nav ul.menu li.sel, header .header-wrap nav ul.menu li:hover {
    padding-bottom: 15px;
  }
}
header .header-wrap nav ul.menu li.sel a, header .header-wrap nav ul.menu li:hover a {
  opacity: 1;
}
header .header-wrap nav ul.menu li.lang:hover, header .header-wrap nav ul.menu li.lang.sel {
  padding-bottom: 2px;
  border-bottom-color: transparent;
}
@media only screen and (min-width: 1024px) {
  header .header-wrap nav ul.menu li.langs:hover, header .header-wrap nav ul.menu li.langs.sel {
    padding-bottom: 2px;
    border-bottom-color: transparent;
  }
}
header .header-wrap nav .lang, header .header-wrap nav .langs {
  position: relative;
  cursor: pointer;
  z-index: 200;
}
@media only screen and (max-width: 1023px) {
  header .header-wrap nav .lang, header .header-wrap nav .langs {
    margin-top: 20px;
    width: 100%;
    padding-left: var(--var-margem);
    padding-right: var(--var-margem);
    text-align: right;
  }
}
header .header-wrap nav .lang p, header .header-wrap nav .langs p {
  padding-bottom: 2px;
  padding-right: 20px;
}
@media only screen and (max-width: 1023px) {
  header .header-wrap nav .lang p, header .header-wrap nav .langs p {
    font-size: var(--unnamed-font-size-38);
    line-height: var(--unnamed-line-spacing-40);
    padding-bottom: 0px;
    padding-right: 0px;
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  header .header-wrap nav .lang p, header .header-wrap nav .langs p {
    font-size: var(--unnamed-font-size-32);
    line-height: var(--unnamed-line-spacing-40);
  }
}
header .header-wrap nav .lang p:after, header .header-wrap nav .langs p:after {
  position: absolute;
  content: "";
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  right: 1px;
  top: 4px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  transform-origin: 50% 50%;
}
@media only screen and (max-width: 1023px) {
  header .header-wrap nav .lang p:after, header .header-wrap nav .langs p:after {
    display: none;
  }
}
header .header-wrap nav .lang ul, header .header-wrap nav .langs ul {
  position: absolute;
  display: none;
  z-index: 300;
}
@media only screen and (max-width: 1023px) {
  header .header-wrap nav .lang ul, header .header-wrap nav .langs ul {
    display: inline-block;
    position: relative;
  }
  header .header-wrap nav .lang ul li, header .header-wrap nav .langs ul li {
    font-size: var(--unnamed-font-size-38);
    line-height: var(--unnamed-line-spacing-40);
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    padding-left: 25px;
  }
}
@media only screen and (max-width: 1023px) and (max-width: 767px) {
  header .header-wrap nav .lang ul li, header .header-wrap nav .langs ul li {
    font-size: var(--unnamed-font-size-32);
    line-height: var(--unnamed-line-spacing-40);
  }
}
@media only screen and (max-width: 1023px) and (max-width: 1023px) {
  header .header-wrap nav .lang ul li:before, header .header-wrap nav .langs ul li:before {
    content: " / ";
    top: 0px;
    left: -5px;
    position: absolute;
    color: #fff;
  }
}
@media only screen and (max-width: 1023px) {
  header .header-wrap nav .lang.open, header .header-wrap nav .langs.open {
    display: none;
  }
}
header .header-wrap nav .lang.open p:after, header .header-wrap nav .langs.open p:after {
  top: 8px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
@media only screen and (max-width: 1023px) {
  header .header-wrap nav .langs {
    margin-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
  }
  header .header-wrap nav .langs ul {
    display: block;
  }
  header .header-wrap nav .langs ul li {
    display: inline-block;
    font-size: 15px;
    width: auto;
    border: none !important;
    line-height: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  header .header-wrap nav .langs ul li:before {
    left: 8px;
  }
  header .header-wrap nav .langs ul li:first-child {
    padding-left: 0px;
  }
  header .header-wrap nav .langs ul li:first-child:before {
    display: none;
  }
  header .header-wrap nav .langs ul li:hover {
    padding-bottom: 0px;
  }
  header .header-wrap nav .langs:hover, header .header-wrap nav .langs.sel {
    padding-bottom: 2px;
    border-bottom-color: transparent;
  }
}
@media only screen and (max-width: 1023px) {
  header .header-wrap .logos {
    position: relative;
    z-index: 1030;
  }
}
header .header-wrap .logos a {
  position: relative;
  margin-left: 15px;
  top: -3px;
  height: 70px;
  display: inline-block;
}
@media only screen and (max-width: 1023px) {
  header .header-wrap .logos a {
    height: 60px;
  }
}
header .header-wrap .logos a:first-child {
  top: 0px;
  margin-left: 0px;
}
header .header-wrap .logos a img {
  max-height: 100%;
  width: auto;
}
header .menu_open_wrap {
  display: none;
}
@media only screen and (max-width: 1023px) {
  header .menu_open_wrap {
    z-index: 1030;
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
  }
}
header .menu_open_wrap .menu_open {
  width: 35px;
  height: 26px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
}
header .menu_open_wrap .menu_open span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header .menu_open_wrap .menu_open span:nth-child(1) {
  top: 0px;
}
header .menu_open_wrap .menu_open span:nth-child(2), header .menu_open_wrap .menu_open span:nth-child(3) {
  top: 12px;
}
header .menu_open_wrap .menu_open span:nth-child(3) {
  box-shadow: none;
}
header .menu_open_wrap .menu_open span:nth-child(4) {
  top: 24px;
  width: 100%;
}
header .menu_open_wrap .menu_open.open span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
  box-shadow: none;
}
header .menu_open_wrap .menu_open.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .menu_open_wrap .menu_open.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .menu_open_wrap .menu_open.open span:nth-child(4) {
  top: 7px;
  width: 0%;
  left: 50%;
  box-shadow: none;
}

main {
  position: relative;
  z-index: 1000;
}
main .texto {
  font-size: var(--unnamed-font-size-22);
  line-height: var(--unnamed-line-spacing-32);
  font-weight: 500;
}
@media only screen and (max-width: 1280px) {
  main .texto {
    font-size: var(--unnamed-font-size-18);
    line-height: var(--unnamed-line-spacing-28);
  }
}
@media only screen and (max-width: 767px) {
  main .texto {
    font-size: var(--unnamed-font-size-16);
    line-height: var(--unnamed-line-spacing-22);
  }
}
main .texto a {
  text-decoration: underline;
}
main article {
  padding-left: var(--var-margem);
  padding-right: var(--var-margem);
}
main article#chome {
  padding-top: 100vh;
}
main article#chome .texto {
  width: 70%;
  padding-top: 20px;
  max-width: 950px;
}
@media only screen and (max-width: 880px) {
  main article#chome .texto {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
main article.home-item .item-wrap {
  min-height: 100vh;
}
main article .item-wrap {
  padding-top: 90px;
}
main article .item-wrap h2 {
  font-size: var(--unnamed-font-size-38);
  line-height: var(--unnamed-line-spacing-40);
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: uppercase;
  border-bottom: solid 1px #fff;
  padding-bottom: 10px;
}
main article#cmapa h2 {
  border-bottom: none;
}
main .eventos {
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
main .eventos li {
  width: calc((100% - var(--var-margem-eventos)) / 2);
  list-style: none;
  background-color: #000;
  padding: 20px;
  margin-top: var(--var-margem-eventos);
  border-radius: 5px;
  -moz-transition: all 0.3s ease-out;
  /* WebKit */
  -webkit-transition: all 0.3s ease-out;
  /* Opera */
  -o-transition: all 0.3s ease-out;
  /* Standard */
  transition: all 0.3s ease-out;
  position: relative;
}
@media only screen and (max-width: 880px) {
  main .eventos li {
    width: 100%;
  }
}
main .eventos li:hover {
  box-shadow: inset 0px 0px 80px rgba(255, 255, 255, 0.5);
}
main .eventos li:hover .bt_link {
  opacity: 1;
}
main .eventos li .evento-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}
main .eventos li .bt_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 900;
  opacity: 0;
}
main .eventos li .bt_link p {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-size: var(--unnamed-font-size-16);
  line-height: var(--unnamed-line-spacing-18);
}
main .eventos li .header {
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  main .eventos li .header {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  main .eventos li .header .header-info {
    width: 100%;
    order: 2;
  }
}
main .eventos li .header .header-info h2 {
  font-size: var(--unnamed-font-size-38);
  line-height: var(--unnamed-line-spacing-40);
  font-weight: 700;
  letter-spacing: 0px;
  margin: 0;
  padding: 0;
  border: none;
}
@media only screen and (max-width: 767px) {
  main .eventos li .header .header-info h2 {
    font-size: var(--unnamed-font-size-32);
    line-height: var(--unnamed-line-spacing-32);
  }
}
main .eventos li .header .header-info .subtitulo {
  font-size: var(--unnamed-font-size-32);
  line-height: var(--unnamed-line-spacing-34);
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  main .eventos li .header .header-info .subtitulo {
    font-size: var(--unnamed-font-size-22);
    line-height: var(--unnamed-line-spacing-32);
  }
}
main .eventos li .header .header-pais {
  padding-left: 20px;
  font-size: var(--unnamed-font-size-22);
  line-height: var(--unnamed-line-spacing-22);
}
@media only screen and (max-width: 767px) {
  main .eventos li .header .header-pais {
    width: 100%;
    order: 1;
    padding-left: 0px;
    margin-bottom: 15px;
  }
}
main .eventos li .img {
  margin-top: 25px;
  height: 0;
  padding-bottom: 56%;
  position: relative;
}
main .eventos li .img img {
  position: absolute;
  max-width: 100%;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
main .eventos li .rodape {
  margin-top: 25px;
}
main .eventos li .rodape p {
  font-size: var(--unnamed-font-size-16);
  line-height: var(--unnamed-line-spacing-18);
}
main .eventos li .rodape p:last-child {
  margin-left: 20px;
}
main .container_lista {
  margin: 0;
  padding: 0;
  margin-top: 30px;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
main .container_lista li {
  list-style: none;
  width: calc((100% - 3 * var(--var-margem-eventos)) / 4);
  background-color: #000;
  padding: 20px;
  margin-top: var(--var-margem-eventos);
  border-radius: 5px;
  -moz-transition: all 0.3s ease-out;
  /* WebKit */
  -webkit-transition: all 0.3s ease-out;
  /* Opera */
  -o-transition: all 0.3s ease-out;
  /* Standard */
  transition: all 0.3s ease-out;
  position: relative;
  margin-left: var(--var-margem-eventos);
}
@media only screen and (min-width: 1121px) and (max-width: 1280px) {
  main .container_lista li {
    width: calc((100% - 2 * var(--var-margem-eventos)) / 3);
  }
  main .container_lista li:nth-child(3n+1) {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 1120px) {
  main .container_lista li {
    width: calc((100% - 1 * var(--var-margem-eventos)) / 2);
  }
  main .container_lista li:nth-child(2n+1) {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 1280px) {
  main .container_lista li:nth-child(4n+1) {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  main .container_lista li {
    margin-left: 0px !important;
    width: 100%;
  }
}
main .container_lista li:hover {
  box-shadow: inset 0px 0px 50px rgba(255, 255, 255, 0.6);
}
main .container_lista li a {
  background-color: aqua;
  height: 100%;
}
main .container_lista li .news-wrap {
  height: 100%;
}
main .container_lista li h3 {
  font-size: var(--unnamed-font-size-32);
  line-height: var(--unnamed-line-spacing-34);
  font-weight: 500;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  main .container_lista li h3 {
    font-size: var(--unnamed-font-size-22);
    line-height: var(--unnamed-line-spacing-32);
  }
}
main .container_lista li .resumo {
  margin-top: 20px;
  font-size: var(--unnamed-font-size-16);
  line-height: var(--unnamed-line-spacing-22);
  flex-grow: 1;
  min-height: 150px;
}
main .container_lista li .footer {
  width: 100%;
  margin-top: 20px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 101;
  font-size: var(--unnamed-font-size-16);
  line-height: var(--unnamed-line-spacing-18);
}
main .container_lista li .footer .data {
  margin-left: 15px;
  align-self: flex-end;
  text-transform: lowercase;
}
main .ver_mais_wrap {
  position: relative;
  padding-top: 30px;
  padding-bottom: 50px;
}
main .ver_mais_wrap .plus {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translate(-50%, 0%);
  background: linear-gradient(#ffffff, #ffffff), linear-gradient(#ffffff, #ffffff), transparent;
  background-position: center;
  background-size: 50% 1px, 1px 50%;
  background-repeat: no-repeat;
  border: solid 1px #ffffff;
  display: inline-block;
  width: 44px;
  height: 44px;
  transition: opacity 0.3s ease-out;
}
main .ver_mais_wrap.hide {
  display: none;
}
main .mapa-wrap {
  min-height: calc(100vh - 2.7 * var(--var-footer-h));
  position: relative;
}
@media only screen and (max-width: 880px) {
  main .mapa-wrap {
    min-height: calc(95vh - 2.7 * var(--var-footer-h));
  }
}
main .mapa-wrap #map {
  position: absolute !important;
  height: 100%;
  width: 100%;
}
main .mapa-wrap .leaflet-tile-pane {
  -webkit-filter: grayscale(100%) brightness(55%);
  filter: grayscale(100%) brightness(55%);
}
main .mapa-wrap .leaflet-popup-content-wrapper {
  background-color: #000;
  background-color: transparent;
  color: #fff;
  border: none;
  border-radius: 0px;
  max-width: 200px;
  text-align: center;
}
main .mapa-wrap .leaflet-container a.leaflet-popup-close-button {
  color: #fff;
  display: none;
}
main .mapa-wrap .leaflet-popup-tip {
  background-color: #000;
  display: none;
}
main .mapa-wrap .leaflet-popup-content {
  margin-bottom: 0px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Roboto Mono", monospace !important;
  background-color: #000;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 3px;
  padding-right: 3px;
}
main .mapa-wrap .leaflet-popup-content a {
  color: inherit;
}
main .detalhe-container {
  min-height: calc(100vh - var(--var-footer-h));
  padding-left: var(--var-margem);
  padding-right: var(--var-margem);
}
main .detalhe-container .header {
  padding-top: 140px;
  border-bottom: solid 1px #fff;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  main .detalhe-container .header {
    flex-wrap: wrap;
    width: 100%;
  }
}
main .detalhe-container .header h1 {
  font-size: var(--unnamed-font-size-38);
  line-height: var(--unnamed-line-spacing-40);
  text-transform: uppercase;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  main .detalhe-container .header h1 {
    font-size: var(--unnamed-font-size-32);
    line-height: var(--unnamed-line-spacing-32);
    order: 2;
    width: 100%;
  }
}
main .detalhe-container .header .data {
  font-size: var(--unnamed-font-size-22);
  line-height: var(--unnamed-line-spacing-32);
  margin-left: 30px;
  font-weight: 500;
  align-self: flex-end;
}
@media only screen and (max-width: 767px) {
  main .detalhe-container .header .data {
    margin-left: 0px;
    margin-bottom: 5px;
    width: 100%;
  }
}
main .detalhe-container .header .subtitulo {
  font-size: var(--unnamed-font-size-32);
  line-height: var(--unnamed-line-spacing-34);
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  main .detalhe-container .header .subtitulo {
    font-size: var(--unnamed-font-size-22);
    line-height: var(--unnamed-line-spacing-32);
    width: 100%;
  }
}
main .detalhe-container .header .pais_txt {
  font-size: var(--unnamed-font-size-22);
  line-height: var(--unnamed-line-spacing-32);
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  main .detalhe-container .header .pais_txt {
    margin-left: 0px;
    margin-bottom: 5px;
    order: 1;
  }
}
main .detalhe-container .img {
  width: 75%;
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  main .detalhe-container .img {
    width: 100%;
  }
}
main .detalhe-container .img img {
  max-width: 100%;
  height: auto;
  display: block;
}
main .detalhe-container .conteudo-wrap {
  margin-top: 50px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1120px) {
  main .detalhe-container .conteudo-wrap {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 880px) {
  main .detalhe-container .conteudo-wrap {
    display: block;
  }
}
main .detalhe-container .conteudo-wrap .texto {
  margin-top: 0px;
  width: 50%;
}
@media only screen and (max-width: 1280px) {
  main .detalhe-container .conteudo-wrap .texto {
    width: 60%;
  }
}
@media only screen and (max-width: 880px) {
  main .detalhe-container .conteudo-wrap .texto {
    width: 100%;
  }
}
main .detalhe-container .conteudo-wrap aside {
  width: 25%;
}
@media only screen and (max-width: 880px) {
  main .detalhe-container .conteudo-wrap aside {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
main .detalhe-container .ficheiros {
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 880px) {
  main .detalhe-container .ficheiros {
    margin-left: 25px;
  }
}
main .detalhe-container .ficheiros li {
  list-style: none;
  margin-top: 20px;
  font-size: var(--unnamed-font-size-22);
  line-height: var(--unnamed-line-spacing-32);
  position: relative;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
@media only screen and (max-width: 1280px) {
  main .detalhe-container .ficheiros li {
    font-size: var(--unnamed-font-size-16);
    line-height: var(--unnamed-line-spacing-22);
  }
}
main .detalhe-container .ficheiros li:first-child {
  margin-top: 0px;
}
main .detalhe-container .ficheiros li:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  left: -25px;
  top: 9px;
  background-image: url(/images/icon-link.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px;
}
main .detalhe-container.evento .img {
  margin-top: 0px;
  width: 100%;
}
main .detalhe-container.evento .img img {
  width: 100%;
}
main .detalhe-container.evento .conteudo-wrap {
  margin-top: 30px;
  padding-bottom: 40px;
}
main .detalhe-container.evento .mapa-wrap {
  margin-bottom: 100px;
}
main .detalhe-container.evento .ficheiros.links-evento li {
  margin-top: 0px;
  margin-bottom: 20px;
}
main .detalhe-container.evento .ficheiros.links-evento li.data:before {
  background-image: url(/images/icon-calendar.svg);
  width: 22px;
  height: 18px;
  top: 7px;
  left: -28px;
  background-size: contain;
}
@media only screen and (max-width: 1280px) {
  main .detalhe-container.evento .ficheiros.links-evento li.data:before {
    top: 2px;
  }
}
main .detalhe-container.evento .ficheiros.links-evento li.local {
  width: 80%;
}
@media only screen and (max-width: 1280px) {
  main .detalhe-container.evento .ficheiros.links-evento li.local {
    width: 100%;
  }
}
main .detalhe-container.evento .ficheiros.links-evento li.local:before {
  background-image: url(/images/icon-pin.svg);
  width: 22px;
  height: 18px;
  left: -25px;
  top: 7px;
  background-size: contain;
}
@media only screen and (max-width: 1280px) {
  main .detalhe-container.evento .ficheiros.links-evento li.local:before {
    top: 3px;
  }
}
main .detalhe-container.local .header {
  border-bottom: none;
  padding-bottom: 50px;
}
main .detalhe-container.local .img {
  width: calc((100% - var(--var-margem-eventos)) / 2);
  margin-top: 0px;
}
@media only screen and (max-width: 880px) {
  main .detalhe-container.local .img {
    width: 100%;
    margin-bottom: 60px;
  }
}
main .detalhe-container.local .img img {
  max-width: 100%;
  height: auto;
  display: block;
}
main .detalhe-container.local .conteudo-wrap {
  margin-top: 0px;
  width: calc((100% - var(--var-margem-eventos)) / 2);
}
@media only screen and (max-width: 880px) {
  main .detalhe-container.local .conteudo-wrap {
    width: 100%;
  }
}
main .detalhe-container.local .conteudo-wrap h1 {
  padding-bottom: 10px;
  margin-top: 0px;
  border-bottom: solid 1px #fff;
}
main .detalhe-container.local .conteudo-wrap .texto {
  width: 100%;
  margin-top: 20px;
}
main .detalhe-container.local .mapa-wrap {
  margin-bottom: 100px;
}
main .detalhe-container.local .eventos-wrap {
  padding-bottom: 80px;
}
main .detalhe-container.local .eventos-wrap h2 {
  border-bottom: solid 1px #fff;
  padding-bottom: 10px;
  font-size: var(--unnamed-font-size-38);
  line-height: var(--unnamed-line-spacing-40);
  text-transform: uppercase;
  font-weight: 700;
}
main .detalhe-container.local .eventos-wrap .header {
  padding-bottom: 0px;
  padding-top: 0px;
}
main .detalhe-container.local .eventos-wrap .img {
  width: 100%;
  margin-top: 25px;
}
@media only screen and (max-width: 1120px) {
  main#wrap-mapa h1 {
    font-size: var(--unnamed-font-size-28);
    line-height: var(--unnamed-line-spacing-32);
  }
}
main#wrap-politica-de-privacidade .conteudo-wrap {
  width: 100%;
}
main#wrap-politica-de-privacidade .conteudo-wrap .texto {
  font-size: 15px;
  line-height: 19px;
}

footer {
  z-index: 1000;
  position: fixed;
  width: 100%;
  bottom: 0px;
  padding: var(--var-margem);
  padding-top: 0px;
}
footer.relative {
  position: relative;
  bottom: auto;
}
footer.hide {
  z-index: -1;
}
footer .footer-inner {
  border-top: solid 1px #fff;
}
footer .footer-inner .item {
  padding-top: 15px;
  width: 25%;
  position: relative;
}
@media only screen and (max-width: 1120px) {
  footer .footer-inner .item {
    width: 33.3333333333%;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer-inner .item {
    width: 50%;
  }
}
footer .footer-inner .item:first-child:after {
  position: absolute;
  top: 0px;
  right: 0px;
  content: "";
  width: 1px;
  height: 80%;
  background-color: #fff;
}
footer .footer-inner .item:first-child img {
  position: relative;
  max-width: calc(100% - 15px);
  height: auto;
  display: block;
  max-width: 53%;
}
@media only screen and (max-width: 880px) {
  footer .footer-inner .item:first-child img {
    max-width: 80%;
  }
}
footer .footer-inner .item:last-child {
  padding-top: 20px;
}
footer .footer-inner .item:last-child:after {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  width: 1px;
  height: 80%;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  footer .footer-inner .item:last-child:after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer-inner .item:last-child img {
    width: 25px;
  }
}
footer .socials {
  margin: 0;
  padding: 0;
}
footer .socials li {
  list-style: none;
  margin-left: 25px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  footer .socials li {
    margin-left: 20px;
  }
}
footer .socials li:first-child {
  margin-left: 0px;
}

#loadmoreajaxloader {
  margin-top: 20px;
  display: none;
  text-align: center;
}

.error {
  color: #ff0000;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.scr-only-focusable:focus,
.scr-only-focusable:active {
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  width: auto !important;
  white-space: normal !important;
}

/*# sourceMappingURL=style.css.map */
