/* CORPO GLOBAL DA PAGINA */

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  font-style: normal;
  text-decoration: none;
  min-height: auto;
}

html {
  scroll-behavior: smooth;
}

/* @@@@@ SESSÃO DO MENU SUPERIOR DE NAVEGAÇÃO DA PAGINA @@@@@  */

.header {
  background: rgb(226, 255, 3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.0rem 2%;
  position: initial;
  font-size: 1rem;
  z-index: 100;
}

#Pnome {
  font-family: "Libre Barcode 128 Text", system-ui;
  font-weight: 500;
  font-size: 2.5rem;
  color: #2d2e2e;
  text-shadow: none;
  padding-top: 2rem;
  margin-right: 2rem;
}

nav a {
  display: inline-block;
  margin: 13px;
  text-transform: uppercase;
  color: #2d2e2e;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: .5s;
  cursor: pointer;
}

nav a:hover {
  font-size: 1rem;
  -webkit-text-stroke: 1.2px #2d2e2e;
  text-shadow: 0 0px 2px #2d2e2e;
}

#caixaMenu {
  font-size: 2.1rem;
  cursor: pointer;
  color: #2d2e2e;
  display: none;
  height: auto;
}
/* FOTO PRINCIPAL */
.inicio {
  display: flex;
  align-items: center;
  padding: 0 12%;
  background: url('fotos/bala9.jpg') no-repeat;
  background-size: 1900px auto;
  background-position: calc(30% - 60px) center;
}

/*@@@@@ SESSÃO DO INICIO DA PAGINA @@@@@*/

.inicioConteiner {
  padding-top: 30px;
  padding-bottom: 30rem;
}

.inicioConteiner h1 {
  font-size: 2.3rem;
  color: rgb(226, 255, 3);
  line-height: 1.3;
  text-shadow: 0 1px 12px #000000;
  float: left;
}

.inicioConteiner .text-animate h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #2d2e2e;
  text-shadow: 0 1px 5px #5d5e5e;
  width: 22ch;
  animation: digitandoDev 2.8s steps(23) infinite alternate-reverse;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  margin-top: 8rem;
}

.inicioConteiner p {
  font-size: 1.2rem;
  margin: 3rem 0 3rem;
  position: relative;
  margin-bottom: 3.5rem;
  color:#2d2e2e;
}
/* BOTÕES DO TELEGRAM E WHATSAPP */
.btnCaixa {
  display: flex;
  justify-content: space-between;
  height: 3.4rem;
  width: 21rem;
  cursor: pointer;
}

.btnCaixa .btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 9.5rem;
  height: 55%;
  background: rgb(226, 255, 3);
  text-decoration: none;
  color: #2d2e2e;
  border: 0.3px solid rgb(226, 255, 3);
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  z-index: 2;
  overflow: hidden;
  transition: .5s;
  order: 1;
}

.btnCaixa .btn:hover {
  color: rgb(226, 255, 3);
}

.btnCaixa .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
  background: #2d2e2e;
}

.btnCaixa .btn:hover:before {
  width: 100%;
}
/* BOTÕES DO INSTAGRAM, LINKEDIN E GITHUB */
.sociais {
  display: flex;
  justify-content: space-between;
  width: 180px;
  padding-top: 15rem;
  cursor: pointer;
}
  
.sociais a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: rgb(226, 255, 3);
  border-radius: 50%;
  font-size: 20px;
  color: #2d2e2e;
  border: .1rem solid rgb(226, 255, 3);
  z-index: 1;
  overflow: hidden;
  transition: .5s;
  float: left;
  padding-left: 0px;
  left: 0;
}

.sociais a:hover {
  color: rgb(226, 255, 3);
}

.sociais a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #2d2e2e;
  z-index: -1;
  transition: .5s;
}

.sociais a:hover::before {
  width: 100%;
}

/* @@@@@ SESSÃO QUEM SOU @@@@@  */

.quemSou {
  display: flex;
  justify-content: top;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  background-color: #2d2e2e;
}

