
/* geral */
.mobile{
    display: none;
}
.hide,
.hidden{
    display: none !important;
}
.show{
    display: block !important;
}

textarea,
input,
select,
button,
body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
body{
    color: black;
}
img{
    max-width: 100%;
}
.in{
    max-width: 1400px;
    padding: 0px 15px;
}
.in_med{
    max-width: 1100px;
}
/* headings */
h1{
    font-size: 40px;
    font-weight: 900;
}
h2{
    font-size: 35px;
    font-weight: 900;
}
h3{
    font-size: 30px;
    font-weight: 900;
}
h4{
    font-size: 30px;
}
h5{
    font-size: 25px;
    font-weight: 900;
}
h6{
    font-size: 25px;
}

/* texto */
.txt p{
    font-size: 18px;
    min-height: 25px;
    line-height: 25px;
    color: #333;
}
.txt p a{
    color: inherit;
    text-decoration: underline;
}
.txt p strong{
    font-weight: 700;
}
.txt p em{
    font-style: italic;
}

/* radio */
.radio{
    position: relative;
}
.radio input{
    display: none;
}
.radio label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.radio label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid rgba(0,0,0,0.3);
}
.radio label:after{
    content: " ";
    width: 12px;
    height: 12px;
    background: #000;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 100%;
    opacity: 0;
}
.radio input[type=radio]:checked ~ label:after{
    opacity: 1;
}

.radio{
    position: relative;
}
.radio input{
    display: none;
}
.radio label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.radio label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.3);
}
.radio label:after{
    content: " ";
    width: 9px;
    height: 5px;
    position: absolute;
    left: 4px;
    top: 4px;
    opacity: 0;
    transform: rotate(-45deg);
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    transform: scale(0,0) rotate(-45deg);
    opacity: 0;
}
.radio input[type=radio]:checked ~ label:after{
    opacity: 1;
    transform: scale(1,1) rotate(-45deg);
}
.radio input[type=radio]:checked ~ label{
    color: red;;
}


/* checkbox */
.checkbox{
    position: relative;
}
.checkbox input{
    display: none;
}
.checkbox label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.checkbox label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    border: 2px solid rgba(0,0,0,0.3);
}
.checkbox label:after{
    content: " ";
    width: 9px;
    height: 5px;
    position: absolute;
    left: 4px;
    top: 4px;
    opacity: 0;
    transform: rotate(-45deg);
    border: 3px solid black;
    border-top: none;
    border-right: none;
}
.checkbox input[type=checkbox]:checked ~ label:after{
    opacity: 1;
}

