/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(120deg, #0e0e0e, #1e1e1e);
  color: #f0f0f0;
  padding: 20px;
  min-height: 100vh;
}

.header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.nome {
  font-size: 3rem;
  color: #00ffd9;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.subtitulo {
  font-size: 1.2rem;
  color: #ccc;
  font-style: italic;
}

.projetos {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.titulo-projetos {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00ffd9;
  border-bottom: 2px solid #00ffd9;
  padding-bottom: 10px;
}

.projeto {
  background-color: #222;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.projeto:hover {
  background-color: #2c2c2c;
  transform: translateY(-4px);
}

.projeto h3 {
  color: #00ffd9;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.projeto p {
  color: #ccc;
  margin-bottom: 15px;
}

.projeto a {
  display: inline-block;
  color: #000;
  background-color: #00ffd9;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.projeto a:hover {
  background-color: #00ccb0;
  color: #111;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #999;
  margin-top: 60px;
}

/* Responsivo */
@media (max-width: 600px) {
  .nome {
    font-size: 2.2rem;
  }

  .subtitulo {
    font-size: 1rem;
  }

  .projeto {
    padding: 18px;
  }
}
