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

:root{
  --headerSize: 103px;
  --topHeaderSize: 56px;
  --yellow: #FFD400;
  --black: #040403;
  --white: #ffffff;
  --textBlack: #000000;
  --gray: #eaeaea;
  --darkgray: #303030;
}

/*FONTS*/

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

/*GERAL*/

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

html {
  overflow-x: hidden; 
}

.main-container {
  margin: 0 auto;
  width: 90%; 
}

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

a {
  text-decoration: none; 
}

del{
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 5px;
  text-underline-offset: 5px;
}

.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; 
  margin-top: var(--headerSize);
}

.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{
  fill: var(--white);
}

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

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

.bg-black{
  background-color: var(--black)!important;
}

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

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

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

.btns{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  padding: 8px 24px;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  width: fit-content;
  transition: all .3s ease-in-out;
}

.btns svg{
  width: 16px;
  height: auto;
  transform: translateX(0);
  vertical-align: text-bottom;
  transition: all .3s ease-in-out; 
}

.btns svg path{
  transition: all .3s ease-in-out; 
}

.btns:hover svg:not(.no-translate){
  transform: translateX(2px);
}

.btns--white{
  color: var(--white);
  background-color: transparent;
  border: solid 1px var(--white);
}

.btns--white svg path{
  fill: var(--white);
}

.btns--white:hover{
  color: var(--black);
  background-color: var(--white);
  border: solid 1px var(--white);
}

.btns--white:hover svg path{
  fill: var(--black);
}

.btns--black{
  color: var(--white);
  background-color: var(--black);
  border: solid 1px var(--black);
}

.btns--black:hover{
  color: var(--black);
  background-color: transparent;
  border: solid 1px var(--black);
}

.btns--black svg:not(.change-stroke) path{
  fill: var(--white);
}

.btns--black:hover svg:not(.change-stroke) path{
  fill: var(--black);
}

.btns--black svg.change-stroke path{
  stroke: var(--white);
}

.btns--black:hover svg.change-stroke path{
  stroke: var(--black);
}

.btns--black-outline{
  color: var(--black);
  background-color: transparent;
  border: solid 1px var(--black);
}

.btns--black-outline:hover{
  color: var(--white);
  background-color: var(--black);
  border: solid 1px var(--black);
}

.btns--black-outline svg:not(.change-stroke) path{
  fill: var(--black);
}

.btns--black-outline:hover svg:not(.change-stroke) path{
  fill: var(--white);
}

.btns--black-outline svg.change-stroke path{
  stroke: var(--black);
}

.btns--black-outline:hover svg.change-stroke path{
  stroke: var(--white);
}

.btns--black-outline.disabled{
  pointer-events: none;
  opacity: .5;
}

.btns--white-fill{
  color: var(--black);
  background-color: var(--white);
  border: solid 1px var(--white);
}

.btns--white-fill svg path{
  fill: var(--black);
}

.btns--white-fill:hover{
  color: var(--darkgray);
  background-color: var(--yellow);
  border: solid 1px var(--yellow);
}

.btns--white-fill:hover svg path{
  fill: var(--darkgray);
}

.btns--white-fill--menu{
  color: var(--black);
  background-color: var(--white);
  border: solid 1px var(--white);
}

.btns--white-fill--menu svg path{
  fill: var(--black);
}

.btns--white-fill--menu:hover{
  color: var(--white);
  background-color: var(--black);
  border: solid 1px var(--black);
}

.btns--white-fill--menu:hover svg path{
  fill: var(--white);
}

.btns--yellow{
  color: var(--black);
  background-color: var(--yellow);
  border: solid 1px var(--yellow);
}

.btns--yellow:hover{
  color: var(--yellow);
  background-color: transparent;
  border: solid 1px var(--yellow);
}

.btns--yellow svg:not(.change-stroke) path{
  fill: var(--black);
}

.btns--yellow:hover svg:not(.change-stroke) path{
  fill: var(--yellow);
}

.btns--yellow svg.change-stroke path{
  stroke: var(--black);
}

.btns--yellow:hover svg.change-stroke path{
  stroke: var(--yellow);
}

.btns--yellow-fill{
  color: var(--black);
  background-color: var(--yellow);
  border: solid 1px var(--yellow);
}

.btns--yellow-fill:hover{
  color: var(--black);
  background-color: var(--white);
  border: solid 1px var(--white);
}

.btns--yellow-fill svg:not(.change-stroke) path{
  fill: var(--black);
}

.btns--yellow-fill:hover svg:not(.change-stroke) path{
  fill: var(--black);
}

