/* Definição de cores padrão para o site */
:root {
  --cor-fundo: #0e4b80;
  --cor-texto: #f8f8f8;
  --cor-texto-azul: #0e4b80;
  --cor-texto-hover: #98c0e4;
  --cor-botao: #ec3237;
  --cor-texto-verde-limao: #0df205;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Roboto", sans-serif;
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}


nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: "Roboto", sans-serif;
  /* background-color: var(--cor-fundo); */
  height: 10vh;
  padding: 50px;
  font-size: 20px;
}




main {
  background: url(/assets/img/principal-1.jpg) no-repeat center center;
  background-size: cover;
  height: 90vh;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.nav-list li {
  margin-left: 20px;

}


nav .social-network, .flegs {
  display: flex;
  align-items: center;
  margin-left: 10vw;

}

.mobile-menu {
  display: none;
  cursor: pointer;
}


.mobile-menu div {

  width: 32px;
  height: 2px;
  background: #fff;
  margin: 8px;
  transition: 0.3s;

}

#botao-suporte a {
  position: relative;
  display: flex;
  justify-items: center;
  align-items: start;
  background-color: var(--cor-botao);
  padding: 10px 20px;
  border-radius: 10px;
  margin-left: 5vw;
}

/* Definição do tamanho da tela para fazer a troca do menu para menu de celular*/
@media screen and (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .nav-list {
    position: absolute;
    top: 10vh;
    right: 0;
    width: 30vw;
    height: 90vh;
    background-color: var(--cor-texto-azul);
    flex-direction: column;
    align-items: center;
    gap: 1vh;
    /* justify-content: space-around; */
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  }

  .nav-list li {

    margin-left: 0;
    opacity: 0;

  }

  .mobile-menu {
    display: block;
  }

  nav .social-network, .flegs li {
    position: relative;
    flex-direction: column;
    align-items: center;
    right: 5vw;
  }


  nav .social-network, .flegs, li {
    gap: 2vh;
  }

  #botao-suporte a {
    right: 2vw;
  }


  .nav-list.active {
    transform: translateX(0);
  }

  @keyframes navLinkFade {

    from {
      opacity: 0;
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }

  }




  .produtech-main {
    width: 100%;
    height: 100vh;
    flex-direction: column;
  }


}


.mobile-menu.active .line-1 {

  transform: rotate(-45deg) translate(-8px, 8px);

}

.mobile-menu.active .line-2 {

  opacity: 0;

}

.mobile-menu.active .line-3 {

  transform: rotate(45deg) translate(-5px, -7px);

}


.produtech-main h1 {
  margin: 0;
  font-size: clamp(5rem, 10vw, 30rem);
  color: var(--cor-texto);
}

.produtech-main h3 {

  font-size: clamp(1rem, 5vw, 10rem);
  color: var(--cor-texto);
}

/* --------- Formatação da primeira Seção do Site PRODUTECH MAIN --------- */

.produtech-main {
  margin-top: -100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-image: url(/assets/img/principal-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* --------- Fim da Formatação da primeira Seção do Site PRODUTECH MAIN --------- */


/* --------- Formatação da segunda Seção do Site FORMAT SECTION --------- */

.format-section {
  display: flex;
  margin: 200px;


  /* Propriedades da Animação */
  animation-name: entradaSuave;
  /* Nome do keyframe */
  animation-duration: 1s;
  /* Duração da animação (1 segundo) */
  animation-timing-function: ease-out;
  /* Curva de aceleração */
  animation-delay: 1.5s;
  /* Atraso antes de começar */
  animation-fill-mode: forwards;
  /* Mantém o estado final */
}

.format-section img {
  display: inline-block;
  vertical-align: middle;
  height: 550px;
}


h2 {
  color: var(--cor-texto-azul);
  font-size: 53px;
  font-weight: 900;
  padding-left: 50px;
}

h3 {
  color: var(--cor-texto-azul);
  font-size: 31px;
  font-weight: 800;
  padding-left: 50px;
}

p {
  font-size: 20px;
  font-weight: 400;
  line-height-step: 27px;
  text-align: justify;
  padding-left: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--cor-texto-azul);
  line-height: 30px;
  letter-spacing: normal;
}

.lista-tecnologia {
  display: block;
  color: var(--cor-texto-azul);
  padding-left: 50px;
  list-style-position: inside;
  font-size: 20px;
}

.item-lista-tecnologia {
  padding: 10px;
}


@keyframes entradaSuave {
  0% {
    opacity: 0;
    /* Começa invisível */
    transform: translateY(250px);
    /* Começa um pouco abaixo */
  }

  100% {
    opacity: 1;
    /* Termina totalmente visível */
    transform: translateY(0);
    /* Termina na posição normal */
  }
}


/* --------- Fim da Formatação da segunda Seção do Site FORMAT SECTION --------- */


/* --------- Formatação da terceira Seção do Site QUEM SOMOS --------- */

#quem-somos {
  display: flex;
  flex-direction: column;
  justify-items: center;
  width: 100%;
  background-color: var(--cor-fundo);
}

#quem-somos h2 {
  margin-top: 100px;
  color: var(--cor-texto);
  text-align: center;
  font-size: 87px;
  font-weight: 900;
  padding-left: 50px;
}

