@charset "utf-8";

@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,600");

@font-face {
  font-family: "Open Sans";
  src: url(../fontes/OpenSansCondLight.woff);
}

@font-face {
  font-family: "Aveny";
  src: url(../fontes/Aveny.woff);
}
@font-face {
  font-family: "Proxima Nova";
  src: url(../fontes/ProximaNovaRegular.woff);
}

@font-face {
  font-family: "Roboto";
  src: url(../fontes/RobotoCondensedBold.woff);
}

@font-face {
  font-family: "Utmavo";
  src: url(../fontes/utmavobold.woff);
}

@font-face {
  font-family: "Sansation Light";
  src: url(../fontes/SansationLight.woff);
}

@font-face {
  font-family: "Sansation Bold";
  src: url(../fontes/SansationBold.woff);
}
@font-face {
  font-family: "Gil Sans";
  src: url(../fontes/33535gillsansmt.woff);
}
@font-face {
  font-family: "Myriad";
  src: url(../fontes/MYRIAD.woff);
}
@font-face {
  font-family: "DroidSans";
  src: url(../fontes/DroidSans.woff);
}
@font-face {
  font-family: "Franklin Gothic";
  src: url(../fontes/FRAMDCN.woff);
}
@font-face {
  font-family: "Titillium";
  src: url(../fontes/titilliumtext25l.woff);
}

@font-face {
  font-family: "Harabara";
  src: url(../fontes/Harabara.woff);
}

@font-face {
  font-family: "Sansumi";
  src: url(../fontes/SansumiExtraBold.woff);
}

@font-face {
  font-family: "Daysweb";
  src: url(../fontes/Dayswebfont.woff);
}

@font-face {
  font-family: "Y2K";
  src: url(../fontes/Y2Kneophyte.woff);
}
@font-face {
  font-family: "Circular Bold";
  src: url(../fontes/CircularStdBold.woff);
}
@font-face {
  font-family: "Circular Light";
  src: url(../fontes/MDGroteskRegular.woff);
}

@font-face {
  font-family: "TheBlacklist";
  src: url(../fontes/TheBlacklist.woff);
}

@font-face {
  font-family: "Lcd Ultra";
  src: url(../fontes/LCDMU.woff);
}

@font-face {
  font-family: "Lcd Light";
  src: url(../fontes/LCDM2L.woff);
}

@font-face {
  font-family: "Spin Cicle";
  src: url(../fontes/SPINC.woff);
}

@font-face {
  font-family: "Arian Amu";
  src: url(../fontes/arnamu.woff);
}

@font-face {
  font-family: "Quantico";
  src: url(../fontes/QuanticoRegular.woff);
}

@font-face {
  font-family: "Oriente";
  src: url(../fontes/SEVEMFBR.woff);
}

@font-face {
  font-family: "Dust Home";
  src: url(../fontes/DustHomeMedium.woff);
}

@font-face {
  font-family: "Angelina";
  src: url(../fontes/angelinawebfont.woff);
}

@font-face {
  font-family: "Greyscale";
  src: url(../fontes/GreyscaleBasicRegular.woff);
}

@font-face {
  font-family: "Franklin Gothic";
  src: url(../fontes/14360.woff);
}

@font-face {
  font-family: "HoneyScript";
  src: url(../fontes/HoneyScriptLight.woff);
}

@font-face {
  font-family: "Apex";
  src: url(../fontes/apexnewlightwebfont.woff);
}

@font-face {
  font-family: "Tsar";
  src: url(../fontes/Tsar.woff);
}

@font-face {
  font-family: "Nexa";
  src: url(../fontes/NexaFreeLightwebfont.woff);
}

.aumenta:hover {
  transform: scale(1.1) !important;
  -webkit-transform: scale(1.1) !important;
  transition: transform 0.1s !important;
  -webkit-transition: -webkit-transform 0.1s !important;
}

.aumentapouco:hover {
  transform: scale(1.08) !important;
  -webkit-transform: scale(1.03) !important;
  transition: transform 0.1s !important;
  -webkit-transition: -webkit-transform 0.1s !important;
}

.aumentamais:hover {
  transform: scale(1.3) !important;
  -webkit-transform: scale(1.3) !important;
  transition: transform 0.1s !important;
  -webkit-transition: -webkit-transform 0.1s !important;
}

.logogira {
  transform: rotate(-15deg);
  width: 100px;
  height: 100px;

  /* CÓDIGO PARA CHAMAR A ANIMAÇÃO */
  -webkit-animation: rodaroda 1s linear alternate 1;
  -moz-animation: rodaroda 1s linear infinite;
  -ms-animation: rodaroda 1s linear infinite;
  -o-animation: rodaroda 1s linear infinite;
  animation: rodaroda 1s linear infinite;
}

