@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap");
* {
  padding: 0;
  margin: 0;
}

body,html { overflow-x: hidden !important;} /*usado para ocultar a barra de rolagem horizontal.*/

/*efeito de aceleração e desaceleração,(ease-in-out) é executada em direções alternadas */
.bg {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(
    -60deg,
    rgb(225, 237, 255) 50%,
    rgb(136, 164, 241) 50%,
    rgb(119, 194, 245) 50%
  );
  bottom: 0;
  left: -50%;
  opacity: 0.5;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}
/*adicionais que alteram a direção e a duração da animação*/
.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;}

.bg3 {animation-duration: 5s;}

/*Define a animação "slide" do fundo*/
@keyframes slide {
  0% {
    transform: translateX(-25%);
  } /*o elemento é deslocado para a esquerda*/
  100% {
    transform: translateX(25%);
  } /*o elemento é deslocado para a direita*/
}

/*caixa dos botões*/
.barra {
  float: right;
  justify-content: center;
  width: 45%;
  height: 35px;
  display: flex;
  margin-top: -45px;
  gap: 6px;
}

/*botão de cadastro*/
.bnt {
  height: 30px;
  width: 100px;
  display: inline-block;
  outline: none; /*remover o contorno ao redor de um elemento*/
  cursor: pointer;
  font-weight: 600;
  border-radius: 3px;
  padding: 10px 22px;
  border: 0;
  color: #3a4149;
  background: #e7ebee;
  line-height: 0.9;
  font-size: 12px;}

