/*fontes*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.7.1/slick.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.7.1/slick-theme.css');

/*cores*/
:root {
  --cor1: #97bef8;
  --cor2: #304bd3;
  --cor3: #000000;
  --cor4: #ffffff;

}

/*navegadores*/
* {
  font-family: 'roboto', sans-serif;

  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}



/*configurações do menu*/
.barra_sup {
  position: fixed;
  width: 100%;
  background-color: var(--cor2);
  z-index: 2;
}

.barra_termo {
  width: 100%;
  background-color: var(--cor2);
  display: flex;
  z-index: 2;
}

.icone_emap {
  height: 80px;
  width: 150px;
}

.icone_emap_sup {
  height: 80px;
  width: 100%;
}

.icone_pref {
  height: 120px;
  width: 100%;
}

.menu {
  background-color: var(--cor2);
  font-size: 24px;
}

.menu li {
  margin-top: 4%;
  margin-bottom: -1%;
  font-weight: bold;
  padding: 0 2px;
}

.menu li ul {
  position: absolute;
  display: none;
  background-color: var(--cor2);
  padding-bottom: 4px;
}

.menu li:hover ul,
.menu li.over ul {
  display: block;
}

.menu li ul li {
  display: block;
  background-color: var(--cor2);
}

.logo {
  width: 30%;
}

.logo img {
  width: 70%;
}

/*body*/
body {
  background-color: rgb(214, 212, 212);
  margin: 0;
}

header {
  height: 100px;
  background-color: var(--cor4);

}

nav li {
  display: inline-block;
  margin: 1rem 1rem;
}


nav a {
  color: var(--cor1);
}

nav a:hover {
  color: var(--cor4);
  
}

.mobile-nav-toggle {
  color: var(--cor4);
  font-size: 4em;
}

#mobile_close {
  color: var(--cor4);
  font-size: 2em;
  margin-right: -90%;
  margin-top: -90%;
}

/* Configurações para quando a tela for estreita (celular/tablet)*/
@media screen and (max-width: 900px) {
  .barra_sup{
    width: 100%;
  }

  .barra_sup .row {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .icone_emap_sup {
    height: 80px;
    width: 120px;
  }
  
  .icone_pref {
    height: 120px;
    width: 80px;
  }


  .imagem {
    width: 320px;
    height: 320px;
  }
  
  .imagem2 {
    width: 400px;
    height: 300px;
  }

  .escola_img{
    width: 350px; 
    height: 280px; 
    border-radius: 5px;
  }

  #quem_somos {
    margin-top: 5%;
    margin-bottom: 5%;
    margin-right: 2%;
    margin-left: 2%;

  }

  .navmenu {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .exibe_curso {
    width: 90%;
    text-align: center;
    display: block;
    padding: 3% 3%;
  }

  .quem_somos div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .imagem-curso {
    width: 400px;
    height: 300px;
  }

  footer {
    margin-top: 100px;
    bottom:0;
    left:0;
    background-color: var(--cor2);
    width: 100%;
    height: 300px;
    text-align: center;
    
  }
}

/* Configurações para quando a tela for larga (computador)*/
@media screen and (min-width: 901px) {
  .imagem {
    width: 450px;
    height: 350px;
  }
  
  .imagem2 {
    width: 550px;
    height: 400px;
  }
  
  #quem_somos {
    margin-top: 5%;
    margin-bottom: 5%;
    margin-right: 2%;
    margin-left: 2%;
    width: 110%;
  }

  .escola_img{
    width: 450px; 
    height: 350px; 
    border-radius: 5px;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .exibe_curso {
    width: 47%;
    text-align: center;
    display: block;
    padding: 3% 3%;
  }

  .quem_somos div {
    display: flex;
  }

  .imagem-curso {
    width: 600px;
    height: 400px;
  }


  footer {
    margin-top: 30vh;
    bottom:0;
    left:0;
    background-color: var(--cor2);
    width: 100%;
    height: 210px;
    text-align: center;
  }
}




/* Janela de confirmação, fica oculta é exibida quando o usuário clica em um botão, por exemplo para aprovar aluno e menu mobile*/
#window {
  display: none;
  text-align: center;
  position: absolute;
  background: rgba(0,0,0,0.5);
  font-family: sans-serif;
  width: 98%;
  height: 98%;
  border: 1px solid #999;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 5%;
  z-index: 3;
}