/* KEY FRAMES PARA FAZER OS GIROS */
@-webkit-keyframes rodaroda {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rodaroda {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes rodaroda {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes rodaroda {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rodaroda {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#
  /* KEY FRAMES PARA FAZER OS GIROS */
  @-webkit-keyframes rodaroda {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rodaroda {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes rodaroda {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes rodaroda {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rodaroda {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.branco {
  color: rgb(255, 255, 255) !important;
}
.vermelho {
  color: rgb(222, 0, 0) !important;
}
.verde {
  color: rgb(0, 189, 50) !important;
}
.azul {
  color: rgb(0, 98, 197) !important;
}
.lilas {
  color: rgb(151, 0, 197) !important;
}
.laranja {
  color: rgb(197, 85, 0) !important;
}
.ouro {
  color: rgb(201, 161, 87) !important;
}
.marron {
  color: rgb(92, 43, 0) !important;
}
.cinza {
  color: #9d9d9d !important;
}
.cinzaescuro {
  color: rgb(64, 64, 64) !important;
}
.preto {
  color: rgb(0, 0, 0) !important;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #b0b0b0;
  transition: 0.4s;
  border-radius: 34px;
}

/* The slider before it is checked */
.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 1px;
  bottom: 4px;
  top: 0px;
  background-color: white;
  transition: 0.2s;
  border-radius: 50%;
}

/* Checked */
input:checked + .slider {
  background-color: #13ac73;
}

/* Move the slider when checked */
input:checked + .slider:before {
  transform: translateX(12px);
}

/* Rounded slider */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.aveny {
  font-family: "Aveny";
}

.droidsans {
  font-family: "DoidSans";
}

.roboto {
  font-family: "Roboto";
}

.selform {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}

table {
  border-collapse: collapse !important;
}

td {
  border: none !important;
}

select {
  height: 40px !important;
  border-radius: 8px !important;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px !important;
}

* {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-wrap: break-word;
}



p {
  font-family: "Aveny" !important;
  text-align: justify !important;
  font-size: 25px !important;
  font-weight: 400 !important;
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
  -ms-hyphens: auto !important;
  word-wrap: break-word !important;
}

.imagemesq {
  float: left;
  width: 100%;
  max-width: 545px;
}

.imagemesqmrg {
  float: left;
  width: 100%;
  max-width: 545px;
  margin-right: 35px;
}

.imagemdir {
  float: right;
  width: 100%;
  max-width: 545px;
  margin-left: 35px;
  margin-bottom: 30px;
}

.l100pc {
  width: 100%;
}

.txtita {
  font-size: 16px !important;
  font-family: "Aveny";
  color: #008fbf;
}

.campos {
  width: 100%;
  max-width: 450px;
  height: 40px;
  font-size: 13pt;
  text-align: left;
  line-height: 0px;
  margin-bottom: 8px;
}

.paddingbt10 {
  padding-bottom: 10px;
}

.paddingbt20 {
  padding-bottom: 20px;
}

.border10 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #ffffff !important;
  -webkit-box-shadow: -2px 0px 19px -5px rgba(26, 34, 66, 1);
  -moz-box-shadow: -2px 0px 19px -5px rgba(26, 34, 66, 1);
  box-shadow: -2px 0px 19px -5px rgba(26, 34, 66, 1);
}

.esp {
  text-indent: 20px;
}

#rodape {
  border-top: 1px solid #ffffff !important;
  padding-top: 5px;
  background-color: #ffffff;
  text-align: center;
  border: solid 1px Gray;
  width: 100%;
  height: 50px;
  color: Black;
  position: fixed;
  bottom: 0px;
  left: 0px;
  -webkit-box-shadow: -10px 0px 10px #434457;
  box-shadow: -10px 0px 10px #434457;
}

.rodapeadm {
  background-color: #aeaeae !important;
  font-size: 12pt !important;
  font-family: "Aveny" !important;
  font-weight: 0;
}

.titmenor {
  font-size: 16px;
  font-weight: 800;
}

.carousel-item img {
  cursor: pointer; /* Altera o ponteiro para o dedo apontando */
}

a:link {
  color: #000000;
  text-decoration: none;
}

/* Link visitado */
a:visited {
  color: #000000;
  text-decoration: none;
}

/* Link em foco */
a:focus {
  color: #000000;
  text-decoration: none;
  /*  outline: 2px solid blue; */
}

/* Link ao ser clicado */
a:active {
  color: #000000;
  text-decoration: none;
}

/* Link ao passar o mouse */
a:hover {
  color: #00bbff !important;
  text-decoration: none !important;
}

hr {
  width: 100%; /* 80% da largura do contêiner */
  height: 3px; /* Espessura de 3px */
  background-color: rgb(137, 153, 165); /* Cor preta */
  border: none; /* Remove bordas */
  margin: 20px auto;
}

::-webkit-scrollbar-track {
  background-color: #dce6ed;
}
::-webkit-scrollbar {
  width: 18px;
}
::-webkit-scrollbar-thumb {
  background: transparent;
  background-image: url("../im_barra_lateral/scr_pink.png");
  background-size: 18px;
  background-repeat: no-repeat;
}
::-webkit-scrollbar-thumb:hover {
  background: transparent;
  background-image: url("../im_barra_lateral/scr_pink_ov.png");
  background-size: 18px;
  background-repeat: no-repeat;
}

.tooltip .tooltip-inner {
  color: #000000;
  border: 1px dashed #000000;
  border-radius: 6px;
  opacity: 1;
  padding: 15px;
  font-family: Aveny;
  font-size: 14pt;
  line-height: 14pt;
  -webkit-box-shadow: 0px 0px 5px 0 #96969e;
  box-shadow: 0px 0px 5px 0 #96969e;
  background-color: #daf4fc;
}
