body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  color: #1B5E20;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 40px 20px 20px;
}

.logo {
  max-width: 360px;
  height: auto;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

main h1 {
  font-size: 1.8rem;
  max-width: 700px;
  line-height: 1.4;
  color: #1B5E20;
  animation: fadeIn 2s ease-in;
}

footer {
  background-color: #388E3C;
  text-align: center;
  padding: 20px 10px;
}

footer .info p {
  margin: 5px 0;
  font-size: 14px;
  color: #1B5E20;
}

footer .links {
  margin-top: 10px;
  border-top: 1px solid #7BAE7F;
  padding-top: 10px;
}

footer .links a {
  color: #1B5E20;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

footer .links a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.privacidade {
  max-width: 800px;
  margin: 80px auto;
  background: white;
  color: #333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.privacidade h1, .privacidade h2 {
  color: #1B5E20;
  margin-bottom: 15px;
}

.privacidade p {
  line-height: 1.6;
  margin-bottom: 15px;
}