/*Menu para o celular*/
.menu_mobile {
  background-color: var(--cor2);
  text-align: center;
  margin: auto;
}

.menu_mobile li {
  height: 10%;
  width: 90%;
  font-weight: bold;
  margin-bottom: 5%;
  color: var(--cor4);
}

.menu_mobile a {
  color: var(--cor4);
}

.menu_mobile li ul {
  position: absolute;
  display: none;
  background-color: var(--cor2);
  color: var(--cor4);
}

.menu_mobile li:hover ul,
.menu_mobile li.over ul {
  display: block;
}

.menu_mobile li ul li {
  display: block;
}

.faq {
  border: 1px solid gray;
  border-radius: 10px;
  padding: 5px;
  width: 90%;
  text-align: center;
  margin: auto;
}

/*--Configurações do Main--*/
.main {
  width: 98%;
  margin-top: 2%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  /*--background-color: rgb(214, 212, 212); --*/
  padding-bottom: 10%;
  position: relative;
}

.main::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/fundo-cinza.jpg");
  background-position: bottom;
  z-index: -1;
  opacity: 0.2;
}

.main form {
  width: 90%;
  text-align: center;
  margin: 2% auto;
}

form .row{
  padding: 3px;  
}

.titulo_proposta {
  margin-left: 1%;
}

.titulo_proposta h2 {
  color: var(--cor4);

}




.carrossel h3 {
  font-weight: normal;
}

.carrossel h2 {
  width: 100%;
  background-color: var(--cor2);
  margin: auto;

}

.carrossel h2 a {
  color: white;
}



#contato {
  text-align: center;
}


/*Área de cursos e contato*/
.midias {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  position: relative;
}

.midias::before{ /* Usado para adicionar um background opaco*/
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/fundo-azul.jpg");
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  opacity: 0.5;
}

.midias div {
  padding: 1%;
}

.midias-not {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  position: relative;
}

.midias-not::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/fundo-cinza.jpg");
  background-position: bottom;
  z-index: -1;
  opacity: 0.2;
}

.midias-not div {
  padding: 1%;
}


.contato-item {
  display: block;
  text-align: center;
  margin: auto;
}

.contato-item i {
  color: var(--cor2);
  font-size: 4em;
}

.contato-form {
  width: 90%;
  margin: auto;
  text-align: center;
  border: 1px solid gray;
}

.contato-form .row {
  padding: 1%;
}



.rodape {
  color: white;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;

}

.rodape_titulo h1 {
  text-align: center;
  font-size: 24px;
  padding-top: 1%;
  color: #ffffff;
  font-style: bold;
}

.rodape h2 {
  font-size: 20px;
  width: 100%;
  color: white;
}

.rodape h3 {
  font-size: 14px;
  margin: auto;
}

.rodape a {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  margin: auto;
}

.rodape a:hover{
  color:var(--cor1);
}

.rodape div {
  padding: 1%;
}


/* -- Configuração login aluno--*/

.login_aluno {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: center;
  margin: 2% auto;
}


.alerta {
  text-align: center;
  margin-top: 5% auto;

}

/*Formatação da área do aluno*/

.barra_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #23316e;
  width: 95%;
  margin: 2% auto;
  padding: 1% 5%;
}

.barra_top h1 {
  color: #ffffff;
}

.barra_top a {
  color: #ffffff;
}

.info_aluno {
  width: 90%;
  max-height: 100%;
  margin: 2% auto;
  padding: 2%;
  text-align: center;
}

.info_aluno h2 {
  font-size: 20px;
  font-weight: 700;
}

.tabela_cursos {
  width: 90%;
  max-height: 100%;
  margin: 2% auto;
  padding: 2%;
}

.tabela_cursos table {
  width: 100%;
  max-height: 100%;

}

