html {
  color: #fff;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Raleway', serif;
  background: linear-gradient(20deg, #000000, #4e7a5e);
  background-size: 120% 120%;
  font-size: 16px;
  line-height: 1.4;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background-color: #411b63;
  border-radius: 16px;
}

body::-webkit-scrollbar-button {
  display: none;
}

.central {
  margin: 0 auto;
  max-width: 1120px;
}

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

.cabecalho .logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  text-decoration: underline;
  text-align: center;
  line-height: 55px;
  font-family: "Raleway", sans-serif;
  transition: 0.2s;
}

.cabecalho h1 {
  font-size: 25px;

}

.cabecalho a:hover .logo {
  border: 2px solid #411b63;
}

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

.cabecalho .menu li a:hover {
  background-color: #411b63;
  color: #fff;
  border-radius: 50px;
}

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

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

.container-nome h1 {
  font-family: "Raleway", sans-serif;
  font-size: 35px;
  margin-bottom: 20px;
}

.nome {
  //background: -webkit-linear-gradient(left, #00eea2, #411b63);
  background: #411b63;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Raleway", sans-serif; /
  font-size: 35px;
}

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

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

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

.home .redes-sociais a i:hover {
  color: #411b63;
  border: 1px solid #411b63;
  transform: scale(1.1);
}

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

.home .container-foto img {
  width: 70%;
  border-radius: 50%;
}

.home .foto.sombra-interna {
  background: linear-gradient(90deg, #18c063, #411b63, #00eea2);

  background-size: 200% 100%;
  animation: gradient-animation 5s infinite;
}

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

.projetos .titulo {
  text-align: center;
  padding-bottom: 40px;
  font-size: 45px;
  font-weight: 500;
  text-transform: uppercase;

}

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

.projetos .projeto {
  min-width: 350px;
  min-height: 200px;
  position: relative;
  display: none;
}

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

.projetos .projeto img {
  height: 200px;
  width: 350px;
}

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

.projetos .projeto .informacoes-projeto {
  background-color: #040203;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  font-weight: 600;
  opacity: 0;
  transition: 0.3s;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 45px;
  transform: translateX(30%);
}

.projetos .container-projetos .projeto:hover .informacoes-projeto {
  opacity: 0.8;
  background-color: #000;
  transform: translateX(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-color: #411b63;
  transition: 0.3s;
}

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

footer {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
}

footer h1 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #411b63;
}

footer p {
  font-size: 14px;
}

footer p i {
  margin-left: 5px;
  animation: rotation-animation 5s linear infinite;
}

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

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

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

@keyframes rotation-animation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
