/*Define o estilo para o elemento da página.*/
body {
  padding: 0;
  margin: 0;
  background: #012e64;
  color: #eeeeee;
  text-align: center;
  font-family: "Lato", sans-serif;}

/*estilo do menu tribar parte circulo*/
.menu-item,.menu-open-button {
  background: #eeeeee;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  margin-top: -125px;
  margin-left: -35px;
  position: absolute;
  color: #ffffff;
  text-align: center;
  line-height: 80px; /*Define a altura da linha de texto dentro desses elementos */
  -webkit-transform: translate3d(0, 0, 0);/*transformação 3D para melhorar o desempenho de animações em navegadores WebKit.*/
  transform: translate3d(0, 0, 0);/* Aplica uma transformação 3D para melhorar o desempenho de animações.*/
  -webkit-transition: -webkit-transform ease-out 200ms;/*Define uma transição em milissegundos para a propriedade*/
  transition: -webkit-transform ease-out 200ms;/*Define uma transição em milissegundos para a propriedade aplicada na webkit*/
  transition: transform ease-out 200ms;/*Define uma transição*/
  transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;}

.menu-open {display: none;}/*faz com que o elemento fique oculto na página.*/

/*configuração das linhas do tribar*/
.lines {
  width: 25px;
  height: 3px;
  background: #596778;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;}

/*cada linha*/
.line-1 {
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);}

/*cada linha*/
.line-2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);}

/*cada linha*/
.line-3 {
  -webkit-transform: translate3d(0, 8px, 0);
  transform: translate3d(0, 8px, 0);}

/*configuração de checagem de do imput e label de cada linha*/
.menu-open:checked + .menu-open-button .line-1 {
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  transform: translate3d(0, 0, 0) rotate(45deg);}

/*configuração de checagem de do imput e label de cada linha*/
.menu-open:checked + .menu-open-button .line-2 {
  -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
  transform: translate3d(0, 0, 0) scale(0.1, 1);}

/*configuração de checagem de do imput e label de cada linha*/
.menu-open:checked + .menu-open-button .line-3 {
  -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
  transform: translate3d(0, 0, 0) rotate(-45deg);}

/*campo menu*/
.menu {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 80px;
  height: 80px;
  text-align: center;
  box-sizing: border-box;
  font-size: 26px;}

.menu-item:hover {
  background: #eeeeee;
  color: #3290b1;}*/

/*todas as configurações dos icones*/
.menu-item:nth-child(3) { /*seleciona um elemento ".menu-item"*/
  -webkit-transition-duration: 180ms;  /*é uma forma específica do navegador WebKit de definir a duração da transição,*/
  transition-duration: 180ms;/*define a duração da transição para navegadores que suportam o padrão CSS*/
}

.menu-item:nth-child(4) { /*seleciona um elemento ".menu-item"*/
  -webkit-transition-duration: 180ms; /*é uma forma específica do navegador WebKit de definir a duração da transição,*/
  transition-duration: 180ms;} /*define a duração da transição para navegadores que suportam o padrão CSS*/

.menu-item:nth-child(5) { /*seleciona um elemento ".menu-item"*/
  -webkit-transition-duration: 180ms; /*é uma forma específica do navegador WebKit de definir a duração da transição,*/
  transition-duration: 180ms;}/*define a duração da transição para navegadores que suportam o padrão CSS*/

.menu-item:nth-child(6) { /*seleciona um elemento ".menu-item"*/
  -webkit-transition-duration: 180ms; /*é uma forma específica do navegador WebKit de definir a duração da transição,*/
  transition-duration: 180ms;}/*define a duração da transição para navegadores que suportam o padrão CSS*/

.menu-item:nth-child(7) { /*seleciona um elemento ".menu-item"*/
  -webkit-transition-duration: 180ms;  /*é uma forma específica do navegador WebKit de definir a duração da transição,*/
  transition-duration: 180ms;}/*define a duração da transição para navegadores que suportam o padrão CSS*/

.menu-item:nth-child(8) { /*seleciona um elemento ".menu-item"*/
  -webkit-transition-duration: 180ms; /*é uma forma específica do navegador WebKit de definir a duração da transição,*/
  transition-duration: 180ms;}/*define a duração da transição para navegadores que suportam o padrão CSS*/

.menu-item:nth-child(9) { /*seleciona um elemento ".menu-item"*/
  -webkit-transition-duration: 180ms; /*é uma forma específica do navegador WebKit de definir a duração da transição,*/
  transition-duration: 180ms;}/*define a duração da transição para navegadores que suportam o padrão CSS*/

/*funciona como um botão para o menu*/
.menu-open-button {
  z-index: 2;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);/*cubic-bezier Esses valores determinam 
                                                  a forma da curva função de temporização para a animação de transição.*/
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);/*duração tempo da transição em milissegundos.*/
  -webkit-transition-duration: 400ms;/*duração da transição em milissegundos.*/
  transition-duration: 400ms; /*duração tempo da transição em milissegundos.*/
  -webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);/*escala de 1.1 no eixo X e Y, e realiza uma transformação 3D no eixo Z para o botão.*/
  transform: scale(1.1, 1.1) translate3d(0, 0, 0);/*escala de 1.1 no eixo X e Y, e realiza uma transformação 3D no eixo Z para o botão.*/
  cursor: pointer;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);}/*adiciona uma sombra ao botão.*/