.tabela_cursos thead {
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.tabela_cursos tr {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: white;
  justify-content: space-between;
  text-align: center;
}


tr:nth-child(even) {
  background: rgb(194, 192, 192);
}

.tabela_cursos body {
  width: 100%;
  height: 100%;

  text-align: center;
}

.tabela_cursos td {
  width: 33%;
  padding: 1%;
  text-align: center;
}

.tabela_cursos th {
  width: 33%;
  text-align: center;
}

/* Configurações página de cursos*/

.grade_cursos {
  width: 100%;
  max-height: 100%;
  margin: 3% 0%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}



.exibe_curso h3 {
  text-align: center;
  color: #548adb;
}

.exibe_curso h4 {
  text-align: center;
  font-weight: normal;
}

h1 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--cor3);
  border-bottom: 3px solid var(--cor2);
}

h2 {
  text-align: center;
  padding: 2%;
  font-size: 18px;
  font-weight: bold;
  margin-top: 5%;
  color: var(--cor3);
  width: 70%;
  margin: auto;
  border-bottom: 3px solid var(--cor2);
  background: rgba(24, 31, 90, 0.05);
  font-family: "Trebuchet MS";
}


/* Configurações da pagina exibe curso*/
.desc_curso {
  height: 400px;
  width: 80%;
  margin: 5% 5%;
  background-color: #ffffff;
  border: solid black;
  border-collapse: collapse;
}


.desc_curso td {
  align-items: center;
  border: solid black;
  padding: 2% 2%;
}

.botao_curso {
  text-align: center;
  display: flex;
  width: 100%;
  margin-top: 10%;
  border-radius: 10px;
}

.botao_curso a {
  margin: -8% 45%;
  height: 100%;
  width: 100%;
  padding: 1%;
  background-color: #23316e;
  color: #ffffff;
  text-align: center;
  align-items: center;
  border-radius: 10px;
}

/*Configurações área de inscrição*/

#login {
  background-color: var(--cor1);
  width: 30%;
  height: 200px;
  margin: 2% auto;
}

#login input {
  padding: 1%;
  margin-top: 5%;
  width: 90%;
}

.valida_aluno {
  margin: 3% 0%;
  width: 100%;
  display: block;
  text-align: center;

}

.valida_aluno form {
  width: 80%;
  margin: auto;
  text-align: center;
  display: block;
  justify-content: space-between;

}

.valida_aluno form input {
  margin: 1% 0;
}

.atualiza_aluno {
  width: 80%;
  height: 70%;
  margin: auto;
  margin-top: 100px;
  text-align: center;
  display: block;
  background-color: #548adb;
}

.atualiza_aluno form {
  width: 100%;
  text-align: start;
  display: block;
}

.aluno_linha {
  width: 100%;
  text-align: start;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 1% 0;
}

.aluno_coluna {
  display: block;
  padding: 0 3%;
  margin-left: 2%;
}

.aluno_linha_botao {
  width: 100%;
  text-align: center;
  margin: 2% 47%;
  display: flex;
  border-radius: 10px;
}

.aluno_botao input {
  display: block;
  background-color: #23316e;
  color: #ffffff;
  border-radius: 10px;
}

.aluno_label {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  font-weight: bold;
}

.oculto {
  display: none;
}

/* Configuração Quem somos*/

.instituicao {
  display: flex;
  flex-wrap: wrap;
  flex-direction: line;
  justify-content: space-between;
  height: 70vh;
  text-align: center;
}

.well{
  text-align: center;
  margin: auto;
}

.inst_f{
  display: block;
  margin: 8px;
  text-align: center;
  background-image: url("../img/logo_2.png");
  background-size: cover;
}

.inst_col{
  width: 100%;
  text-align: center;
  background-color: var(--cor1);
  padding: 3%;
}

.inst_col h3{
  color: black;
  font-weight: bold;
  text-align: center;
}

.inst_col h4 {
  color: #000000;
  font-weight:bolder;
}

.inst_col h5 {
  color: #000000;
  font-weight:bolder;
  font-size: 18px;
  text-align: center;
  margin: auto;
}



.quem_somos div {
  display: flex;
}

