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

:root{
  --purple: #31006f;
  --lightpurple: #5a328b;
  --yellow: #f5b335;
  --white: #ffffff;
  --black: #343a40;
  --yellow-muv: #ffd400;
  --black-muv: #373433;
}


/*FONTS*/

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

/*GERAL*/

*{
  font-family: 'WorkSans'!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; 
}

.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; 
}

.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;
}

.custom-cols{
  text-decoration: none;
  flex: 0 0 auto;
  /* width: 33.33333333%; */
  width: 50%;
  height: 100%;
  padding: 0 calc(.25rem * 0.5);
}

.custom-cols:first-of-type{
  padding: 0 calc(.25rem * 0.5) 0 0;
}

.custom-cols:last-of-type{
  padding: 0 0 0 calc(.25rem * 0.5);
}

.sitelink{
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand{
  padding: 1.5rem;
  /* width: 40%; */
  width: 30%;
  aspect-ratio: 1;
  border-radius: 33px;
}

.brand--transportes{
  background-color: var(--purple);
}

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

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

.brand img{
  width: 100%;
  height: auto;
}

.brand__label{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  padding: .25rem .5rem;
  border-radius: 8px;
  text-transform: uppercase;
}

.brand--transportes .brand__label{
  background-color: var(--white);
  color: var(--purple);
}

.brand--turismo .brand__label{
  background-color: var(--purple);
  color: var(--white);
}

.brand--muv .brand__label{
  background-color: var(--white);
  color: var(--black-muv);
}

.arrow{
  transform: translateX(0);
  margin-top: 3rem;
  transition: all .3s ease-in-out;
}

.sitelink:hover .arrow{
  transform: translateX(5px);
}

.info{
  padding: 1rem;
  border-left: solid 1px var(--purple);
  border-top: solid 1px transparent;
  height: 100%;
}

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

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

.info__content--small{
  font-size: 12px;
}

a.info__content{
  border-bottom: solid 1px transparent;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

a.info__content:hover{
  color: var(--purple);
  border-bottom: solid 1px var(--purple);
}

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

a.info__socials:hover svg path{
  fill: var(--lightpurple);
}

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

.copyright-area p{
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.31;
  letter-spacing: normal;
  text-align: left;
  text-transform: uppercase;
  color: var(--white);
}

.copyright-area a{
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.31;
  letter-spacing: normal;
  text-align: left;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all .3s ease-in-out;
}

.copyright-area a:hover{
  color: var(--white);
  border-bottom: 1px solid var(--white);
}

.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--purple{
  color: var(--white);
  background-color: var(--purple);
  border: solid 1px var(--purple);
}

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

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

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

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

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

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

.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(--purple);
}

.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(--purple); 
  border-radius: 32px;
  background-color: var(--white);
  transform: translateY(-3rem);
}

.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{
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease-in-out;
}

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

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

.page__content h3{
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom:1rem;
  margin-top: 1rem;
}

@media only screen and (max-width: 1400px){
  .brand{
    /* width: 45%; */
    width: 30%;
  }

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

@media only screen and (max-width: 1200px){
  .brand{
    /* width: 50%; */
    width: 30%;
  }
}

@media only screen and (max-width: 992px){
  .info{
    padding: .5rem;
  }

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

@media only screen and (max-width: 767px){
  .btns{
    line-height: 1;
    font-size: 14px;
    padding: 8px 16px;
  }

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

  .info{
    border-left: solid 1px transparent;
    border-top: solid 1px var(--purple);
  }

  .brand{
    width: 75%;
    padding: 1rem;
  }

  .sitelink{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media only screen and (orientation: portrait){
  .custom-cols{
    width: 100%;
    /* height: 33.33333333%; */
    height: 50%;
    padding: calc(.25rem * 0.5) 0;
  }

  .custom-cols:first-of-type{
    padding: 0 0 calc(.25rem * 0.5) 0;
  }

  .custom-cols:last-of-type{
    padding: calc(.25rem * 0.5) 0 0 0;
  }

  .sitelink{
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 3rem;
  }

  .brand{
    width: auto;
    height:75%;
  }

  .arrow{
    margin-top: 0;
  }
}

@media only screen and (orientation: portrait) and (max-width: 767px){
  .sitelink{
    padding: 1rem 1.5rem;
  }

  .brand{
    height:100%;
  }
}