:root {
  --cor-1: #232455;
  --cor-2: #737373;
  --cor-3: #2a2b69;
  --cor-4: #5199a4;
  --cor-5: #e5e5e5;
  --cor-6: #8586dc;
  --bs-body-font-family: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: "Roboto", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

::placeholder {
  opacity: 0.8;
  /* Firefox */
  color: var(--cor-2);
}

::-ms-input-placeholder {
  /* Edge 12 -18 */
  opacity: 0.8;
  color: var(--cor-2);
}

html.active {
  overflow: hidden;
}

body.active {
  overflow: hidden;
}

.titulo-secao {
  font-size: 44px;
  font-weight: 700;
}
.titulo-secao.cor-1 {
  color: var(--cor-1);
}
.titulo-secao.white {
  color: white;
}
.titulo-secao div {
  margin: 15px auto 0 auto;
  width: 30px;
  height: 4px;
  border-radius: 2px;
}
.titulo-secao div.cor-4 {
  background-color: var(--cor-4);
}

.texto {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
}
.texto.cor-2 {
  color: var(--cor-2);
}

.botao {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  height: 60px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
}
.botao.cor-1 {
  color: white;
  background: var(--cor-1);
  transition: all 0.3s ease-in-out;
}
.botao.cor-1:hover {
  background: var(--cor-6);
  color: white;
}

#menuSuperior {
  display: flex;
  flex-direction: row;
  justify-content: end;
  padding-top: 10px;
}
#menuSuperior a {
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  margin-left: 20px;
  text-decoration: none;
}

.menu .nivel-1 {
  margin-bottom: 30px;
}
.menu .nivel-1 .opc-1 > a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.menu .nivel-1 .opc-1 > a span {
  font-size: 16px;
  color: white;
  text-transform: uppercase;
}
.menu .nivel-1 .opc-1 > a i {
  transition: 0.3s;
}
.menu .nivel-1 .opc-1 .nivel-2 {
  overflow: hidden;
  transition: 0.3s;
  padding-left: 40px;
}
.menu .nivel-1 .opc-1 .nivel-2 .opc-2 a {
  font-size: 14px;
  color: var(--cor-6);
  text-decoration: none;
}
.menu .nivel-1 .opc-1 .nivel-2 .opc-2 a:hover {
  color: #fff;
}

.btInvencao {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  width: 250px;
  height: 50px;
  border-radius: 25px;
  position: relative;
  border: 1px solid #ef5a4d;
  color: #ef5a4d;
  font-weight: 300;
  /* gradient color */
  text-decoration: none;
}
.btInvencao img {
  height: 45px;
}

header {
  background-color: var(--cor-1);
  height: 170px;
}
header #menuInferior {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
  margin: 20px 0;
}
header #menuInferior li {
  list-style: none;
  margin-left: 10px;
}
header #menuInferior li.hover::after, header #menuInferior li:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--cor-4);
  margin-top: 5px;
}
header #menuInferior li.hover a, header #menuInferior li:hover a {
  color: var(--cor-4);
}
header #menuInferior li a {
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
}
header #menuInferior li a img {
  margin-left: 5px;
}
header #menuInferior li ul.subMenuInferior {
  display: none;
  margin-top: 5px;
  z-index: 2;
  position: absolute;
  background-color: var(--cor-1);
  padding: 10px 20px;
  border-bottom: 4px solid var(--cor-4);
}
header #menuInferior li ul.subMenuInferior li {
  margin: 5px 0;
}
header #menuInferior li ul.subMenuInferior li a {
  color: white;
  text-decoration: none;
}
header #menuInferior li ul.subMenuInferior li.hover::after, header #menuInferior li ul.subMenuInferior li:hover::after {
  display: none;
}
header #menuInferior li ul.subMenuInferior li.hover a, header #menuInferior li ul.subMenuInferior li:hover a {
  color: var(--cor-4);
}
header #menuInferior li:hover ul {
  display: block;
}
header #menu {
  background-color: var(--cor-1);
  color: white;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: -101vw;
  z-index: 3;
  transition: 0.3s;
  padding: 150px 40px 40px 40px;
}
header #menu.active {
  right: 0;
  overflow-y: auto;
}
header #menu .menu {
  overflow-y: scroll;
}
header #menu .menu .opc-1 .nivel-2 {
  height: 0;
}
header #menu .menu .opc-1 .nivel-2.active {
  height: auto;
}
header #menu .menu .opc-1.active > a span {
  color: var(--cor-4);
  font-weight: 700;
}
header #menu .menu .opc-1.active > a i {
  transform: rotate(180deg);
  transform-origin: center;
}
header #menu .menu .opc-1.active > .nivel-2 {
  height: auto;
}
header h1 {
  margin: 0;
  display: flex;
  align-items: center;
  height: 75px;
  position: relative;
  z-index: 5;
}
header #area-bt {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 75px;
}
header #area-bt #bt-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background-color: var(--cor-3);
  position: relative;
  z-index: 5;
  cursor: pointer;
}
header #area-bt #bt-menu .close {
  display: none;
}
header #area-bt.active #bt-menu .close {
  display: inline;
}
header #area-bt.active #bt-menu .open {
  display: none;
}

