/*
  STYLE v 1.1;
  05/2023;
  João Diogo Pereira;
*/

:root{
  --white: #fff;
  --black: #000;
  --header: 198px;
  --cats: 37px;
}

/*FONTS*/
@font-face {
  font-family: 'BricolageGrotesque';
  src: url(../fonts/BricolageGrotesque.ttf);
}

/*GERAL*/

*{
  font-family: 'BricolageGrotesque'!important;
}

html {
  overflow-x: hidden; 
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0; 
}

a {
  text-decoration: none; 
}

.row {
  margin: 0;
  padding: 0; 
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh; 
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  margin-top: var(--header);
}

.preloader{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .75);
}

.preloader svg {
  width: 5%;
  opacity: 0;
  height: auto;
  animation: pulse 1s ease-in-out 1 forwards;
}

.preloader svg path, .preloader svg polygon,.preloader svg rect{
  fill: var(--white);
}

@keyframes pulse {
  0%{
    width: 5%;
    opacity: 0;
  }
  100%{
    width: 25%;
    opacity: 1;
  }
}

img{
  max-width: 100%;
  display: inline-block;
}

.white-bg{
  background-color: var(--white);
}

#mapid{
  width: 100%;
  aspect-ratio: 1;
  z-index: 0;
}

.maplisevents{
  overflow: auto;
}

.maplisevents::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.maplisevents::-webkit-scrollbar-track {
  background: #fff;
}

.maplisevents::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 0;
  border: 1px solid #fff;
}

.maplisevents::-webkit-scrollbar-thumb:hover {
  background: #343434;
}

.evento{
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.eventhover{
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  transition: all .3s ease-in-out;
}

.evento:hover .eventhover{
  opacity: 1;
}

.eventhover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.localevento{
  z-index: 2;
  font-size: 12px;
  padding: 4px 8px;
  color: var(--white);
  position: relative;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
}

.eventotitle {
  padding: 4px 8px;
  font-size: 16px;
  z-index: 2;
  font-weight: 300;
  color: var(--white);
}

.eventoautor{
  padding: 4px 8px;
  font-weight: 300;
  font-size: 14px;
  z-index: 2;
  color: var(--white);
}

.catlist {
  z-index: 2;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 300;
  color: var(--white);
}

.pagetitle h1{
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0px;
  color: var(--black);
  padding: .5rem 1rem;
  text-transform: uppercase;
}

.content{
  font-size: 14px;
  color: var(--black);
  padding: 30px;
  font-weight: 400;
  letter-spacing: 1px;
}

.content a{
  transition: all .3s ease-in-out;
  text-decoration-color: transparent;
  color: var(--black);
}

.content a:hover{
  text-decoration-color: var(--black);
  color: var(--black);
}

.content ol{
  list-style-type: decimal;
  padding-left: 1rem;
}

.content ul{
  list-style-type: disc;
  padding-left: 1rem;
}

.content iframe{
  text-align: center;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.content.white-color, .pagetitle h1.white-color{
  color: var(--white);
}

.content.white-color a{
  transition: all .3s ease-in-out;
  text-decoration-color: transparent;
  color: var(--white);
}

.content.white-color a:hover{
  text-decoration-color: var(--white);
  color: var(--white);
}

.btns{
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  border: unset;
  transition: all .3s ease-in-out;
}

.inputs{
  background-color: rgba(255, 255, 255, 0.25);
  border: unset;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  color: var(--white);
  transition: all .3s ease-in-out;
}

.inputs--programa{
  width: auto;
  padding: 4px 8px;
}

.inputs::placeholder{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  color: var(--white);
}

.inputs:focus{
  background-color: rgba(255, 255, 255, 1);
  color: var(--black);
}

.labels{
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  color: var(--white);
  vertical-align: top;
}

.labels a{
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease-in-out;
}

.labels a:hover{
  color: var(--white);
  text-decoration-color: var(--white);
}

.btns--form{
  background-color: color-mix(in srgb, var(--black) 50%, transparent);
  color: var(--white);
}

.btns--form:hover{
  background-color: color-mix(in srgb, var(--black) 100%, transparent);
  color: var(--white);
}

.btns--programa{
  width: auto;
  padding: 4px 8px;
}

.btns--single{
  width: auto;
  text-decoration: none;
  display: inline-block;
}

.social-share{
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: .5rem;
}

.social-share .icons{
  margin: 0;
  padding: 0;
}

.social-share .icons a{
  display: block;
}

.social-share .icons svg{
  width: 20px;
  height: auto;
}

.social-share .icons .messenger svg{
  width: 24px;
  height: auto;
}

.subcatsingle{
  text-transform: uppercase;
  color: var(--white);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 0 1rem .5rem 1rem;
}

.singlethumb img{
  width: auto;
  height: auto;
}

.socialicons svg{
  width: 20px;
  height: 20px;
}

.socialicons a{
  text-decoration: none;
}

.subtitle{
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}

.subtitle *:last-child{
  margin-bottom: 0;
}

.labelsingle{
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

.fieldsingle{
  font-size: 16px;
  font-weight: 200;
  margin-bottom: .5rem;
}

footer .custom-logo {
    max-width: 150px; 
    height: auto;
}

.home__text{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
}

.home__text--title{
  font-weight: 500;
  font-size: 40px;
}

@media only screen and (max-width: 576px){
  :root{
    --header: 172px;
  }

  .home__text--title{
    font-size: 30px;
  }

  footer .custom-logo{
    max-width: 110px;
  }

  .fieldsingle, .labelsingle{
    font-size: 14px;
  }
}