.escola {
  width: 90%;
  margin: auto;
  margin-top: 5%;
}

.escola div img {
  border: #ffffff;
  border-width: 1%;
  margin: 1%;
  border-radius: 10px;
  float: left;
}

.escola div h3 {
  font-weight: normal;
}

/* Configuração página lei*/
.lei {
  text-align: center;
  height: 100vh;
  margin: 5% 0;
}

/* Configuração Perguntas e respostas*/
.faqs {
  margin-top: 5%;
  margin-bottom: 5%;
}

.pergunta {
  text-align: center;
  padding: 1%;
}

.perg {
  font-size: medium;
  font-weight: bold;
  width: 80%;
  background-color: rgb(202, 214, 247);
}

.pergunta:hover .resposta {
  display: block;
}

.resposta {
  display: none;
}

/* Configuração contato*/
.contato {
  width: 80%;
  margin: auto;
  margin-top: 5%;
  margin-bottom: 5%;
  text-align: center;
  background-color: rgb(90, 90, 97);
}

.linha {
  margin: 2% 0;
  padding: 3% 0;
  display: block;
  justify-content: space-between;
}

.linha input {
  width: 40%;
  margin: 0 3%;
  text-align: start;
}

.campo textarea {
  width: 70%;
  text-align: start;
  margin-bottom: 1%;
}

/* Configuração exibe noticia*/

.main_noticia {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.main_noticia h2 {
  text-align: center;
  margin: 1% auto;
}

.noticia {
  text-align: center;
  margin: 5%;

}



.imagem_not {
  min-width: 250px;
  max-width: 40%;
  float: left;
  margin-right: 2%;
}

.texto_not {
  margin-top: 6%;
  padding-left: 2%;
  font-size: 22px;
}



.main_noticia h4 {
  font-size: 12px;
  padding: 0, 5%;
  font-weight: normal;
  margin-left: 5%;
}

#main {
  text-align: center;
}

/* Configuração area educador*/

.dados_educador h2 {
  color: white;
  background-color: var(--cor2);
}


.form_noticia {
  display: block;
  margin-bottom: 3%;
}

