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

body {
  font-family: Arial, sans-serif;
  background-color: #f9f8f4;
  color: #3f4a3c;
  line-height: 1.6;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* A altura da tela inteira */
  background-image: url('/fundo/autumn.svg');
  background-position: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  z-index: 2;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.cta-button {
  padding: 10px 20px;
  background-color: #ff6200;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e55d00;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(80, 169, 93, 0); /* Uma camada de sombreado para melhorar a legibilidade */
  z-index: 1;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #4a6040;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.logo {
  font-weight: bold;
  color: #ffffff;
  font-size: 1.2rem;
}

.navbar a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #c4ebb1;
}

.btn-nav {
  background-color: #6e8c5f;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-nav:hover {
  background-color: #5a724d;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  min-height: calc(100vh - 80px);
  background-color: #f9f8f4;
}

.card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 12px 12px 12px rgba(0,0,0,0.08);
  max-width: 500px;
  text-align: center;
}

.card h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #4a6040;
}

.card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #5a5a5a;
}

.btn-main {
  display: inline-block;
  background-color: #6e8c5f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-main:hover {
  background-color: #5a724d;
}

@media (max-width: 768px) {
  .navbar ul {
    display: none;
  }
  .btn-nav {
    padding: 0.5rem 0.8rem;
  }
  .card h1 {
    font-size: 1.5rem;
  }
}
