@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300&display=swap'); /* Importação da fonte */


/* Reset de estilo */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos gerais do corpo da página */
body {
 height: 100vh;             
 font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  line-height: 1.6;
  
}

/* Estilos do cabeçalho fixo */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Estilos da navegação */
.nav {
    display: flex;
    justify-content: center; 
    align-items: center;
    list-style: none;
    gap: 20px; 
    padding: 10px 0;
}

/* Estilos dos links da navegação */
.nav a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nav a:hover {
  color: #ffffff;
}

/* Seção de introdução */
.intro {
  
  min-height: 95vh;
  padding: 4rem 1rem;
  background-size: 1200px 120;
  text-align: center;
  padding: 14rem 1rem;
}

/* Estilos da imagem de perfil */
.avatar {
  text-align: center;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 5px solid #ff0077;
  margin-bottom: 1rem;
  object-fit: cover;
}

/* Estilos do título principal */
h1 {
  text-transform: uppercase;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5rem;
  text-align: center;
}

h2 {
  text-transform: uppercase;
  color: #ff0077;
  font-weight: 400;
  font-size: 1.5rem;
  padding: auto;
  text-align: center;
}

/* Seção de projetos */
.projetos {

  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center; 
  text-align: center; 
  min-height: 95vh;
  padding: 4rem 1rem;

}

.projetos h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #00ffcc;
}

/* Grid de projetos */
  .projetos-grid {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
  align-items: center; 
  gap: 2rem; 
  max-width: 900px; 
}


/* Estilos dos blocos de projeto */
.projeto {
  
  background: #2b2b2b;
  padding: 1rem;
  border-radius: 10px;
  width: 280px;
  transition: 0.3s;
}

.projeto:hover {
  background: #333;/* Altera a cor ao passar o mouse */
}

/* Estilos das imagens dos projetos */
.projeto img {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  border-radius: 8px;
  margin-bottom: 1rem;
  
}

/* Remove efeito preto e branco ao passar o mouse */
.projeto img:hover{


filter: grayscale(0%);

}

.projeto h3 {
  color: #ff0077;
  margin-bottom: 0.5rem;
}

.projeto p{

font-size:11px;

}




.icon {
  
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px; 
  padding-top: -50px;
}

/* Seção de formação */
#formacao {
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
  min-height: 100vh;
  background-color: #1e1e1e;
  padding: 60px 20px;
}

#formacao h2 {

  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f4f5f5;

}

#formacao p {
  
  display: flex;
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.6em;
  justify-content: center;
  align-items: center;


}

/* Seção de contato */
#contato {
  min-height: 100vh;
  padding: 4rem 1rem;
  background-color: #1e1e1e;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem; 
}

#contato h2{

 font-size: 2rem;
  margin-bottom: 2rem;
  color: #f4f5f5;
}

 #contato h3 {
   font-size: 2rem;
  margin-bottom: 2rem;
  color: #f4f5f5;
}

.links-contato {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.links-contato a {
  color: #00fff7;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.links-contato a:hover {
  color: #ffffff;
}

/* Estilos do formulário de contato */
.form-contato {
  max-width: 700px; 
  width: 100%;
  margin: 30px auto;
  padding: 30px;
  background-color: #111;
  border: 1px solid #00fff7;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-contato label {
  color: #00fff7;
  font-weight: bold;
}


.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #00fff7;
  border-radius: 6px;
  background-color: #222;
  color: #fff;
  resize: vertical;
}


/* Estilos do botão do formulário */
.form-contato button {
  background-color: #cfd3d3;
  color: #000;
  font-weight: bold;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-contato button:hover {
  background-color: #00e6d2; /* Muda cor ao passar o mouse */
}


