body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
}

.projeto-card{
transition: all 0.3s ease;
border: none;
}

.projeto-card:hover{
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}



.texto-justificado {
    text-align: justify;
}

.navbar{
background: rgba(0,0,0,0.6);
backdrop-filter: blur(10px);
}

.hero{
min-height:100vh;
background: linear-gradient(120deg,#0f2027,#203a43,#2c5364);
background-size:300% 300%;
animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}


.perfil-img{
width:280px;
border-radius:50%;
border:4px solid white;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.projeto-card {
  border: none;
  overflow: hidden;
  transition: 0.4s;
}

.projeto-card img {
  height: 220px;
  object-fit: cover;
}

.projeto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

section {
  padding-top: 80px;
}