/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #0d47a1;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background-color: #0052A4;
  color: #ffffff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header img {
  height: 40px;
}

.header nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  font-size: 14px;
}

.header nav a:hover {
  text-decoration: underline;
}

.main-content {
  flex: 1;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contato {
  max-width: 600px;
  width: 100%;
}

.contato h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contato p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-weight: 600;
  color: #0d47a1;
}

input, textarea {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 8px;
  font-size: 1rem;
}

button {
  padding: 12px;
  background-color: #0052A4;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #003c82;
}

.info-extra {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #555;
}

.info-extra a {
  color: #0052A4;
  text-decoration: none;
}

.info-extra a:hover {
  text-decoration: underline;
}

footer {
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  font-weight: 600;
  background-color: #0052A4;
  padding: 20px;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

footer p {
  font-size: 12px;
  margin: 0;
}

/* Responsivo */
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .header nav a {
    margin: 10px 0;
  }

  .main-content {
    padding: 20px;
  }
}
