
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Cabeçalho roxo com texto branco centralizado */
header {
  background-color: #6a0dad;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Estilo da imagem de perfil */
header img {
  width: 100px;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  margin-top: 10px;
}

/* Cada seção terá margem e espaçamento centralizado */
section {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Títulos das seções com roxo e linha inferior */
h2 {
  color: #6a0dad;
  border-bottom: 2px solid #6a0dad;
  padding-bottom: 5px;
}

/* Remove os pontos da lista */
ul {
  list-style-type: none;
  padding: 0;
}

/* Espaçamento entre itens da lista */
li {
  margin-bottom: 10px;
}

/* Estilo padrão para links */
a {
  color: #6a0dad;
  text-decoration: none;
}

/* Efeito hover: muda a cor do link ao passar o mouse */
a:hover {
  color: #a35cd1;
  text-decoration: underline;
}

/* Estilo do formulário de contato */
form {
  display: flex;
  flex-direction: column;
}

/* Campos de entrada e área de texto */
input, textarea {
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

/* Botão roxo com texto branco */
button {
  background-color: #6a0dad;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Efeito hover no botão */
button:hover {
  background-color: #a35cd1;
}
