.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  padding-top: 10rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 800px;
  margin-top: -60px;
}

.hero-subtitle {
  display: inline-block;
  background-color: #1a4f2a; /* Cor de fundo do subtítulo */
  color: #28a745; /* Cor do texto do subtítulo */
  padding: 10px 15px;
  border-radius: 4px; /* Diminui o border-radius */
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 2.5em; /* Tamanho do título principal */
  margin-bottom: 15px;
  font-weight: 700; /* Geralmente títulos são mais pesados */
}

.hero-description {
  font-size: 1.1em; /* Tamanho do texto da descrição */
  color: rgba(255, 255, 255, 0.8); /* Cor da descrição levemente transparente */
  margin-bottom: 25px;
}

.hero-button {
  display: inline-block;
  background-color: #28a745; /* Cor de fundo do botão */
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px; /* Diminui o border-radius */
  font-size: 1.1em;
  font-family: "Manrope", sans-serif;
  cursor: pointer;
  text-decoration: none; /* Remove sublinhado se for um link */
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #218838; /* Escurece no hover */
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 2rem auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(40, 167, 69, 0.3),
              0 0 60px rgba(40, 167, 69, 0.2),
              0 0 90px rgba(40, 167, 69, 0.1);
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.hero-image img:hover {
  box-shadow: 0 0 40px rgba(40, 167, 69, 0.4),
              0 0 80px rgba(40, 167, 69, 0.3),
              0 0 120px rgba(40, 167, 69, 0.2);
}

/* Responsividade básica para a seção hero */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 5rem;
  }

  .hero-content {
    margin-top: 0;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2em;
  }

  .hero-description {
    font-size: 1em;
  }

  .hero-button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .hero-image {
    max-width: 600px;
  }

  .hero-image img {
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 1.75em;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    max-height: 300px;
  }
}
