/*ESTILOGERAL  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;

}


html {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  height: 100vh;



}


.btn-contato button {
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 600;
  background-color: aqua;
  border: 0;
  border-radius: 30px;
  cursor: pointer;
  transition: .2s;
}


.interface {
  max-width: 1280px;
  margin: 40px auto;


}

.flex {
  display: flex;
}

button:hover {
  box-shadow: 0px 0px 8px rgb(142, 216, 216);
  transform: scale(1.05);
}


/* ESTILO DO CABEÇALHO */
header {
  padding: 40px 4%;
}

header>.interface {
  display: flex;
  align-items: center;
  justify-content: space-between;



}

header nav a {
  color: rgb(113, 128, 133);
  text-decoration: none;
  display: inline-block;
  transition: .2s;
  font-weight: bold;

}

header nav.menu-desktops a:hover {
  color: azure;
  transform: scale(1.05);



}

header nav ul {
  list-style-type: none;


}

.logo img {
  max-width: 100%;
  width: 288px;
  height: auto;
}
.menu-desktop ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;       /* Alinha os itens em linha */
  gap: 30px;           /* Espaço entre os links */
  align-items: center; /* Alinha verticalmente */
}

header nav .menu-desktops ul li a {
  color: rgb(113, 128, 133);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: color 0.2s ease, transform 0.2s ease;

}
.menu-desktop ul li a:hover {
  color: azure;
  transform: scale(1.05);
}

/* estilo do menu contato */
.btn-abrir-menu i{
  color: aqua;
  font-size: 40px;


}
.menu-mobile {
  background-color: black;
  height: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  width: 0%;
  overflow: hidden;
  transition: .5s;
}
.menu-mobile.abrir-menu{
  width: 20%;


}
.menu-mobile.abrir-menu ~ .overlay-menu{
  display: block;

}


.menu-mobile .btn-fechar{
 padding: 20px 5%;


}

.menu-mobile .btn-fechar i{
  color:aqua;
  font-size: 30px;
  }

.menu-mobile nav ul{
 text-align: right;
 

}
.menu-mobile nav ul li a{
  color: aliceblue;
  font-size: 20px;
  font-weight: 500;
  padding: 20px 8%;
  display: block;
 

}

.menu-mobile nav ul li a:hover{
 background-color: aqua;
 color: black;


}


.overlay-menu{
 background-color: rgba(0, 0, 0, 0.719) ;
 width: 100%;
 height: 100%;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 8888;
display: none;


}

/* ESTILO DO TOPO DO SITE  */

section.topo-do-site {
  padding: 40px 4%;
}

section.topo-do-site .flex {
  align-items: center;
  justify-content: center;
  gap: 90px;

}

.topo-do-site img {
  position: relative;
  max-width: 100%;
  width: 600px;
  height: auto;
  animation: flutuar 2s ease-in-out infinite alternate;


}

.topo-do-site h1 {
  color: aliceblue;
  font-size: 70px;
  line-height: 60px;

}

.topo-do-site .txt-topo-site h1 span {
  color: aqua;
  font-size: 84px;

}

.topo-do-site .txt-topo-site p {
  color: aliceblue;
  margin: 40px 0;
  font-size: 1.5rem;



}

.topo-do-site .txt-topo-site p span {
  color: aqua;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgb(12, 67, 78);

}

@keyframes flutuar {
  0% {
    top: 0;
  }

  100% {
    top: 30px;
  }


}

/*ESTILO SOBRE */
section.sobre {
  padding: 80px 4%;
  box-shadow: 0 0 40px 10px #fdfbfb48;
}

section.sobre img {

  position: relative;
  max-width: 350%;
  width: 450px;
  height: auto;
  margin: -100px;
  top: 10px;
  left: -100px;


}

section.sobre .flex {
  align-items: center;
  gap: 80px;


}

.sobre .txt-sobre {
  color: aliceblue;

}

.sobre .txt-sobre h2 {
  font-size: 60px;
  margin-bottom: 20px;


}

.sobre .txt-sobre h2 span {
  color: aqua;
  display: block;
}

.sobre .txt-sobre p {
  margin: 20px 0;
  text-align: justify;

}

.sobre .txt-sobre .btn-social button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background-color: aqua;
  font-size: 25px;
  cursor: pointer;
  margin: 0 10px;
  transition: .2s;
}

/* estilo do portifólio */
section.portifolio {
  padding: 80px 4%;


}

section.portifolio .flex {
  justify-content: space-around;
  margin-top: 100px;



}

.portifolio .titulo {
  color: rgb(245, 245, 245);
  text-align: center;
  font-size: 60px;
}