footer {
  background-color: var(--cor-1);
  padding: 35px 0;
}
footer .menu .nivel-1 .opc-1 a i {
  display: none;
}
footer .linksPolitica a {
  font-size: 14px;
  color: white;
  text-decoration: none;
  margin-left: 20px;
}
footer .linksPolitica a:first-child {
  margin-left: 0;
}

#editais {
  margin-bottom: 90px;
}
#editais .editais .edital .aba {
  display: inline-block;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  text-transform: none;
  font-size: 25px;
}
#editais .editais .edital .lista {
  padding: 35px;
  background-color: var(--cor-5);
  border-radius: 0 0 20px 20px;
}
#editais .editais .edital .lista p {
  margin: 0;
  line-height: 40px;
}
#editais .editais .edital .lista p a {
  font-size: 20px;
  color: var(--cor-2);
  font-weight: 400;
  line-height: 20px;
}

#perguntas .frase {
  width: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#perguntas .perguntas {
  padding: 0px 35px 35px 35px;
  background-color: var(--cor-5);
  border-radius: 0 0 20px 20px;
}
#perguntas .perguntas .item .pergunta {
  display: flex;
  justify-content: space-between;
  min-height: 48px;
  line-height: 48px;
  border-bottom: 1px solid white;
}
#perguntas .perguntas .item .pergunta strong {
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  color: var(--cor-2);
}
#perguntas .perguntas .item .pergunta span img {
  transition: 0.3s;
}
#perguntas .perguntas .item .pergunta.active span img {
  transform: rotate(180deg);
  transform-origin: center;
}
#perguntas .perguntas .item .resposta {
  height: 0;
  overflow: hidden;
  font-size: 20px;
  font-weight: 400;
  font-size: 18px;
  color: var(--cor-2);
  transition: 0.3s;
}
#perguntas .perguntas .item .resposta.active {
  height: auto;
  padding: 20px;
}

#contato form label {
  display: block;
  margin-bottom: 10px;
}
#contato form label input {
  display: block;
  width: 100%;
  height: 46px;
  line-height: 46px;
  border: 2px solid var(--cor-2);
  color: var(--cor-2);
  border-radius: 5px;
  padding: 0 10px;
}
#contato form label textarea {
  display: block;
  width: 100%;
  height: 150px;
  line-height: 20px;
  border: 2px solid var(--cor-2);
  color: var(--cor-2);
  border-radius: 5px;
  padding: 5px 10px;
}

#vitrineTecnologica {
  margin-bottom: 80px;
}
#vitrineTecnologica .card {
  height: 200px;
}
#vitrineTecnologica .card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-decoration: none;
  transition: 0.3s;
}
#vitrineTecnologica .card .card-body .card-title {
  color: var(--cor-1);
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
#vitrineTecnologica .card .card-body .card-subtitle {
  font-size: 16px;
  color: var(--cor-2);
}
#vitrineTecnologica .card .card-body .card-text {
  font-size: 12px;
}
#vitrineTecnologica .card .card-body .card-link {
  background-color: var(--cor-1);
  color: white;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  display: inline-block;
  width: 100px;
  text-align: center;
  text-decoration: none;
}
#vitrineTecnologica .card:hover .card-body {
  background-color: white;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/*-lg*/
/*-md*/
@media (max-width: 991.98px) {
  #editais .editais .edital .lista p a {
    font-size: 16px;
    line-height: 16px;
  }
  #perguntas .perguntas .item .pergunta strong {
    font-size: 16px;
  }
  #perguntas .perguntas .item .resposta {
    font-size: 16px;
  }
}
/*-sm*/
@media (max-width: 767.98px) {
  .titulo-secao {
    font-size: 28px;
  }
  .botao {
    font-size: 14px;
    line-height: 14px;
    height: 50px;
    padding: 18px 30px;
    border-radius: 7px;
  }
  #editais .editais .edital .lista {
    padding: 22px;
    border-radius: 0 0 12px 12px;
  }
  #editais .editais .edital .lista p {
    line-height: 26px;
    padding: 7px 0;
  }
  #editais .editais .edital .aba {
    font-size: 20px;
  }
  #perguntas .perguntas .item .pergunta {
    height: auto;
    min-height: 40px;
    line-height: 26px;
    padding: 5px 0;
  }
}
/*-mobile*/
@media (max-width: 575.98px) {
  #menuSuperior {
    justify-content: end;
    padding-top: 10px;
    margin-bottom: 25px;
  }
  #menuSuperior a {
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    margin-left: 25px;
    text-decoration: none;
  }
  #editais .editais .edital .lista p {
    line-height: 20px;
  }
  #editais .editais .edital .lista p a {
    font-size: 14px;
  }
  #perguntas .perguntas {
    padding: 0 20px 20px 20px;
  }
  #perguntas .perguntas .item .pergunta {
    line-height: 20px;
  }
  #perguntas .perguntas .item .pergunta strong {
    font-size: 14px;
  }
  #perguntas .perguntas .item .resposta {
    font-size: 14px;
  }
  #perguntas .perguntas .item .resposta.active {
    padding: 3px;
  }
  #perguntas .frase {
    height: auto;
    line-height: normal;
  }
  #vitrineTecnologica {
    margin-bottom: 80px;
  }
  #vitrineTecnologica .card {
    height: auto;
    margin-bottom: 20px;
  }
}

/*# sourceMappingURL=site.css.map */