.menu-open-button:hover {
  -webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
  transform: scale(1.2, 1.2) translate3d(0, 0, 0);}

.menu-open:checked + .menu-open-button {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
  transform: scale(0.8, 0.8) translate3d(0, 0, 0);}

.menu-open:checked ~ .menu-item {
  -webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
  transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);}

.menu-open:checked ~ .menu-item:nth-child(3) {
  transition-duration: 180ms;
  -webkit-transition-duration: 180ms;
  -webkit-transform: translate3d(0.08361px, -104.99997px, 0);
  transform: translate3d(0.08361px, -104.99997px, 0);}

.menu-open:checked ~ .menu-item:nth-child(4) {
  transition-duration: 280ms;
  -webkit-transition-duration: 280ms;
  -webkit-transform: translate3d(90.9466px, -52.47586px, 0);
  transform: translate3d(90.9466px, -52.47586px, 0);}

.menu-open:checked ~ .menu-item:nth-child(5) {
  transition-duration: 380ms;
  -webkit-transition-duration: 380ms;
  -webkit-transform: translate3d(90.9466px, 52.47586px, 0);
  transform: translate3d(90.9466px, 52.47586px, 0);}

.menu-open:checked ~ .menu-item:nth-child(6) {
  transition-duration: 480ms;
  -webkit-transition-duration: 480ms;
  -webkit-transform: translate3d(0.08361px, 104.99997px, 0);
  transform: translate3d(0.08361px, 104.99997px, 0);}

.menu-open:checked ~ .menu-item:nth-child(7) {
  transition-duration: 580ms;
  -webkit-transition-duration: 580ms;
  -webkit-transform: translate3d(-90.86291px, 52.62064px, 0);
  transform: translate3d(-90.86291px, 52.62064px, 0);}

.menu-open:checked ~ .menu-item:nth-child(8) {
  transition-duration: 680ms;
  -webkit-transition-duration: 680ms;
  -webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
  transform: translate3d(-91.03006px, -52.33095px, 0);}

.menu-open:checked ~ .menu-item:nth-child(9) {
  transition-duration: 780ms;
  -webkit-transition-duration: 780ms;
  -webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
  transform: translate3d(-0.25084px, -104.9997px, 0);}