.cabeca,
h1 {
  font-size: 3rem;
  color: rgb(226, 255, 3);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.quemSou .cabeca span {
  font-size: 3rem;
  color: #2d2e2e;
  -webkit-text-stroke: 2px rgb(226, 255, 3);
  text-shadow: 0 2px 10px rgb(226, 255, 3);
}

.quemsouConteiner h3 {
  text-decoration: none;
  font-size: 2rem;
  text-shadow: 0 1px 5px #ffff;
  color: #ffff
}

.quemsouConteiner p {
  margin: 3rem;
  font-size: 1.2rem;
  max-width: 70rem;
  margin-bottom: 2rem;
  color: #ffff;
}
/* QUEM SOU IMAGEM  */
.quemsouimg {
  position: relative;
  width: 25rem;
  height: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quemsouimg img {
  width: 92%;
  height: 92%;
  border-radius: 50%;
  border: .2rem solid #2d2e2e;
}

.quemsouimg .circulo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  border-top: .4rem solid #2d2e2e;
  border-bottom: .4rem solid #2d2e2e;
  border-left: .4rem solid rgb(226, 255, 3);
  border-right: .4rem solid rgb(226, 255, 3);
  animation: girandoCirculo 8s linear infinite;
}

/* @@@@@ SESSÃO TRILHA PROFISSIONAL @@@@@ */

.trilhaProfissional {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: auto;
  background-color: #2d2e2e;
}

.trilhaProfissional .cabeca,
h1 {
  font-size: 3rem;
  text-shadow: 0 1px 8px #5d5e5e;
  color: rgb(226, 255, 3);
  padding-top: 3rem;
}

.trilhaProfissional .cabeca span {
  text-align: center;
  font-size: 3rem;
  color: #2d2e2e;
  -webkit-text-stroke: 2px rgb(226, 255, 3);
  text-shadow: 0 2px 10px rgb(226, 255, 3);
  text-decoration: none;
}

.trilhaProfissional .educacaoLinha {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem;
}

.trilhaProfissional .aducacaoColuna {
  flex: 1 1 10rem;
}

.titulo {
  text-align: initial;
  font-size: 2.2rem;
  margin: 1.6rem 4rem;
  color: #ffffff;
  -webkit-animation: efeitoLED 1.3s infinite alternate-reverse;
  animation: efeitoLED 1.3s infinite alternate-reverse;
  text-decoration: none;
}

.aducacaoColuna .educacaoCaixa {
  border-left: 8px solid rgb(226, 255, 3);
  margin-left: 1rem;
}

.educacaoCaixa .conteinerEduPro {
  position: relative;
  padding-left: 1.3rem;
  color: #ffff;
}

.conteinerEduPro .container h3 {
  font-size: 1.3rem;
  animation: efeitoLED 1.3s infinite alternate-reverse;
  text-align: start;
  text-decoration: none;
}

.conteinerEduPro .container .ano i {
  font-size: 1.2rem;
  padding-right: 1rem;
  padding-top: 1.3rem;
}

.conteinerEduPro .container p {
  font-size: 1.2rem;
  margin: 3.5px;
  padding-right: 2rem;
}
/* HABILIDADES  */
.habilidades h3 {
  text-align: center;
  font-size: 2.1rem;
  margin: 1.5rem;
  text-shadow: 0 1px 8px rgb(226, 255, 3);
  width: 100%;
  color: rgb(226, 255, 3);
  text-decoration: none;
}

.habilidades {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.habilidades figure {
  margin: 1rem;
  text-align: center;
  color: #ffff;
}

.habilidades figcaption {
  font-size: 0.8rem;
}
/* BOTÃO BAIXAR CURRICULO */
.btnCurriculo {
  align-items: center;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 3.4rem;
  width: 11rem;
  padding: 3rem;
  padding-bottom: 2rem;
  min-height: auto;
  cursor: pointer;
}

.btnCurriculo .curriculo {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 63%;
  background: rgb(226, 255, 3);
  text-decoration: none;
  color: #2d2e2e;
  border: 0.2rem solid rgb(226, 255, 3);
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  z-index: 2;
  overflow: hidden;
  transition: .5s;
  width: 100%;
}

.btnCurriculo .curriculo:hover {
  color: rgb(226, 255, 3);
}

.btnCurriculo .curriculo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
  background: #2d2e2e;
}

.btnCurriculo .curriculo:hover:before {
  width: 100%;
}

/* @@@@@ SESSÃO PROJETOS DESENVOLVIDOS @@@@@ */

.projetos {
  background-color: #2d2e2e;
  text-align: center;
  padding-bottom: 6em;
}

.projetos .cabeca,
h1 {
  font-size: 3rem;
  color: rgb(226, 255, 3);
  text-align: center;
  padding-bottom: 2rem;
}

.projetos .cabeca span {
  font-size: 3rem;
  font-weight: 600;
  color: #2d2e2e;
  -webkit-text-stroke: 2px rgb(226, 255, 3);
  text-shadow: 0 2px 10px rgb(226, 255, 3);
}

.projetoConteinerUm,
.projetoConteinerDois,
.projetoConteinerTres,
.projetoConteinerQuatro,
.projetoConteinerQuinto,
.projetoConteinerSexto {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 212px;
  height: 360px;
  margin: 1.5rem;
  display: inline-flex;
  margin-top: 3rem;
  cursor: pointer;
}

.projetoConteinerUm:hover .cardUm,
.projetoConteinerDois:hover .cardDois,
.projetoConteinerTres:hover .cardTres,
.projetoConteinerQuatro:hover .cardQuatro,
.projetoConteinerQuinto:hover .cardQuinto,
.projetoConteinerSexto:hover .cardSexto {
  transform: rotateY(180deg);
}

.cardUm,
.cardDois,
.cardTres,
.cardQuatro,
.cardQuinto,
.cardSexto {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: 0.6s;
}

.frente,
.tras,
.frenteDois,
.trasDois,
.frenteTres,
.trasTres,
.frenteQuatro,
.trasQuatro,
.frenteQuinto,
.trasQuinto,
.frenteSexto,
.trasSexto {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0px 0px 15px #000;
  backface-visibility: hidden;
}

.frente {
  background-image: url(projetos/wallpaperPython.jpg);
  background-size: 100% 100%;
}

.frenteDois {
  background-image: url(projetos/siteBarbearia.jpg);
  background-size: cover;
}

.frenteTres {
  background-image: url(projetos/MOTO2.jpg);
  background-size:  100% 100%;
}

.frenteQuatro {
  background-image: url(projetos/rock_nlw_journey5-pronto.jpg);
  background-size: 100% 100%;
}

.frenteQuinto {
  background-image: url(projetos/custos.jpg);
  background-size: 100% 100%;
}

.frenteSexto {
  background-image: url(projetos);
  background-size:cover;
}

.trasSexto,
.trasQuinto,
.trasTres,
.trasQuatro,
.trasDois,
.tras {
  background-color: #d7d7d7;
  transform: rotateY(180deg);
  border: 3px solid #000;  
}

.frente,
.frenteDois,
.frenteTres,
.frenteQuatro, h3 {
  color: #ffffff;
  font-size: 24px;
  text-align: center;
  text-decoration:underline;
}

.frenteQuinto h3 {
  color: #000;
  font-size: 24px;  
  text-decoration:underline;
}

.frenteQuinto h4 {
  color: #000;
  font-size: 17px;
  text-decoration:underline;
}

.frenteQuinto,
.frenteQuatro,
.frenteTres,
.frenteDois,
.frente h4 {
  color: #ffff;
  font-size: 17px;
  text-align: center;
  text-decoration:underline;
}

.trasSexto,
.trasQuinto,
.trasQuatro,
.trasTres,
.trasDois,
.tras p {
  text-align: center;
  color:rgb(42, 42, 42);
  font-size: 17px;  
}

.trasDois img {
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
}

.trasTres img {
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
}

.tras img {
  display: flex;
  align-items: center;
  columns: center;
  justify-content: center;
  padding-left: 3.3rem;
  margin: 10px;
}

/* @@@@@ SESSÃO OCONTATO - FALE COMIGO @@@@@ */

.contato {
  background-color: #2d2e2e;
}

.contato, h1 {
  text-align: center;
  font-size: 3rem;
  color: rgb(226, 255, 3);
}

.contato span {
  font-size: 3rem;
  color: #2d2e2e;
  text-shadow: 0 2px 10px rgb(226, 255, 3);
  -webkit-text-stroke: 2px rgb(226, 255, 3);
}

.contato form {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.contato, .email{
  text-align: center;
  font-size: 2.1rem;
  margin: 1.5rem;
  text-shadow: 0 1px 8px rgb(226, 255, 3);
  width: 100%;
  color: rgb(226, 255, 3);
  text-decoration: none;
}

.contato form .caixaEntrada {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contato form .caixaEntrada .campoEntrada {
  position: relative;
  width: 49%;
  margin: 0.6rem 0;
}

.contato form .caixaEntrada .campoEntrada input,
.contato form .deixesuamsg textarea {
  width: 100%;
  height: 80%;
  padding: 0.1rem;
  font-size: 1.1rem;
  color: black;
  border-radius: 0.3rem;  
  transition: border-radius 0.7s;
}

.contato form .caixaEntrada .campoEntrada input::placeholder,
.contato form .deixesuamsg textarea::placeholder {
  color: #808080;
  padding-top: 1rem;
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
}

.contato form .deixesuamsg {
  position: relative;
  margin: 1.8rem 0 4.7rem;
  display: flex;
}

.contato form .caixaEntrada .campoEntrada input:hover,
.contato form .deixesuamsg textarea:hover {
 border-radius: 1.6rem;
 transition: 0.7s;
}

/* BOTÃO PARA ENVIAR O EMAIL */
.btnenviar {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 3.4rem;
  padding-bottom: 4rem;
  cursor: pointer;
}

.btnenviar .btnTeste {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 63%;
  background: rgb(226, 255, 3);
  width: 11rem;
  color: #2d2e2e;
  border: 0.2rem solid rgb(226, 255, 3);
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  z-index: 2;
  overflow: hidden;
  transition: .5s;
  margin-top: 0rem;
  cursor: pointer;
}

.btnenviar .btnTeste:hover {
  color: rgb(226, 255, 3);
}

.btnenviar .btnTeste::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
  background: #2d2e2e;
}

.btnenviar .btnTeste:hover:before {
  width: 100%;
}

/* @@@@@ RODAPE - FOOTER @@@@@ */

.rodape {
  background-color: rgb(226, 255, 3);
  background-size: cover;
  display: flex;
  padding: 0.1px;
  align-items: center;
}

.rodape-texto {
  color: #2d2e2e;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  width: 100%;
  letter-spacing: 1px;
}

.rodape-icone {
  display: flex;
  align-items: center;
  height: 3.4rem;
  position: relative;
  right: 10rem
}

.rodape-icone i {
  height: 63%;
  background: #2d2e2e;
  color: rgb(69, 71, 60);
  border-radius: 0.6rem;
  font-size: 2.5rem;  
  transition: .5s;
  animation: vaiEvolta 1.7s both infinite alternate-reverse;
  cursor: pointer;
}

.rodape-icone i:hover {
  color: rgb(226, 255, 3);
  text-shadow: 0 0px 15px rgb(226, 255, 3);
  animation: none;
}

.rodape-texto span {
  -webkit-text-stroke: 1px #2d2e2e;  
}

/* @@@@@ AJUSTE PARA TELAS MENORES @@@@@  */
/* FOTO DA SESSÃO INICIO MENOR */
@media (max-width: 1574px) {
  .inicio {
    padding: 0 10%;
    background-position: calc(40% - 120px) center;
  }
}
/* REDUÇÃO NO TAMANHO DA FONTE GLOBAL*/
@media (max-width: 873px) {
  html {
    font-size: 80%;
  }

  .sociais {
    position: absolute;
    padding-bottom: 10rem;
  }
}
/* MENU HAMBURGUER NA BARRA DE NAVEGAÇÃO */
@media (max-width: 740px) {
  .header {
    background: rgb(226, 255, 3);
    height: 7rem;    
  }

  #caixaMenu {
    display: block;
  }

  .barraNav {
    opacity: 0;
    visibility: hidden;
    transition: visibility 2s, opacity 0.5s linear;
    animation: lanche 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    background: rgb(226, 255, 3);
    z-index: 1;   
  }

  .barraNav.ativar {
    visibility: visible;
    opacity: 1;  
  }

  .barraNav a {
    display: flex;
    font-size: 0.9rem;
    margin: 3.5rem 3rem; 
    background: rgb(226, 255, 3);
    padding-right: 27rem;    
  }
}
/* MUDANÇA NO RODAPE - BOTÃO SUBIR */
@media (max-width: 530px) {
  .rodape {
    display: flex;
    flex-direction: column;
  }

  .rodape-texto {
    order: 2;
    text-align: center;
    position: end;
    padding-bottom: 1rem;
  }

  .rodape-icone {
    order: 1;
    height: 3.4rem;
    position: initial;
  }

  .contato form .caixaEntrada .campoEntrada {
    width: 100%;
    margin-inline-end: 1rem;
    margin-inline-end: 0.5rem;
  }
}
/* REDUÇÃO NO TAMANHO DA FONTE GLOBAL */
@media (max-width: 480px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 330px) {
  html {
    font-size: 55%;
  }
}

.sociais {
  position: absolute;
  padding-bottom: 10rem;
}

/* @@@@@ ANIMAÇÕES @@@@@ */
/* ANIMAÇÃO DO INICIO */
@keyframes digitandoDev {
  0% {
    width: 0ch;
  }

  80% {
    width: 21ch;
  }

  100% {
    width: 21ch;
  }
}
/* ANIMAÇÃO QUEM SOU GIRANDO */
@keyframes girandoCirculo {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* ANIMAÇÃO DA TRILHA PROFISSINAL LED */
@keyframes efeitoLED {
  0% {
    text-shadow: 0 0 0 #ffffff;
  }

  100% {
    text-shadow: 0 0 30px #ffffff;
  }
}
/* ANIMAÇÃO NO BOTÃO DO RODAPE */
@keyframes vaiEvolta {
  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0
  }
}
/* ANIMAÇÃO DO MENU HAMBURGUER */
@keyframes lanche {
  0% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(100px);
  }
}

