/* Estilo geral */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: linear-gradient(to bottom, #e0e0e0, #ffffff);
  color: #333;
}

/* Menu fixo */
header {
  background-color: #5c2d91;
  color: white;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.menu-container {
  text-align: center;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  display: inline-block;
  margin: 0 15px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.menu a:hover,
.menu a.active {
  color: #ffd700;
}

/* Seção de contacto */
.contact-section {
  padding: 120px 20px 60px;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-section h1 {
  color: #5c2d91;
  margin-bottom: 10px;
}

.contact-section p {
  color: #555;
  margin-bottom: 30px;
}

/* Formulário */
form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

label {
  display: block;
  text-align: left;
  margin-top: 15px;
  color: #444;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #5c2d91;
  box-shadow: 0 0 4px #a47be3;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  background-color: #5c2d91;
  color: white;
  border: none;
  padding: 12px 20px;
  margin-top: 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #4b2474;
}

/* Rodapé */
footer {
  background-color: #5c2d91;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  font-size: 14px;
}