.blue {
  background-color: #669ae1;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);}

.blue:hover {
  color: #669ae1;
  text-shadow: none;}

.green {
  background-color: #70cc72;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);}

.green:hover {
  color: #70cc72;
  text-shadow: none;}

.red {
  background-color: #fe4365;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);}

.red:hover {
  color: #fe4365;
  text-shadow: none;}

.purple {
  background-color: #c49cde;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);}

.purple:hover {
  color: #c49cde;
  text-shadow: none;}

.orange {
  background-color: #fc913a;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);}

.orange:hover {
  color: #fc913a;
  text-shadow: none;}

.lightblue {
  background-color: #62c2e4;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);}

.lightblue:hover {
  color: #62c2e4;
  text-shadow: none;}

/*.credit {
  margin: 24px 20px 120px 0;
  text-align: right;
  color: #eeeeee;}

.credit a {
  padding: 8px 0;
  color: #c49cde;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.credit a:hover {
  text-decoration: underline;
}*/

.descricao {
  padding: 1px;
  justify-self: center;
  text-align: center;
  margin: 21.1em auto;
  width: 60%;
  height: 300px;
  border-radius: 0.25em;
  box-shadow: 0 0 0.25em rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  transition: all 0.5s;
  cursor: pointer;
}

.descricao:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*-----------------------------botões-----------------------------------*/
.box-total {
  height: 50px;
  margin-top: 2px;
}

.box-button1 {
  width: 25%;
  height: 43vh;
}

.bteesquerdo {
  margin-left: -300px;
  height: 30%;
  display: flex;
}

.bte {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  border-radius: 500px;
  transition-property: background-color, border-color, color, box-shadow, filter;
  transition-duration: 0.3s;
  border: 1px solid transparent;
  letter-spacing: 2px;
  min-width: 160px;
  text-transform: uppercase;
  white-space: normal;
  font-weight: 700;
  text-align: center;
  padding: 16px 14px 18px;
  color: #616467;
  box-shadow: inset 0 0 0 2px #616467;
  background-color: transparent;
  height: 48px;
}

.bte:hover {
  color: #fff;
  background-color: #f56653;
}

.box-button2 {
  margin-top: -373px;
  width: 25%;
  height: 43vh;
  margin-left: 340px;
}
.btdireito {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btd {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  border-radius: 500px;
  transition-property: background-color, border-color, color, box-shadow, filter;
  transition-duration: 0.3s;
  border: 1px solid transparent;
  letter-spacing: 2px;
  min-width: 160px;
  text-transform: uppercase;
  white-space: normal;
  font-weight: 700;
  text-align: center;
  padding: 16px 14px 18px;
  color: #616467;
  box-shadow: inset 0 0 0 2px #616467;
  background-color: transparent;
  height: 48px;
}

.btd:hover {
  color: #fff;
  background-color: #d1e706;
}

/********************************************Media Query Tablet**************************************************************/

@media screen and (min-width: 600px) {
  body {
    padding: 0;
    margin: 0;
    background: #012e64;
    color: #eeeeee;
    text-align: center;
    font-family: "Lato", sans-serif;
  }

  a {
    color: inherit;
  }

  .menu-item,
  .menu-open-button {
    background: #eeeeee;
    border-radius: 100%;
    width: 80px;
    height: 80px;
    margin-top: -120px;
    margin-left: -225px;
    position: absolute;
    color: #ffffff;
    text-align: center;
    line-height: 80px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform ease-out 200ms;
    transition: -webkit-transform ease-out 200ms;
    transition: transform ease-out 200ms;
    transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
  }

  .menu-open {
    display: none;
  }

 

  .blue {
    background-color: #669ae1;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .blue:hover {
    color: #669ae1;
    text-shadow: none;
  }

  .green {
    background-color: #70cc72;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .green:hover {
    color: #70cc72;
    text-shadow: none;
  }

  .red {
    background-color: #fe4365;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .red:hover {
    color: #fe4365;
    text-shadow: none;
  }

  .purple {
    background-color: #c49cde;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .purple:hover {
    color: #c49cde;
    text-shadow: none;
  }

  .orange {
    background-color: #fc913a;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .orange:hover {
    color: #fc913a;
    text-shadow: none;
  }

  .lightblue {
    background-color: #62c2e4;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .lightblue:hover {
    color: #62c2e4;
    text-shadow: none;
  }

  /*estilo da caixa de descrição*/
  .descricao {
    float: right;
    padding: 3px;
    justify-self: center;
    text-align: center;
    margin: -27.1em auto;
    width: 280px;
    height: 300px;
    border-radius: 0.25em;
    box-shadow: 0 0 0.25em rgba(255, 255, 255, 0.25);
    box-sizing: border-box;
    transition: all 0.5s;
    cursor: pointer;}

  .descricao:hover {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }

  /*caixa dos botões*/
  .box-total {
    height: 50px;
    margin-top: 480px;}

  /*caixa botão esquerdo*/
  .box-button1 {
    margin-top: 4%;
    margin-left: 20px;
    width: 15%;
    height: 25%;}

  /*caixa botão direito*/
  .box-button2 {
    margin-top: 5px;
    margin-left: 82%;
    width: 15%;
    height: 25%;}
}

/******************************************Media Query PC*********************************************************************/

@media screen and (min-width: 998px) {
  body {
    padding: 0;
    margin: 0;
    background: #012e64;
    color: #eeeeee;
    text-align: center;
    font-family: "Lato", sans-serif;
  }

  a {
    color: inherit;
  }

  .menu-item,
  .menu-open-button {
    background: #eeeeee;
    border-radius: 100%;
    width: 80px;
    height: 80px;
    margin-top: -160%;
    margin-left: -600%;
    position: absolute;
    color: #ffffff;
    text-align: center;
    line-height: 80px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform ease-out 200ms;
    transition: -webkit-transform ease-out 200ms;
    transition: transform ease-out 200ms;
    transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
  }

  .menu-open {
    display: none;
  }

 

  .blue {
    background-color: #669ae1;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .blue:hover {
    color: #669ae1;
    text-shadow: none;
  }

  .green {
    background-color: #70cc72;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .green:hover {
    color: #70cc72;
    text-shadow: none;
  }

  .red {
    background-color: #fe4365;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .red:hover {
    color: #fe4365;
    text-shadow: none;
  }

  .purple {
    background-color: #c49cde;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .purple:hover {
    color: #c49cde;
    text-shadow: none;
  }

  .orange {
    background-color: #fc913a;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .orange:hover {
    color: #fc913a;
    text-shadow: none;
  }

  .lightblue {
    background-color: #62c2e4;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
  }

  .lightblue:hover {
    color: #62c2e4;
    text-shadow: none;
  }

/*.credit {
    margin: 24px 20px 120px 0;
    text-align: right;
    color: #eeeeee;
  }

  .credit a {
    padding: 8px 0;
    color: #c49cde;
    text-decoration: none;
    transition: all 0.3s ease 0s;
  }

  .credit a:hover {
    text-decoration: underline;
  }*/

  .descricao {
    float: right;
    padding: 5px;
    justify-self: center;
    text-align: center;
    margin: -27.1em auto;
    width: 340px;
    height: 300px;
    border-radius: 0.25em;
    box-shadow: 0 0 0.25em rgba(255, 255, 255, 0.25);
    box-sizing: border-box;
    transition: all 0.5s;
    cursor: pointer;
  }

  .descricao:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  /*-----------------------------botões-----------------------------------*/
  .box-total {
    height: 32%;
    margin-top: 490px;
  }

  .box-button1 {
    margin-top: 4%;
    margin-left: 20px;
    width: 15%;
    height: 25%;
  }

  .box-button2 {
    margin-top: -48px;
    margin-left: 84%;
    width: 15%;
    height: 25%;
  }
}
