/* Para garantir que o footer vá para o fim da tela */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #000;
}

/* Cabeçalho */
header {
  background-color: #007b55;
  color: white;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.logo-circle {
  background-color: white;
  color: #007b55;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

.menu a {
  margin: 0 12px;
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.auth-buttons button {
  margin-left: 12px;
  background-color: white;
  color: #007b55;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.auth-buttons button:hover {
  background-color: #000000;
  color: white;
  transition: background-color 0.3s ease;
}

main {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.form-container {
  background: #e6f7ef;
  padding: 30px;
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  text-align: center;
}

.form-container h2 {
  color: #008f36;
  margin-bottom: 8px;
}

form {
  text-align: left;
  margin-top: 20px;
}

form label {
  display: block;
  font-weight: bold;
  margin-top: 16px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.termos {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.termos input {
  margin-right: 8px;
}

.criar-conta {
  background: #008f36;
  color: white;
  width: 100%;
  padding: 12px;
  border: none;
  margin-top: 20px;
  font-weight: bold;
  cursor: pointer;
}

.login-link {
  text-align: center;
  margin-top: 12px;
}

/* Rodapé */
footer {
  background-color: #003d2c;
  color: white;
  padding: 30px 40px;
  display: flex;
  justify-content: center; /* Centraliza o conteúdo no meio da tela */
}

.footer-content {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: center; /* Centraliza as colunas */
  gap: 40px;
  flex-wrap: wrap;
  text-align: left; /* Alinha o texto à esquerda */
}

.footer-left {
  max-width: 300px;
  margin-bottom: 20px;
  text-align: left; /* Alinha o texto à esquerda */
}

.footer-left .logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
}

.footer-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-columns div {
  min-width: 150px;
}

.footer-columns strong {
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.footer-columns p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #ccc;
  cursor: pointer;
}

.footer-columns .fale-conosco {
  margin-top: 10px;
  font-weight: bold;
  color: #ffffff;
}

/* Ajuste para o menu de navegação no footer */
.footer-columns nav.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.footer-columns nav.footer-menu a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-columns nav.footer-menu a:hover,
.footer-columns nav.footer-menu a:focus {
  color: #ffffff;
  text-decoration: underline;
  outline: none;
}
