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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #000000;
  background-image: url('fundo.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.6;
}

header {
  background-color: #6d0f99;
  color: white;
  padding: 30px 0;
  text-align: center;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

header h1 {
  font-family: Georgia, serif;
  font-size: 2rem;
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 25%;
  border: 3px solid white;
  object-fit: cover;
}

nav {
  background-color: #4a006d;
  display: flex;
  justify-content: center;
  gap: 35px;
  padding: 15px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-family: Verdana, sans-serif;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffd600;
}

main {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}

#achar img {
  margin-top: 8px;
  border: 2px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


section {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section h2 {
  color: #4a006d;
  margin-bottom: 15px;
  font-family: Georgia, serif;
}

section h3 {
  color: #4a006d;
  margin-top: 20px;
  font-family: Georgia, serif;
}

ul {
  list-style-type: disc;
  padding-left: 25px;
}

ul li {
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form input, form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  transition: border-color 0.3s;
}

form button {
  background-color: #4a006d;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #9a13d8;
  transform: scale(1.03);
}

footer {
  background-color: #6d0f99;
  color: white;
  text-align: center;
  padding: 18px;
  margin-top: 30px;
}

@media (max-width: 600px) {
  header .container {
    flex-direction: column;
  }

  nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  nav a {
    text-align: center;
    display: block;
    white-space: normal; /* Permite quebra de linha */
  }

  main {
    padding: 0 10px;
  }
}
