body {
  background: #fff;
  color: #222;
  font-family: 'Georgia', 'Times New Roman', serif;
  margin: 0;
  padding: 0;
}
header {
  background: #fff;
  border-bottom: 1px solid #e0d7b3;
  padding: 24px 0 12px 0;
  text-align: center;
  box-shadow: none;
}
header h1 {
  margin: 0 0 8px 0;
  font-size: 2.2em;
  letter-spacing: 1px;
  color: #222;
  font-family: 'Georgia', 'Times New Roman', serif;
}
nav a {
  color: #2a4d69;
  text-decoration: none;
  margin: 0 16px;
  font-weight: 600;
  font-family: 'Georgia', 'Times New Roman', serif;
  transition: color 0.2s;
}
nav a:hover {
  color: #4b86b4;
}
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 32px 0 32px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
section.intro {
  text-align: center;
  margin-top: 40px;
}
section h2 {
  color: #2a4d69;
  margin-bottom: 16px;
  font-family: 'Georgia', 'Times New Roman', serif;
}
.projeto {
  background: #fff;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.projeto h3 {
  margin-top: 0;
  color: #2a4d69;
}
footer {
  background: #fff;
  color: #888;
  text-align: center;
  padding: 18px 0 10px 0;
  border-top: 1px solid #e0d7b3;
  position: static;
  width: 100%;
  bottom: 0;
}
ul {
  list-style: none;
  padding: 0;
}
ul li {
  display: inline-block;
  margin-right: 16px;
}
.perfil-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 32px;
  border-bottom: 2px solid #e0d7b3;
  padding-bottom: 16px;
  background: none;
  padding-left: 32px;
  padding-right: 32px;
}
.perfil-info {
  flex: 1;
}
.perfil-header h1 {
  font-size: 2.2em;
  margin-bottom: 0;
  color: #222;
  font-family: 'Georgia', 'Times New Roman', serif;
}
.perfil-titulo {
  font-size: 1.15em;
  color: #4b86b4;
  margin-top: 8px;
  margin-bottom: 12px;
}
.perfil-links a {
  margin-right: 18px;
  color: #2a4d69;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Georgia', 'Times New Roman', serif;
  transition: color 0.2s;
}
.perfil-links a:last-child {
  margin-right: 0;
}
.perfil-links a:hover {
  color: #4b86b4;
}
.perfil-foto {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e0d7b3;
  margin-left: 32px;
}
.blog-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
}
.blog-post-link {
  background: #fff;
  border: 1px solid #e0d7b3;
  border-radius: 8px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}
.blog-post-link a {
  font-size: 1.18em;
  color: #2a4d69;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 6px;
}
.blog-post-link a:hover {
  text-decoration: underline;
  color: #4b86b4;
}
.blog-post-date {
  color: #888;
  font-size: 0.98em;
}
@media (max-width: 700px) {
  .perfil-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .perfil-foto {
    margin-left: 0;
    margin-top: 18px;
  }
  .perfil-info {
    width: 100%;
  }
  main {
    padding: 16px 4px 0 4px;
  }
}
@media (max-width: 600px) {
  main { padding: 0 4px; }
  nav a { margin: 0 8px; }
}