.linha_educador {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.coluna_educador {

  display: block;
  padding: 2%;
}

.pesquisa {
  width: 100%;
  align-items: end;
}

.pesquisa div {
  display: block;
  margin-left: 3%;
}

.resultado {
  margin-top: 3%;
  width: 90%;
}

.tab_result {
  width: 90%;
  border-style: solid;
  border-width: 1px;
  border-collapse: collapse;
  margin: 0 auto;
}

.tab_result thead {
  width: 100%;
}

.tab_result thead tr {
  width: 100%;
  display: flex;
  justify-content: space-between;

}

.tab_result th {
  border-style: solid;
  border-width: 1px;
}

.tab_result tbody {
  width: 100%;
}

.tab_result tbody tr {
  width: 100%;
  display: flex;
  justify-content: space-between;

}

.tab_result td {
  border-style: solid;
  border-width: 1px;
  text-decoration: none;
}

.tab_result td a {
  text-decoration: none;
  color: black;
}


.tab_result td:nth-child(1) {
  width: 50%;
}

.tab_result td:nth-child(2) {
  width: 30%;
}

.tab_result td:nth-child(3) {
  width: 15%;
}

.tab_result td:nth-child(4) {
  width: 5%;
}

.form_arquivo {
  display: flex;
}

.botao {
  background-color: var(--cor2);
  color: white;
  text-align: center;
  padding: 1%;
  border-radius: 10px;
  margin-top: 2%;
  text-decoration: none;
}

.botao_voltar{
  background-color: #535353;
  color: white;
  text-align: center;
  padding: 1%;
  border-radius: 10px;
  margin-top: 2%;
  text-decoration: none;
}

.botao_proposta {
  text-align: center;
  margin: 3% auto;
  border-radius: 10px;
}

.curso_detalhes {
  width: 90%;
  margin: auto;
}

.curso_detalhes h3 {
  color: var(--cor2);
  font-weight: bold;
}

.curso_detalhes i {
  font-size: 3em;
}

.curso_ementa {
  background-color: var(--cor1);
  color: white;
  padding: 2%;
}

.curso_insc {
  background-color: var(--cor1);
  color: white;
  text-align: center;
  margin: auto;
}

.curso_insc input {
  margin: auto;
  width: 70%;
}

/* FAQ Bootstrap exemplo*/
.panel-default {
  padding: 1%;
}

.accordion_one .panel-group {

  border: 1px solid #f1f1f1;
  margin-top: 100px;


}

a:link {
  text-decoration: none
}

.accordion_one .panel {
  background-color: transparent;
  box-shadow: none;
  border-bottom: 0px solid transparent;
  border-radius: 0;
  margin: 0;
}

.accordion_one .panel-default {
  border: 0;
}

.accordion-wrap .panel-heading {
  padding: 0px;
  border-radius: 0px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
}

.accordion_one .panel .panel-heading a.collapsed {
  color: #1f1e1e;
  display: block;
  padding: 12px 30px;
  border-top: 0px;
}

.accordion_one .panel .panel-heading a {
  display: block;
  padding: 12px 30px;
  background: #fff;
  color: #313131;
  border-bottom: 1px solid #f1f1f1;
}

.accordion-wrap .panel .panel-heading a {
  font-size: 14px;
}

.accordion_one .panel-group .panel-heading+.panel-collapse>.panel-body {
  border-top: 0;
  padding-top: 0;
  padding: 25px 30px 30px 35px;
  background: #fff;
  color: #252525;
}

.img-accordion {
  width: 81px;
  float: left;
  margin-right: 15px;
  display: block;
}

.accordion_one .panel .panel-heading a.collapsed:after {
  content: "\2b";
  color: #999999;
  background: #f1f1f1;
}

.accordion_one .panel .panel-heading a:after,
.accordion_one .panel .panel-heading a.collapsed:after {
  font-family: 'FontAwesome';
  font-size: 15px;
  width: 36px;

  line-height: 48px;
  text-align: center;
  background: #F1F1F1;
  float: left;
  margin-left: -31px;
  margin-top: -12px;
  margin-right: 15px;
}

.accordion_one .panel .panel-heading a:after {
  content: "\2212";
}

.accordion_one .panel .panel-heading a:after,
.accordion_one .panel .panel-heading a.collapsed:after {
  font-family: 'FontAwesome';
  font-size: 15px;
  width: 36px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: var(--cor2);
  float: left;
  margin-left: -31px;
  margin-top: -12px;
  margin-right: 15px;
}

.perguntas {
  display: flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  margin: auto;
  border: 1px solid rgba(2, 2, 2, 0.067);
  border-radius: 10px;
  position: relative;
}

.perguntas::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/fundo-azul.jpg");
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  opacity: 0.7;
}

.perguntas a{
  font-weight: bold;
}

.perguntas div {
  text-align: center;
  margin: auto;
}

.faq_imagem img {
  width: 100%;
  height: 400px;
}


.carousel-item {
  padding: 2%;
  width: 100vw;
  height: 80vh;
  
}

.carousel-item img {
  width: 100vw;
  height: 80vh;
  background: (rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
}

.carousel-caption h3{
  font-size: 40px;
  font-weight: bold;
}

.carousel-caption p{
  font-size: 20px;
}

#form2{
  display: none;
}

/* Main cadastro moodle*/
.main-moodle {
  width: 70%;
  margin-top: -2%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: rgb(214, 212, 212);
}

.main-moodle form {
  width: 98%;
  text-align: center;
  margin: 2% auto;
}


/* personalização dos forms usados no site*/
.cadastro{
 padding: 2%;
 background-color: whitesmoke;
 border: solid 1px;
 border-radius: 1ch;
 font-weight: bold;
 box-shadow: 12px 8px var(--cor2);
}

#tab-aluno li{
  padding: 1%;
  border: var(--cor2);
  border-style: solid;
  border-radius: 8%;
  margin-right: 10%;
}

.logo_termo{
  width: 50%;
  height: 150px;
  text-align: center;
  margin: 1% auto;
}

.img_instituicao{
  width: 100%;
  height: 400px;
}