#quem-somos div h3 {

  font-size: 47px;
  color: var(--cor-texto-verde-limao);

}

.box-sobre-produtech {
  font-weight: 400;
  margin-top: 100px;
  margin-left: 250px;
  width: 570px;
  margin-bottom: 100px;

}

.box-sobre-produtech p {
  font-size: 20px;
  color: var(--cor-texto);
  line-height: 30px;
  letter-spacing: normal;
  margin: 0;

}


#quem-somos .box-sobre-produtech .lista-tecnologia {
  display: block;
  font-size: 20px;
  color: var(--cor-texto);
  padding-top: 15px;
  padding-left: 50px;
  padding-bottom: 15px;
  list-style-position: inside;
}

#quem-somos .box-sobre-produtech .lista-tecnologia li {
  padding: 10px;
}

#quem-somos button {
  margin-top: 20px;
  background-color: var(--cor-botao);
  padding: 10px 60px;
  border: none;
  color: var(--cor-texto);
  border-radius: 5px;
  cursor: pointer;
  margin-left: 50px;
}


#quem-somos div img {
  width: 200px;
  margin-top: 100px;
  margin-left: 200px;
  position: sticky;
  top: 100px;
  left: 200px;
  display: flex;
  justify-content: center;
}

/* --------- Fim da Formatação da terceira Seção do Site QUEM SOMOS --------- */


/* --------- Formatação da quarta Seção do Site PRODUTOS --------- */


#produtos {
  display: flex;
  flex-direction: column;
}

#box-produtos {
  display: flex;
  flex-direction: column;
  
}

#box-produtos img {}

#produtos h2 {
  margin-top: 100px;
  color: var(--cor-texto-azul);
  text-align: center;
  font-size: 87px;
  font-weight: 900;

}

.item-produto {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  flex-wrap: wrap;
  border: 1px solid #c8c8c8;

}

.item-produto:hover {
  scale: 1.1;
  transition: 0.2s;
}

.item-produto img {
  margin-top: 25px;
  margin-bottom: 25px;
}

.item-produto h3 {
  color: var(--cor-texto-azul);
  font-size: 20px;
  font-weight: 800;

}

.item-produto p {
  font-size: 17px;
  text-align: center;
  color: var(--cor-texto-hover);
}


#produtos button {
  margin-top: 50px;
  background-color: var(--cor-botao);
  padding: 10px 60px;
  border: none;
  color: var(--cor-texto);
  border-radius: 5px;
  cursor: pointer;
  margin-left: 50px;
  margin-bottom: 50px;
}


/* --------- Fim Formatação da quarta Seção do Site PRODUTOS--------- */


/* --------- Formatação da Quinta Seção do Site Números --------- */

#numeros {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 70vh;
  background-color: var(--cor-fundo);

}

#numeros h2 {
  margin-top: 100px;
  color: var(--cor-texto);
  text-align: center;
  font-size: 87px;
  font-weight: 900;
  padding-left: 50px;
}

.box-numeros h3 {

  font-size: 47px;
  color: var(--cor-texto);

}

.numeros-conteudo {
  margin-top: 50px;
  margin-left: 150px;
  justify-items: center;
}

.box-numeros {
  display: inline-table;
  align-items: center;
  align-content: center;
  width: 400px;
  height: 200px;
  border: 1px solid #c8c8c8;
  padding: 30px;

}


.box-numeros p {
  color: var(--cor-texto-verde-limao);
  font-weight: 700;
}


/* --------- Fim Formatação da Quinta Seção do Site Números --------- */


/* --------- Formatação da Sexta Seção do Site Beneficios --------- */

#beneficios {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#beneficios h2 {
  margin-top: 100px;
  margin-bottom: 100px;
  color: var(--cor-texto-azul);
  text-align: center;
  font-size: 87px;
  font-weight: 900;

}

#beneficios img {
  margin-bottom: 100px;
}

/* --------- Fim Formatação da Sexta Seção do Site Beneficios --------- */


/* --------- Formatação da Setima Seção do Site Icones --------- */

#icones {
  display: flex;
  justify-content: space-evenly;
  background-color: #ffffff;
  height: 30vh;
}

/* --------- Fim Formatação da Setima Seção do Site Icones --------- */


/* --------- Formatação da Oitava Seção do Site Footer --------- */

footer {
  background-color: var(--cor-fundo);
  display: flex;
  height: 70vh;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: space-evenly;
  align-items: center;

}

footer .logo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;

}

footer .logo-footer h1 {
  font-size: 27px;
  margin-left: 90px;
  margin-bottom: 5px;
  color: var(--cor-texto);
}

footer .logo-footer h3 {
  font-size: 21px;
  color: var(--cor-texto);
  margin-left: 40px;
}

footer img {
  display: flex;
  margin-left: 5vw;
}

footer .footer-menu {
  list-style-type: square;
  color: var(--cor-texto);

}

footer .footer-menu li {

  padding: 10px;
  font-size: 20px;
}

footer #contato img {
display: flex;
flex-direction: column;
  font-size: 21px;

}

#direitos-autorais p {
  background-color: #0e4b80e6;
  color: var(--cor-texto);
  font-size: 15px;
  text-align: center;
}

#vrt-digital p{
  background-color: var(--cor-fundo);
    color: var(--cor-texto);
  font-size: 15px;
  text-align: center;
}