/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
}

:root {
  --verde: #00a651;
  --verde-escuro: #2e8b57;
  --verde-claro: #4caf50;
  --cinza-claro: #f5f5f5;
  --branco: #ffffff;
  --preto: #111111;
}

/* 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-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;
}

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


.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;
}

.user-name {
  margin-right: 10px;
  font-weight: bold;
  color: white;
}


/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 10%;
  background-color: var(--branco);
  gap: 2rem;
}

.hero-texto {
  flex: 1;
  max-width: 500px;
}

.hero-texto h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--verde);
}

.hero-texto p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-imagem img {
  max-width: 80%;
  height: auto;
}

.saiba-mais {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--verde);
  border: 1px solid var(--verde);
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.saiba-mais:hover {
  background-color: var(--verde);
  color: white;
}

/* Linha divisória */
.divisor {
  height: 1px;
  background-color: #e0e0e0;
  width: 100%;
  margin: 0;
}

/* Convite Section */
.convite {
  background-color: var(--verde-claro);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.convite h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.convite p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cadastre-agora {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: var(--verde-claro);
  border: none;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.cadastre-agora:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* 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 {
  gap: 0px;
  display: flex;
  flex-direction: column;
}

.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;
}
/* Responsividade */
@media (max-width: 1024px) {
  .hero {
    padding: 2rem 5%;
  }

  footer {
    padding: 2rem 5%;
  }
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    margin-top: 1rem;
    justify-content: space-between;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-texto {
    margin-bottom: 2rem;
  }

  .hero-imagem {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1rem;
  }

  .botoes {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .hero-texto h1 {
    font-size: 2.5rem;
  }

  .convite h2 {
    font-size: 2rem;
  }
}