/* select */
.select{
    background: white;
    border: 2px solid rgba(0,0,0,0.15);
    position: relative;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.select select{
    border: none;
    box-shadow: none;
    background-image: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance:  none;
    padding: 10px 40px 10px 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.select select:focus{
    outline: none;
}
.select:before{
    content: "";
    width: 10px;
    height: 10px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    position: absolute;
    transform: rotate(45deg);
    box-sizing: border-box;
    border: 3px solid rgba(0,0,0,0.15);
    border-left: none;
    border-top: none;
}
.select:hover{
    border-color: rgba(0,0,0,0.5);
}
.select:hover:before{
    border-color: rgba(0,0,0,0.5);
}

/* lightbox */
.lb.animated {
    animation-duration: .3s;
}
.lb{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0,0,0,0.5);
}
.lb_x{
    position: fixed;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    padding: 10px;
    z-index: 2;
}
.lb_in{
    z-index: 1;
}
.lb_centro .lb_in{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.lb_ct{
    position: relative;
    width: 100%;
}

/* accordion */
ul.acc{
    background: rgba(0,0,0,0.15);
}
ul.acc dt{
    background: rgba(0,0,0,0.15);
    cursor: pointer;
}
ul.acc dd{
    background: rgba(0,0,0,0.3);
    display: none;
}
ul.acc .aberto ~ dd{
    display: block;
    height: auto;
}

/* slider */
.owl-carousel{
    position: relative;
}
.owl-carousel .owl-nav {
    position: absolute;
    background: red;
    height: 0px;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    top: 50%;
    opacity: 0;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next{
    background: transparent;
    width: 60px;
    height: 60px;
    display: block;
    z-index: 10;
    position: absolute;
    transform: translateY(-50%);
    top: 0;
    opacity: 0.2;
}
.owl-carousel .owl-next{
    left: auto;
    right: 1px;
}
.owl-carousel .owl-prev span,
.owl-carousel .owl-next span{
    position: absolute;
    right: 35%;
    top: 25%;
    width: 50%;
    height: 50%;
    box-sizing: border-box;
    transform: rotate(-45deg);
    border: 5px solid #000;
    border-left: none;
    border-top: none;
}
.owl-carousel .owl-prev span{
    transform: rotate(135deg);
    left: 35%;
    right: auto;
}
.owl-carousel:hover > .owl-nav{
    opacity: 1;
}
.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover{
    opacity: 0.6;
}
.owl-carousel .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 100%;
    bottom: 10px;
    height: 25px;
    font-size: 0px;
    background: red;
}
.local_pontos .owl-dot,
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    background: transparent;
    width: auto;
    height: auto;
}
.local_pontos .owl-dot span,
.owl-carousel .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.25);
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    display: block;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
    margin: 5px;
}
.local_pontos .owl-dot.active span,
.local_pontos .owl-dot:hover span,
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: white;
}

/*
   ██████████   ███   ███   ███   ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
   ████░░░░░░░░ ███░░ ███░░ ███░░ ████░░░░░░░░
   ██████████   ███░░ ███░░ ███░░ ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
     ░░░░████░░ ███░░ ███░░ ███░░   ░░░░████░░
   ██████████░░ ███████████████░░ ██████████░░
   ██████████░░ ███████████████░░ ██████████░░
     ░░░░░░░░░░  ░░░░░░░░░░░░░░░░   ░░░░░░░░░░
*/

header{
    z-index: 100;
}

.wp_pre{
    height: 30px;
    background: #eee;
}

.pre{
    height: 20px;
    padding-top: 5px;
}

.pre_bt{
    display: inline-block;
    margin-right: 20px;
    font-size: 0px;
}

.pre_bt span,
.pre_bt strong{
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
}

.pre_bt span{
    padding-right: 5px;
    opacity: 0.2;
}

.pre_bt strong{
    color: #777;
}

.pre_bt img{
    width: 13px;
}

.pre_direita{
    font-size: 0px;
}

.pre_d_bt{
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    line-height: 20px;
    margin-left: 20px;
    font-size: 14px;
    color: #777;
}

.pre_d_bt strong{
    font-weight: 700;
}

.wp_barra{
    background: #0fb1bb;
    height: 55px;
}

.barra_logo strong{
    padding: 5px 0px;
    display: block;
}

.barra_logo img{
    width: 45px;
}

.barra_titulo{
    text-align: center;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-style: italic;
}

.barra_titulo a{
    color: white;
}

.barra_titulo strong{
    font-weight: 900;
}

.barra_d{
    text-align: right;
}

.barra_bt{
    display: inline-block;
    background: rgba(0,0,0,0.15);
    height: 35px;
    line-height: 35px;
    padding: 0px 15px;
    border-radius: 4px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    margin-left: 5px;
}

.menu{
    height: 41px;
}

.wp_menu{
    box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
}

.menu_bt{
    display: block;
    height: 41px;
    line-height: 41px;
    color: #333;
    text-align: center;
}

.wp_banner{
    position: relative;
    font-size: 0px;
}

.wp_banner .banner img{
    width: 100%;
}

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

.banner_cont .in{
    height: inherit;
}

.banner_corpo{
    height: inherit;
}

.banner_logo{
    position: absolute;
    left: 10px;
    top: 10%;
    width: 20%;
}

