/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212; /* Um preto menos "puro", mais moderno */
  color: #ffffff;
  font-family: "Inter", sans-serif;
  padding: 0 20px;
}

/* Header mais minimalista */
header {
  padding: 60px 0;
  text-align: center;
}

.perfil-img {
  width: 130px;
  height: 130px;
  border-radius: 20px; /* Quadrado arredondado, estilo app */
  border: 2px solid #333;
  margin-bottom: 20px;
}

/* Seções */
section {
  max-width: 900px;
  margin: 0 auto 60px auto;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Stack - Em Tags */
.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stack-grid div {
  background: #1e1e1e;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #333;
  font-size: 0.9rem;
}

/* Grid de Projetos - Estilo Card Moderno */
.projetos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.projeto {
  border-bottom: 1px solid #222; /* Divisor simples em vez de caixa */
  padding-bottom: 30px;
}

.projeto h3 {
  margin-bottom: 10px;
  color: #00aaff; /* Azul para destacar os títulos */
}

.projeto p {
  color: #aaa;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.projeto-img {
  width: 100%;
  border-radius: 12px;
  filter: grayscale(20%); /* Fica mais elegante */
  transition: 0.3s;
  border: 1px solid #222;
}

.projeto-img:hover {
  filter: grayscale(0%);
  border-color: #00aaff;
}

/* Botão discreto */
.btn-projeto {
  color: #00aaff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  border: 1px solid #00aaff;
  padding: 5px 15px;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-projeto:hover {
  background: #00aaff;
  color: #fff;
}
