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

body {
  font-family: 'Inter', sans-serif;
  background-color: #fefefe;
  color: #222;
  line-height: 1.6;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  font-weight: 700;
  font-size: 1.8rem;
  color: #333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #0070f3;
}

.section {
  margin-bottom: 40px;
}

.foto {
  width: 150px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px auto;
  border: 3px solid #0070f3;
}

h2 {
  text-align: center;
  color: #0070f3;
  margin-bottom: 15px;
}

.projetos-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.projeto {
  background: #f5f7fa;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.projeto h3 {
  margin-bottom: 8px;
  color: #222;
}

.projeto p {
  margin-bottom: 8px;
}

.projeto a {
  color: #0070f3;
  text-decoration: none;
  font-weight: 600;
}

.projeto a:hover {
  text-decoration: underline;
}

ul {
  list-style: inside disc;
  padding-left: 0;
  max-width: 500px;
  margin: 0 auto;
}

footer {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 50px;
}
