/* Estilos aprimorados para a hero section - versão clean e padronizada */
.hero-modern {
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #F87E46;
  min-height: 550px;
}

.hero-modern .container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

@media (max-width: 992px) {
  .hero-modern .container {
    flex-direction: column;
    align-items: center;
  }
}

.hero-content {
  flex: 1;
  padding: 3rem 2rem;
  z-index: 2;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-content {
    padding: 3rem;
    order: 2;
    max-width: 500px;
  }
}

.hero-form {
  flex: 1;
  padding: 2rem;
  z-index: 2;
  max-width: 450px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 2rem;
  order: 1;
}

@media (max-width: 992px) {
  .hero-form {
    margin-right: 0;
    margin-top: 2rem;
    max-width: 100%;
  }
}

.hero-title {
  color: #68260F;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-form h3 {
  color: #68260F;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  text-align: center;
}

.hero-form input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  border: 1px solid #68260F;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #68260F;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-form input:focus {
  outline: none;
  border-color: #68260F;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.hero-form input::placeholder {
  color: #68260F;
}

.consulta-form button {
  width: 100%;
  padding: 0.8rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  background: #68260F;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.consulta-form button:hover {
  background: #ff7d00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.8rem;
  text-align: center;
}

.form-disclaimer a {
  color: #68260F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-disclaimer a:hover {
  color: #ffb700;
  text-decoration: underline;
}

.discount-badge {
  background: #68260F;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 3px 10px rgba(255, 102, 0, 0.3);
}

.discount-badge svg {
  margin-right: 0.5rem;
}

.discount-badge span {
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-form {
    padding: 1.2rem;
  }
  
  .discount-badge {
    padding: 0.4rem 0.8rem;
  }
  
  .discount-badge span {
    font-size: 0.9rem;
  }
}