.btns--yellow-fill svg.change-stroke path{
  stroke: var(--black);
}

.btns--yellow-fill:hover svg.change-stroke path{
  stroke: var(--black);
}

.btns--purple-outline{
  color: var(--purple);
  background-color: transparent;
  border: solid 1px var(--purple);
}

.btns--purple-outline:hover{
  color: var(--white);
  background-color: var(--purple);
  border: solid 1px var(--purple);
}

.btns--purple-outline svg path{
  fill: var(--purple);
}

.btns--purple-outline:hover svg path{
  fill: var(--white);
}

.btns--linha{
  line-height: 1.2;
  font-weight: 300;
  white-space: nowrap;
}

.btns--linha strong{
  font-weight: 600;
}

.btns--menu{
  color: var(--white);
  background-color: var(--darkgray);
  border: solid 1px var(--darkgray);
  padding: .25rem 1rem;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.btns--menu:hover{
  color: var(--darkgray);
  background-color: var(--yellow);
  border: solid 1px var(--yellow);
}

.btns--menu svg:not(.change-stroke) path{
  fill: var(--white);
}

.btns--menu:hover svg:not(.change-stroke) path{
  fill: var(--darkgray);
}

.btns--menu svg.change-stroke path{
  stroke: var(--white);
}

.btns--menu:hover svg.change-stroke path{
  stroke: var(--darkgray);
}

.btns--carreira{
  width: 100%;
  color: var(--black);
  background-color: transparent;
  border: solid 2px transparent;
}

.btns--carreira:hover{
  color: var(--black);
  background-color: transparent;
  border: solid 2px var(--black);
}

.btns--carreira.selected{
  color: var(--black);
  background-color: transparent;
  border: solid 2px var(--black);
  cursor: default;
  pointer-events: none;
}

.btns--mapa{
  color: var(--white);
  background-color: var(--black);
  border: solid 1px var(--black);
}

.btns--mapa svg path{
  fill: var(--white);
}

.btns--mapa:hover{
  color: var(--black);
  background-color: var(--yellow);
  border: solid 1px var(--yellow);
}

.btns--mapa:hover svg path{
  fill: var(--black);
}

.page__header{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--yellow);
}

.page__title{
  font-size: 40px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-align: center;
  color: var(--white);
}

.page__title--default{
  text-align: left;
  color: var(--textBlack);
}

.page__content{
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-align: left;
  color: var(--black); 
  border-radius: 32px;
  background-color: var(--white);
  transform: translateY(-3rem);
}

.page__content h3{
  color: var(--textBlack);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 122%;
  margin: 3rem 0;
}

