body {
  font-family: Arial, sans-serif;
  background: #f0f0f5;
  margin: 0;
  padding: 0;
}

header {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

header img {
  width: 100px;
  border-radius: 10px;
}

section {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.info, .tabela, .formulario {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
  margin-top: 0;
  color: #333;
}

.tabela table {
  width: 100%;
  border-collapse: collapse;
}

.tabela th, .tabela td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.formulario input, .formulario textarea {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.formulario button {
  background: #111;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 10px;
  background: #222;
  color: white;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  header img {
    width: 80px;
  }

  section {
    padding: 10px;
  }
}