.banner_txts{
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    font-size: 0px;
    padding-bottom: 50px;
}

.banner_txts h1{
    display: inline-block;
    background: #0fb1bb;
    padding: 20px;
    color: white;
    display: inline-block;
    font-size: 40px;
    text-transform: uppercase;
}

.banner_txts h1 strong{
    display: inline-block;
    padding-left: 20px;
    font-weight: 300;
}

.banner_txts h2{
    display: inline-block;
    background: #0fb1bb;
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    padding: 0px 20px 20px 20px;
}

.banner_txts h2 strong{
    padding-left: 10px;
    font-weight: 900;
}

.banner_txt{
    font-size: 20px;
    background: white;
    display: inline-block;
    padding: 20px;
    color: #0fb1bb;
}

.banner_txt p,
.banner_txt a{
    display: inline-block;
    vertical-align: middle;
}

.banner_txt a{
    display: inline-block;
    margin-left: 20px;
    background: #0fb1bb;
    padding: 10px 25px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 4px;
    font-weight: 900;
}

.wp_conts{
    background: #0fb1bb;
}

.conts_e .conts_in{
    padding-right: 50px;
}

.conts_d .conts_in{
    padding-left: 50px;
}

.conts{
    padding: 50px 0px;
}

.wp_redes{
  padding: 50px 0px;
  text-align: center;
}

.redes{
  font-size: 0px;
}

.redes a{
  display: inline-block;
  background-color: rgba(0,0,100,0.05);
  border: 1px solid rgba(0,0,100,0.05);
  border-radius: 4px;
  margin: 0px 10px;
  box-shadow: 0px 0px 0px rgba(0,0,100,0);
}

.redes a:hover{
  transform: scale(1.1, 1.1);
  box-shadow: 0px 5px 10px rgba(0,0,100,0.3);
  border-color: white;
  background: white;
}

.redes a img{
  width: 40px;
}
.redes a span,
.redes a em{
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
  height: 50px;
  line-height: 50px;
}

.redes a span{
  padding: 5px 10px;
  height: 40px;
}

.redes a em{
  padding: 0px 20px 0px 10px;
}

.redes.class a em{
  padding: 0px 20px 0px 20px;
}

.redes a.facebook{
  color: #3d5a96;
}

.redes a.instagram{
  color: #b6237e;
}
.redes p{
  text-align: center;
  padding-bottom: 15px;
  font-size: 20px;
}

.wp_parceiros{
  border-top: 1px solid rgba(0,0,100,0.1);
}

.parceiros{
  padding: 20px 0px;
  text-align: center;
  position: relative;
  margin: 0px auto;
  font-size: 0px;
}

.parceiros p{
  padding-bottom: 10px;
  text-align: center;
  font-size: 16px;
  color: #999;
}

.parceiros a{
  vertical-align: middle;
  width: 12.5%;
  box-sizing: border-box;
  padding: 20px;
}

.wp_rp{
    background: #eee;
    padding: 15px 0px;
    font-size: 14px;
    color: #777;
}

.wp_rp a{
    color: #777;
    text-decoration: underline;
}

.wp_apresentacao{
  background-color: #eee;
  padding: 70px 0px;
}

.apresentacao{
  background-color: white;
  margin: 0px 50px;
  padding: 70px 140px;
  box-shadow: 0px 0px 5px rgba(0,0,100,0.1), 0px 10px 20px rgba(0,0,50,0.15);
}


.apresentacao h2{
  font-size: 50px;
  font-weight: 200;
  color: #0fb1bb;
  padding-bottom: 15px;
}


.apresentacao h3{
  font-size: 30px;
  font-weight: 300;
  padding-bottom: 15px;
}

.apresentacao h4{
  padding-bottom: 50px;
  color: #0fb1bb;
  font-weight: 700;
  opacity: 0.5;
  font-size: 20px;
}


.apresentacao p{
  display: block;
  padding-bottom: 15px;
  line-height: 35px;
  font-size: 18px;
  text-align: justify;
}

