* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;}

html {
  scroll-behavior: smooth;
  


}
body {
  background-color: #161422;
  color: #ffffff;
  overflow-x: hidden;
}

.navegacao {
  position: fixed;
  background: rgba(30, 27, 56, 0.8) ;
  width: 100%;
  z-index: 100;
  padding: 1.5rem;
}
.menu {
  display: flex;
  justify-content: center;
list-style: none;
gap: 3rem   ;



}


.menu-link {
  text-decoration: none;
  color: #c9c7c7;
  font-weight: 500;
  position: relative;
  padding: 0.5rem;
}

.menu-link::after {
  content: "";
  height: 2px;
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2516fc, #ff176c);
  transition: width 0.3s ease;
}

.menu-link:hover::after {
  width: 100%;
}
.fotoperfil {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #59cfe4;
  box-shadow: 0 0 20px #428899;

  
}
.cabecalho {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 0.25rem;
}