.hero {
  min-height: calc(100vh - 80px); /* ocupa toda a altura menos a nav */
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  text-align: center;
  padding: 3rem;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.hero-container {
  display: flex;
  align-items: center;      
  justify-content: center;  
  gap: 3rem;
}

.hero-image img {
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}

.hero-text {
  max-width: 800px;
  font-size: 1.1rem;
  color: #333;
  text-align: justify;

}

.hero-text h2, .hero-text h3 {
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: #111;
  font-size: 1.4rem;
}

.hero-text p{
    font-size: 1.2rem;
}
/* Mobile */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    text-align: justify;
  }
  .hero-image img {
    max-width: 80%;
  }
}