.page__content ul{
  list-style-type: disc;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.page__content ol{
  list-style-type: decimal;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.page__content a:not(.btns){
  color: var(--textBlack);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease-in-out;
}

.page__content a:not(.btns):hover{
  color: var(--textBlack);
  text-decoration-color: var(--textBlack);
}

.sec2__banner{
  width:100%;
  aspect-ratio: 16/3;
}

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

.show-more{
  display:block;
}

.about__content{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-align: left;
  color: var(--black);
}

.about__content *{
  display: inline-block;
  margin-bottom: 0;
}

.about__content img{
  max-width: 50%;
  width: auto;
}

.about__content h2{
  font-weight: 600;
  font-size: 40px;
  line-height: 122%;
  letter-spacing: 0px;
  margin-bottom: 3rem;
}

.page__content h2{
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.page__content--default{
  transform: translateY(0);
}

.page__content--default h2{
  text-align: left;
  margin-bottom: 1rem;
}

.page__content *:last-child, .about__content *:last-child{
  margin-bottom: 0;
}

.page__content__icon{
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: fit-content;
  height: auto;
}

.page__gallery__img{
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 15px;
}

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

.page__gallery .owl-nav{
  margin-top: 0;
}

.page__gallery button{
  position: absolute;
  top: 50%;
  border-radius: 20px!important;
  margin: 0!important;
  background-color: var(--white)!important;
  transition: all .3s ease-in-out;
}

.page__gallery button:hover{
  background-color: var(--purple)!important;
}

.page__gallery button svg{
  margin: .5rem 1.5rem!important;
  width: 24px;
  height: auto;
  transition: all .3s ease-in-out;
}

.page__gallery button svg path{
  fill: var(--purple);
  transition: all .3s ease-in-out;
}

.page__gallery button:hover svg path{
  fill: var(--white);
}

.page__gallery .owl-next{
  right: 0;
  transform: translate(50%, -50%);
}

.page__gallery .owl-prev{
  left: 0;
  transform: translate(-50%, -50%);
}

.page__gallery .owl-next svg{
  transform: translateX(0);
}

.page__gallery .owl-prev svg{
  transform: translateX(0) scale(-1);
}

.page__gallery .owl-next:hover svg{
  transform: translateX(2px);
}

.page__gallery .owl-prev:hover svg{
  transform: translateX(-2px) scale(-1);
}

.contacts svg{
  flex: 0 1 30px;
  margin-top: 3px;
}

.contacts p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: var(--purple);
}

.contacts .contacts__custo, .footer__contactos .contacts__custo{
  font-size: 12px;
}

.contacts a{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease-in-out;
}

.contacts a:hover{
  text-decoration-color: var(--purple);
}

#mapid, .map{
  width: 100%;
  aspect-ratio: 16/5;
  border-radius: 14px;
}

.contacts__form{
  background-color: var(--yellow);
  border-radius: 32px;
  transform: translateY(-3rem);
}

.form__title{
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-align: center;
  color: var(--purple);
}

.labels{
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  width: 100%;
  color: var(--black);
}

.labels a{
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  width: 100%;
  text-decoration: underline;
  text-decoration-color: transparent;
  color: var(--black);
  transition: all .3s ease-in-out;
}

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

.labels--consent, .labels--consent a{
  font-size: 14px;
  font-weight: 400;
}

.form-img{
  position: absolute;
  width: 100%;
  height: 75%;
  top: calc(50% - 3rem);
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}

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

.inputs{
  background-color: var(--white);
  border: solid 1px #ddd;
  border-radius: 5px;
  width: 100%;
  padding: .5rem 1rem;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: var(--black);
}

.checkboxes{
  accent-color: var(--yellow);
}

.circuito__head{
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.circuito__head__tag{
  padding: .5rem 1rem;
  border-radius: 18px;
  background-color: var(--black);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: var(--white);
}

.circuito__head__title{
  padding: 1rem 3rem;
  border-radius: 34px;
  background-color: var(--white);
  font-size: 25px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: var(--purple);
}

.circuito__body{
  background-color: var(--black);
}

.circuito__body--yellow{
  background-color: var(--yellow);
}

.circuito__body__content{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-align: center;
  color: var(--white);
}

.circuito__body--yellow .circuito__body__content{
  color: var(--black);
}

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

.section__title{
  padding: .5rem 1.5rem;
  border-radius: 20px;
  background-color: var(--black);
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: var(--white);
  width: fit-content;
  white-space: nowrap;
}

.linha__color{
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.section__iframe iframe{
  padding: 0;
  width: 100%;
}

footer .copyright-area{
  background-color: var(--gray);
}

footer .copyright-area p{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.31;
  letter-spacing: normal;
  color: var(--textBlack);
}

footer .copyright-area a{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.31;
  letter-spacing: normal;
  color: var(--textBlack);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease-in-out;
}

footer .copyright-area a:hover{
  text-decoration-color: var(--textBlack);
}

.bl-dots{
  border-left: dashed 1px var(--black);
  border-top: dashed 1px transparent;
}

.bt-dots{
  border-top: dashed 1px var(--black);
}

footer .sitemap__link{
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: var(--textBlack);
  display: block;
  transition: all .3s ease-in-out;
}

footer .sitemap__link svg{
  width: 16px;
  height: auto;
  transform: translateX(0);
  transition: all .3s ease-in-out;
}

footer .sitemap__link svg path{
  fill: var(--textBlack);
}

.livro-rec svg path{
  width: 100%;
  height: auto;
  fill: var(--darkgray);
  transition: all .3s ease-in-out;
}

.livro-rec:hover svg path{
  fill: var(--yellow);
}

footer .sitemap__link:hover svg{
  transform: translateX(5px);
}

.footer__contactos p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: var(--textBlack);
}

.footer__contactos a{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: var(--textBlack);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease-in-out;
}

.footer__contactos a:hover{
  text-decoration-color: var(--textBlack);
}

.address *{
  margin-bottom: 0;
}

.circuito__body__content__title{
  font-size: 24px;
  font-weight: 500;
}

.circuito__body__content__title svg{
  width: 24px;
  height: auto;
}

.circuito__body__content__title svg path{
  fill: var(--white);
}

.circuito__body--yellow .circuito__body__content__title svg path{
  fill: var(--black);
}

.aviso__content svg{
  width: 80px;
  height: auto;
}

.aviso__content svg path{
  fill: var(--white);
}

.aviso__title{
  font-size: 30px;
  font-weight: bold;
}

.financiamento *{
  max-width: 100%;
}

.footer__apoio{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer__apoio__title{
  color: var(--white);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 122%;
}

.ponto__head__title{
  color: var(--textBlack);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.ponto__head__info{
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0px;
  color: var(--textBlack);
}

.carreira__mapa__info{
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
}

.carreira__title{
  font-size: 25px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0px;
  padding: 4px 24px;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  width: fit-content;
  color: var(--black);
  background-color: var(--yellow);
  border: solid 1px var(--yellow);
  transition: all .3s ease-in-out;
}

.carreira__zonas p{
  margin-bottom: .5rem;
}

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

.carreira__horario{
  overflow: auto;
}

.carreira__horario::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.carreira__horario::-webkit-scrollbar-track {
  background: var(--gray);
  border-radius: 10px;
}

.carreira__horario::-webkit-scrollbar-thumb {
  background: var(--darkgray);
  border-radius: 10px;
  transition: all .3s ease-in-out;
}

.carreira__horario::-webkit-scrollbar-thumb:hover {
  background: var(--yellow);
}

.carreira__horario img{
  width: auto;
  min-width: 100%;
  max-width: fit-content;
}

#selecionar-paragem{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  padding: 8px 24px;
  border-radius: 20px;
  text-decoration: none;
  z-index: 1;
  text-align: center;
  transform: translateX(-2rem);
  background-color: var(--white);
  width: fit-content;
  border: solid 1px var(--black);
  transition: all .3s ease-in-out;
}

@media only screen and (max-width: 1400px){
  .btns{
    padding: 8px 16px;
  }
}

@media only screen and (max-width: 992px){
  footer .copyright-area a{
    line-height: 1.31;
  }

  .contacts p{
    font-size: 14px;
  }

  .footer__apoio__icon svg{
    width: 100%;
  }

  .contacts__form .page__content__icon{
    width: 60px;
  }

  .mobile-full{
    width: 100%;
  }

  #selecionar-paragem{
    width: 100%;
    transform: translate(0);
  }
}

@media only screen and (max-width: 767px){
  :root{
    --headerSize: 98px;
  }

  .ponto__body .map{
    aspect-ratio: 16 / 7;
    border-radius: 0;
  }

  .page__content h3{
    font-size: 18px;
    margin: 1.5rem 0;
  }

  .carreira__title{
    font-size: 20px;
  }

  .page__title{
    font-size: 25px;
  }

  .circuito__body__content__title {
    font-size: 18px;
  }

  .circuito__body__content__title svg{
    width: 18px;
  }

  .circuito__body__content {
    font-size: 14px;
  }

  .aviso__title{
    font-size: 20px;
  }

  .btns{
    line-height: 1;
    font-size: 14px;
    padding: 8px 16px;
  }

  .btns--menu{
    padding: .25rem .5rem;
    font-size: 14px;
  }

  .menu__aviso{
    line-height: 1.5;
  }

  .menu__aviso__icon{
    width: 16px!important;
  }

  .menu__aviso__text{
    font-size: 14px;
    line-height: 1;
  }

  .bl-dots{
    border-left: dashed 1px transparent;
    border-top: dashed 1px var(--black);
  }

  .bl-dots--hide{
    border-top: dashed 1px transparent;
  }

  .page__gallery button svg{
    margin: .25rem 1rem !important;
  }

  .page__gallery .owl-next{
    transform: translate(25%, -50%);
  }

  .page__gallery .owl-prev{
    transform: translate(-25%, -50%);
  }

  .section__title{
    font-size: 14px;
    padding: .25rem 1rem;
  }

  .circuito__head__title{
    padding: .5rem 1.5rem;
    font-size: 20px;
  }

  .circuito__head__tag{
    font-size: 10px;
  }

  .page__content h2{
    font-size: 18px;
    margin-bottom: 1.5rem;
  }

  .about__content h2{
    font-size: 30px;
  }

  .footer__apoio__title{
    font-size: 18px;
  }

  .page__content{
    font-size: 14px;
  }

  .page__content__icon{
    position: relative;
    width: 40px;
    margin: 0 auto .25rem;
    display: block;
    top: unset;
    left: unset;
  }

  #mapid {
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }

  .contacts__form{
    border-radius: 0;
  }

  .contacts__form .page__content__icon{
    top: 0rem;
    left: 0rem;
  }

  .form__title{
    font-size: 20px;
  }

  .inputs{
    font-size: 14px;
  }

  .labels{
    font-size: 14px;
  }
}