html {
  color: #fff;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans serif;
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(150deg, #000000, #9e00ff);
  background-size: 120% 120%;
}

.cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 15px;
}

.cabecalho .logo {
  width: 65px;
  height: 65px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-decoration: underline;
  text-align: center;
  line-height: 55px;

  font-family: "Raleway", sans serif;
  font-size: 30px;
  transition: 0.2s;
}

.cabecalho a:hover .logo {
  color: #9443d8;
  border: 2px solid #9443d8;
}

.cabecalho .menu li a {
  font-size: 20px;
  text-transform: capitalize;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.2s;
}

.cabecalho .menu li a:hover {
  background: #9443d8;
  color: #fff;
}

.home {
  display: flex;
  min-height: calc(100vh - 125px);
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.home .informacoes {
  display: flex;
  flex-direction: column;
  gap: 25px;
  letter-spacing: 2px;
  padding: 0 15px;
  max-width: 50%;
}

.home .informacoes h1 {
  font-family: "Raleway", sans serif;
  font-size: 45px;
  margin-bottom: 20px;
}

.home .informacoes p {
  font-family: "Raleway", sans serif;
  font-size: 24px;
}

.home .redes-sociais {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.home .redes-sociais a i {
  border: solid 1px #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 10px;
  text-align: center;
  font-size: 26px;
  transition: all 0.3s ease;
}

.home .redes-sociais a i:hover {
  border: 1px solid #9443d8;
  color: #9443d8;
  border-radius: 50%;
  transform: scale(1.1);
}

.home .container-foto .foto {
  max-width: 450px;
  border-radius: 50%;
}

.home .foto.sombra-interna {
  background: linear-gradient(to right, #8a35c8, #18c063, #00eea2);

  background-size: 180% 180%;
  animation: gradient-animation 5s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.home .container-foto img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 50%;
}

.projetos {
  padding: 70px 0 70px;
}

.projetos .titulo {
  text-align: center;
  padding: 60px 0;
  font-size: 45px;
  font-weight: 500;
  text-transform: uppercase;
}

.projetos .container-projetos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.projetos .projeto {
  max-width: 260px;
  max-height: 500px;
  position: relative;
  display: none;
}

.projetos .projeto.ativo {
  display: block;
}

.projetos .projeto img {
  height: 100%;
}

.projetos .projeto .informacoes-projeto {
  background-color: #040203;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease;
}

.projetos .projeto .informacoes-projeto p {
  margin-top: 10px;
}

.projetos .container-projetos .projeto:hover .informacoes-projeto {
  opacity: 0.8;
  background: #000;
}

.projetos .projeto h3 {
  background-color: #040203;
  width: 100%;
  padding-left: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
  position: absolute;
  bottom: 0;
}

.projetos .btn-mostrar-projetos {
  background: none;
  border: 1px solid #fff;
  border-radius: 15px;
  color: #fff;
  width: 180px;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.projetos .btn-mostrar-projetos:hover {
  background: #9443d8;
  transition: 0.3s;
}

.projetos .btn-mostrar-projetos.remover {
  display: none;
}