/*efeito de sombra do botão*/
.bnt:hover {
  transition: all 0.1s ease;
  box-shadow: 0 0 0 0 #fff, 0 0 0 3px #1de9b6;}

/*botão login*/
.bnt2 {
  height: 30px;
  width: 100px;
  display: inline-block;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 3px;
  padding: 10px 22px;
  border: 0;
  color: #3a4149;
  background: #e7ebee;
  line-height: 0.9;
  font-size: 12px;}

/*efeito de sombra do botão*/
.bnt2:hover {
  transition: all 0.1s ease;
  box-shadow: 0 0 0 0 #fff, 0 0 0 3px #1de9b6;}

/*Caixa total*/
.container {
  justify-content: center;
  width: auto;
  height: auto;}

/*caixa de Total*/
.box-texto {
  width: auto;
  margin-top: 98px;
  margin-left: -10%;}

/*caixa do texto */
.texto {
  width: 60%;
  text-align: right;
  opacity: 0.9;
  margin-left: 140px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 0.25em;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  gap: 15px;}

/*imagem da caixa de texto*/
img {
  width: 100%;
  height: 110px;}

/*paragrafo de texto*/
p {
  text-align: center;
  font-size: 25px;
  color: #040035;}

/*texto*/
h2 {
  text-align: left;
  font-size: 15px;}

/* caixa pega cada select*/
.selecao {
  border-radius: 0.25em;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
  display: block;
  width: 99%;
  height: 110vh;}

/*formulario*/
form {
  justify-content: center;
  display: grid;
  height: 490vh;
  width: auto;
  margin: 10px;
  grid-template-columns: repeat(1, 1fr); /* largura da colunas em fração*/
  gap: 10px; /* distançia das colunas e linhas*/
  padding: 30px;}

/* tamanho das selects*/
.fake-sel {
  top: 30px;
  left: 50px; /*select esta oculto*/
  display: none;
  width: 150px;}

/*classe do css manipulado no JS*/
.fake-sel-wrap {
  display: block;
  position: relative;
  height: 47px;}

/* caixa select ul, classe do css manipulado no JS */
.fake-sel-wrap ul {
  border-radius: 0.25em;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
  box-sizing: border-box; /*para alterar o modelo de caixa de um elemento.*/
  position: absolute;
  top: 0;
  left: 6%;
  font-family: Arial;
  font-size: 18px;
  width: 70vw;
  height: 100%;
  overflow: hidden; /* usada para ocultar o conteúdo que utrapassa o espaço disponível ou todo ele.*/
  cursor: pointer;
  transition: all 0.5s;
  background-color: rgba(118, 218, 236, 0);}

/*efeito da select ul*/
.fake-sel-wrap:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);}

/*conteudo da select li, classe do css manipulado no JS*/
.fake-sel-wrap ul li {
  padding: 3px;
  line-height: 1em; /*usada para definir a altura da linha em relação ao tamanho da fonte */
  display: flex;
  align-items: center;}

/*linha da ul manipulada no JS*/
.fake-sel-wrap ul li:nth-child(1) {
  border-bottom: 1px solid #ffffff;}

/*efeito na classe ativa no js*/
.fake-sel-wrap ul li.ativo {
  background-color: rgba(7, 7, 240, 0.521);
  color: white;}

/*efeito de hover na classe do js*/
.fake-sel-wrap ul li:not(:nth-child(1)):not(.ativo):hover {
  background-color: #ddd;}

/*ul da classe do JS*/
.fake-sel-wrap ul.ativo {
  overflow: auto;
  height: auto;}

/* tamanho da imagem na caixa do select da pagina*/
.fake-sel-wrap ul li img {
  width: 40px;
  height: 40px;
  margin-right: 10px;}

/* ESTE É O CSS DA SETINHA */
.fake-sel-wrap ul li:nth-child(1)::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  margin-left: auto;}

/*caixa total*/
.box-observ {
  text-align: center;
  display: flex;
  margin-left: 10%;
  height: 40%;
  width: 178vw;
  margin-top: 10px;}

/*caixa da observação*/
.observ {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40%;
  border-radius: 0.25em;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
  box-sizing: border-box;}

/*caixa da observação*/
.teste {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;}

/*area do texto*/
textarea {
  height: 85px;
  width: 200px;
}

/*stilo das letras*/
label {
  margin-left: 10px;
  font-size: 20px;
  text-align: center;
}

/*caixa e botao*/
.teste .btno {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 15px 15px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}

/*caixa e botão*/
.teste .btno {
  line-height: 42px;
  padding: 0;
  border: none;
  background: rgba(255, 27, 0, 1);
  background: linear-gradient(
    0deg,
    rgba(255, 27, 0, 1) 0%,
    rgba(251, 75, 2, 1) 100%
  );
}

/*efeito do botão*/
.btno:hover {
  color: #f0094a;
  background: transparent;
  box-shadow: none;}

.btno:before,
.btno:after {/*ajuda a estilizar, melhorando os elementos*/
  content: ""; /*Define o conteúdo do elemento como uma string vazia*/
  position: absolute; /*define a posição absoluta*/
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #f0094a;
  box-shadow: -1px -1px 5px 0px #fff, 7px 7px 20px 0px #0003,
    4px 4px 5px 0px #0002;
  transition: 400ms ease all;}

.btno:after {
  right: inherit; /*pega o valor do right*/
  top: inherit; /*pega o valor do top*/
  left: 0;
  bottom: 0;}

/*efeito dos elementos do botâo*/
.btno:hover:before,
.btno:hover:after {
  width: 100%;
  transition: 800ms ease all;}

/********************************************Media Query Tablet**************************************************************/

@media screen and (min-width: 600px) {

  body,html {overflow-x: hidden !important;}

  /*caixa dos botões*/
  .barra {
    float: right;
    justify-content: center;
    width: 25%;
    height: 35px;
    display: flex;
    margin-top: -40px;
    gap: 6px;
  }

  /*botão de cadastro*/
  .bnt {
    height: 30px;
    width: 100px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 3px;
    padding: 10px 22px;
    border: 0;
    color: #3a4149;
    background: #e7ebee;
    line-height: 0.9;
    font-size: 12px;}

  .bnt:hover {
    transition: all 0.1s ease;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px #1de9b6;}

  /*botão login*/
  .bnt2 {
    height: 30px;
    width: 100px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 3px;
    padding: 10px 22px;
    border: 0;
    color: #3a4149;
    background: #e7ebee;
    line-height: 0.9;
    font-size: 12px;}

  .bnt2:hover {
    transition: all 0.1s ease;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px #1de9b6;}

  .texto {
    width: 60%;
    display: flex;
    text-align: right;
    opacity: 0.9;
    margin-left: 140px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 0.25em;
    box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    gap: 15px;}

  img {
    width: 220px;
    height: 110px;}

  h2 {
    text-align: left;
    font-size: 20px;}

  .container {
    justify-content: center;
    width: auto;
    height: auto;}

  .box-texto {
    text-align: center;
    width: 98%;
    margin-top: 25px;
    margin-left: -5%;
  }

  .texto {
    width: 80%;
    text-align: center;
    opacity: 0.9;
    margin-left: 18%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 0.25em;
    box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
  }

  p {
    font-size: 25px;
    color: #040035;
    text-align: center;
  }

  h2 {
    font-size: 15px;
  }

  .texto:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  form {
    justify-content: center;
    display: grid;
    height: 235vh;
    width: auto;
    margin: 10px;
    grid-template-columns: repeat(2, 1fr); /* largura da colunas em fração*/
    gap: 15px; /* distançia das colunas e linhas*/
    padding: 30px;
  }

  .selecao {
    border-radius: 0.25em;
    box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    display: block;
    width: 99%;
    height: 110vh;
  }

  /* tamanho das selects*/
  .fake-sel {
    top: 30px;
    left: 50px; /*select esta oculto*/
    display: none;
    width: 150px;
  }

  .fake-sel-wrap {
    display: block;
    position: relative;
    height: 47px;
  }

  /* caixa select*/
  .fake-sel-wrap ul {
    border: 1px solid #ddd;
    position: absolute;
    top: 0;
    left: 3%;
    font-family: Arial;
    font-size: 18px;
    width: 40vw;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s;
    background-color: rgba(255, 255, 255, 0);
  }

  .fake-sel-wrap:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .box-observ {
    text-align: center;
    display: flex;
    margin-left: 20%;
    height: 40%;
    width: 155vw;
    margin-top: 10px;
  }

  .observ {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 35%;
    border-radius: 0.25em;
    box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
  }

  .teste {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  textarea {
    height: 85px;
  }

  label {
    margin-left: 10px;
    font-size: 20px;
    text-align: center;
  }

  .frame {
    width: 90%;
    margin: 40px auto;
    text-align: center;
  }

  button {
    margin: 20px;
  }

  .teste .btno {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
      7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    outline: none;
  }

  .teste .btno {
    width: 130px;
    height: 40px;
    margin-top: 23px;
    line-height: 42px;
    padding: 0;
    border: none;
    background: rgba(255, 27, 0, 1);
    background: linear-gradient(
      0deg,
      rgba(255, 27, 0, 1) 0%,
      rgba(251, 75, 2, 1) 100%
    );
  }

  .btno:hover {
    color: #f0094a;
    background: transparent;
    box-shadow: none;
  }

  .btno:before,
  .btno:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #f0094a;
    box-shadow: -1px -1px 5px 0px #fff, 7px 7px 20px 0px #0003,
      4px 4px 5px 0px #0002;
    transition: 400ms ease all;
  }

  .btno:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
  }

  .btno:hover:before,
  .btno:hover:after {
    width: 100%;
    transition: 800ms ease all;
  }
}

/******************************************Media Query PC*********************************************************************/

@media screen and (min-width: 998px) {
  body,
  html {
    overflow-x: hidden !important;
  }

  /*caixa dos botões*/
  .barra {
    float: right;
    justify-content: center;
    width: 18%;
    height: 35px;
    display: flex;
    margin-top: -40px;
    gap: 6px;
  }

  /*botão de cadastro*/
  .bnt {
    height: 30px;
    width: 100px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 3px;
    padding: 10px 22px;
    border: 0;
    color: #3a4149;
    background: #e7ebee;
    line-height: 0.9;
    font-size: 12px;
  }

  .bnt:hover {
    transition: all 0.1s ease;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px #1de9b6;
  } /* efeito na sombra da caixa*/

  /*botão login*/
  .bnt2 {
    height: 30px;
    width: 100px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 3px;
    padding: 10px 22px;
    border: 0;
    color: #3a4149;
    background: #e7ebee;
    line-height: 0.9;
    font-size: 12px;
  }

  .bnt2:hover {
    transition: all 0.1s ease;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px #1de9b6;
  }

  .texto {
    width: 60%;
    display: flex;
    text-align: right;
    opacity: 0.9;
    margin-left: 140px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 0.25em;
    box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    gap: 15px;
  }

  img {
    width: 220px;
    height: 110px;
  }

  h2 {
    text-align: left;
    font-size: 20px;
  }

  .texto:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .container {
    justify-content: center;
    width: auto;
    height: auto;
  }

  .box-texto {
    text-align: center;
    width: auto;
    margin-top: 25px;
    margin-left: -7%;
  }

  .texto {
    width: 50%;
    text-align: center;
    opacity: 0.9;
    margin-left: 28%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 0.25em;
    box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
  }

  p {
    font-size: 25px;
    color: #040035;
    text-align: center;
  }

  h2 {
    font-size: 15px;
  }

  .texto:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  form {
    justify-content: center;
    display: grid;
    height: 125vh;
    width: auto;
    margin: 10px;
    grid-template-columns: repeat(4, 2fr); /* largura da colunas em fração*/
    grid-template-rows: 650px 200px;
    gap: 15px; /* distançia das colunas e linhas*/
    padding: 30px;
  }

  .selecao {
    border-radius: 0.25em;
    box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    display: block;
    width: 100%;
    height: 108vh;
  }

  /* tamanho das selects*/
  .fake-sel {
    top: 25px;
    left: 0; /*select esta oculto*/
    display: none;
    width: 150px;
  }

  .fake-sel-wrap {
    display: inline-block;
    position: relative;
    height: 47px;
  }

  /* caixa select*/
  .fake-sel-wrap ul {
    border: 1px solid #ddd;
    float: left;
    position: absolute;
    top: 0;
    left: -140px;
    font-family: Arial;
    font-size: 18px;
    width: 21vw;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s;
    background-color: rgba(255, 255, 255, 0);
  }

  .fake-sel-wrap:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  /*caixa das observações */
  .box-observ {
    margin-left: 33%;
    height: 40%;
    width: 85vw;
    margin-top: 15px;
  }

  .observ {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    border-radius: 0.25em;
    box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
  }

  .teste {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  textarea {
    height: 85px;
  }

  label {
    margin-left: 10px;
    font-size: 20px;
    text-align: center;
  }

  .frame {
    width: 90%;
    margin: 40px auto;
    text-align: center;
  }

  button {
    margin: 20px;
  }

  .teste .btno {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
      7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    outline: none;
  }

  .teste .btno {
    width: 130px;
    height: 40px;
    margin-top: 23px;
    line-height: 42px;
    padding: 0;
    border: none;
    background: rgba(255, 27, 0, 1);
    background: linear-gradient(
      0deg,
      rgba(255, 27, 0, 1) 0%,
      rgba(251, 75, 2, 1) 100%
    );
  }

  .btno:hover {
    color: #f0094a;
    background: transparent;
    box-shadow: none;
  }

  .btno:before,
  .btno:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #f0094a;
    box-shadow: -1px -1px 5px 0px #fff, 7px 7px 20px 0px #0003,
      4px 4px 5px 0px #0002;
    transition: 400ms ease all;
  }

  .btno:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
  }

  .btno:hover:before,
  .btno:hover:after {
    width: 100%;
    transition: 800ms ease all;
  }
}