.apresentacao p strong{
  font-weight: 700;
  color: #0fb1bb;
}

.percurso{
    position: relative;
}

.percurso_fundo{
    position: relative;
}

.percurso_fundo img{
    width: 100%;
}

.percurso_grafico{
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 0px;
    width: 40%;
}

.perc_data{
    position: absolute;
    height: 100%;
    left: 0;
    top: 0px;
    background: rgba(255,255,255,0.1);
    width: 70px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.perc_img{
    margin-left: 70px;
    background: rgba(255,255,255,0.15);
}

.perc_data_info{
    font-size: 14px;
    color: #fff;
    padding-right: 5px;
    text-align: right;
}

.perc_data_info_1{
    border-top: 1px solid white;
    padding-top: 5px;
}

.perc_data_info_2{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 10px;
    border-bottom: 1px solid white;
    padding-right: 5px;
    box-sizing: border-box;
    padding-bottom: 5px;
}

.wp_brevemente{
    padding: 30px 0px;
}

.brevemente{
    text-align: center;
    background: #FFEDEB;
    border: 1px solid #F3D6D3;
    padding: 20px;
    border-top: 2px solid #0fb1bb;
    color: #0fb1bb;
    font-size: 20px;
}

.wp_cartaz_tit,
.wp_cartaz{
    background: #eee;
}

.cartaz_pag{
    padding: 20px 0px;
}

.wp_cartaz:last-child .cartaz_pag{
    padding-bottom: 100px;
}

.cartaz_pag h1{
    text-align: center;
    color: #0fb1bb;
    font-weight: 300;
}

.cartaz{
    background: white;
    font-size: 0px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}

.cartaz_info_txt{
    padding: 30px;
    font-size: 16px;
}

.cartaz_info_txt h2{
    font-size: 25px;
    color: #0fb1bb;
    padding-bottom: 20px;
}

.cartaz_download a{
    display: inline-block;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    color: #777;
    font-size: 15px;
    font-weight: 700;
}

.wp_contactos{
    background: #eee;
    padding-bottom: 100px;
}

.contactos{
    text-align: center;
    padding: 20px 0px;
}

.contactos h1{
    color: #0fb1bb;
}

.contactos p{
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 40px;
}

.contactos p a{
    color: #0fb1bb;
    text-decoration: underline;
}

.dep_in{
    margin: 30px;
    background: white;
    padding: 30px;
    min-height: 130px;
    color: #aaa;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}

.dep_in h2{
    font-size: 25px;
    padding-bottom: 15px;
}

.dep_in p{
    display: block;
    padding-bottom: 10px;
}

.departamento p strong{
    color: #0fb1bb;
    font-weight: 900;
    font-size: 20px;
}

.departamento p a{
    color: #333;
    font-weight: 700;
}

.videolb{
    width: 100vw;
    height: 100vh;
    background: black;
    position: fixed;
    z-index: 1000;
}

.video iframe,
.videolb iframe{
    width: 100%;
    height: 100%;
}

.fechavideo{
    position: absolute;
    z-index: 10;
    top: 10px;
    right: 10px;
    padding: 15px;
    background: #0fb1bb;
    color: white;
    cursor: pointer;
}

.video{
    position: relative;
    width: 100%;
    height: 100vh;
    background: black;
}

.apresentacao.politica p{
    text-align: left;
}

.apresentacao.politica p a{
    color: #777;
}
.wp_percursos.wp_redes span em{
    font-size: 20px;
    color:#0fb1bb;
    line-height: 40px;
}

.wp_percursos{
        border-bottom: 1px solid rgba(0,0,100,0.1);
}

.wp_percursos a{
        margin-top:10px;
}


.equipamento_cx{
    position: relative;
}

.equipamento_cx span{
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0px;
    text-align: center;
    color: #fff;
    opacity: 0.7;
    font-size: 13px;
    color: #fff;
}