.img-port {
  width: 300px;
  height: 350px;
  background-size: cover;
  background-position: 100% 0%;
  border-radius: 40px;
  cursor: pointer;
  position: relative;


}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.815);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: aliceblue;
  opacity: 0;
  transition: 1.2s;


}

.overlay:hover {
  opacity: 1;
}

/* Experiência */
section.experiencia {
  padding: 80px 4px;
  box-shadow: 0 0 40px 10px #fdfbfb48;

}

.flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.img-exp img {
  width: 300px;
  /* ajuste conforme desejar */
  height: auto;
  display: block;
}

.txt-exp h2 {
  font-size: 60px;
  margin-bottom: 60px;
  color: aliceblue;
  text-align: center;
}


.txt-exp p {
  font-size: 20px;
  line-height: 1.6;
  color: aliceblue;
  margin: 25px;
  text-align: center;
}

.destaque {
  color: aqua;
  font-weight: bold;

  padding: 2px 4px;
  border-radius: 4px;
}


.txt-exp ul {
  padding-left: 60px;
  list-style-type: disc;
  color: aliceblue;
  list-style-type: none;
  margin-bottom: 10px;
  font-weight: 600;


}

ul li i {
  color: aqua;
  /* muda a cor do ícone */
  margin-right: 10px;
  /* espaçamento entre ícone e texto */
  font-size: 30px;
  /* tamanho do ícone */
  vertical-align: middle;
  /* alinha melhor com o texto */
}

/* footer */
footer {
  padding: 5px 4%;


}



footer .flex {

  justify-content: space-between;

}

footer .line-footer {
  padding: 10px 5;


}


.borda {
  border-top: 2px solid aqua;
}

.logo-footer img {


  width: 170px;
  /* ajuste conforme desejar */
  height: 150px;
  display: block;

}

.btn-social button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: aqua;
  font-size: 25px;
  cursor: pointer;
  margin: 0 15px;
  transition: .2s;
}

footer .line-footer p i {
  color: aqua;
  font-size: 30px;

}

footer .line-footer p a {
  color: aliceblue;
  margin: 10px;

}

@media screen and (max-width: 1020px) {

  /* classes gerais */
  .flex {
    flex-direction: column;


  }

  .topo-do-site .flex {
    flex-direction: column-reverse;

  }

  /* cabeçalho */
  .menu-desktop,
  .btn-contato {
    display: none;
  }

  /* topo do site */
  section.topo-do-site {
    padding: 21px 8%;



  }


  .img-topo-site {
    margin: 0;
    padding: 10px;

  }

  .img-topo-site img {

    max-width: 150%;
    height: auto;
    margin: -90px;
    padding: 80px
  }



  .logo img {
    margin: auto;
    padding: 0;
    max-width: 360%;
    width: 280px;
  }

  section.topo-do-site .flex {
    gap: 10px;


  }

  .topo-do-site h1 {
    font-size: 55px;


  }

  .topo-do-site p {

    font-size: 33px;

    line-height: 1.6;
    font-weight: 600;

  }

  /* sobre */
  section.sobre {
    padding: -100px 8%;

  }


  section.sobre img {

    width: 100%;
    height: auto;
    margin: 77px;
    margin-top: -25px;

  }

  .sobre .txt-sobre p {
    font-size: 25px;
    text-align: justify;
    line-height: 1.6;
    font-weight: 600;

  }

  .sobre .txt-sobre h2 {
    font-weight: 700;
    font-size: 50px;
    padding: 30px 5%;
    margin-top: -100px;
  }

  .btn-social {
    text-align: center;

  }

  /* portifólio */

  section.portifolio {
    padding: 40px 9%;

  }

  .img-port {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;

  }

  /* experiência */

  section.experiencia {
    padding: 50px 6px;
    box-shadow: 0 0 40px 10px #fdfbfb48;



  }


  .txt-exp h2 {
    font-size: 50px;

  }

  .txt-exp p {
    font-size: 33px;

    line-height: 1.6;
    font-weight: 600;



  }

  ul li i {
    padding: auto;


  }

  .txt-exp ul {
    padding: 40px;
    gap: auto;
    line-height: 1.8;
    font-size: 30px;

    line-height: 1.6;
    font-weight: 600;

  }

  .img-exp img {
    width: 444px;
    display: flex;
    margin-left: auto;
    margin-right: 0;



  }

  /* rodapé */

  footer .flex {
    flex-direction: column;
    gap: 30px
  }

  footer .line-footer {
    text-align: center;

  }

  .logo-footer img {
    width: 320px;
    height: 250px;

  }

  .btn-social button {
    justify-content: center;
    padding: 10px;
    gap: 25px;

  }

  footer .line-footer {
    padding: 25px;
    justify-content: center;
    gap: 25px;
  }
}