body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  text-align: justify;
}

header {
  background-color: #00274d;
  color: white;
  padding: 20px;
  text-align: center;
}


.foto-perfil {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.foto-perfil img {
  width: 180px;       /* tamanho da foto */
  height: 180px;      /* altura igual à largura */
  object-fit: cover;  /* mantém proporção cortando excesso */
  border-radius: 50%; /* deixa redonda */
  border: 3px solid #333; /* opcional: borda */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* opcional: sombra */
}


main {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
  margin-bottom: 30px;
}

h1 {
  color: #e6e8eb;
}

h2 {
  color: #00274d;
}

footer {
  text-align: center;
  padding: 15px;
  background: #00274d;
  color: white;
}

.contact {
  background-color: #e8f0fe;
  padding: 15px;
  border-radius: 6px;
}

.contact p {
  margin: 8px 0;
}

a {
  color: #00274d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
