/**
 * Formulário de leads — estilos dedicados (carregar após styles.css)
 */
.hero-form-wrap,
.contact-form-wrap {
  width: 100%;
  max-width: 440px;
  margin-top: 1.75rem;
}

.contact-form-wrap {
  margin-top: 0;
}

.lead-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 0;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid rgba(18, 172, 4, 0.32);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lead-form--hero {
  border-top: 3px solid #12ac04;
}

.lead-form__kicker {
  display: block;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1ed60f;
}

.lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.1rem;
  width: 100%;
}

.lead-form__field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  width: 100%;
  min-width: 0;
}

.lead-form__field label {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.lead-form__field input {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.35;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form__field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.lead-form__field input:focus {
  outline: none;
  border-color: #12ac04;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(18, 172, 4, 0.22);
}

.lead-form__submit {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: #12ac04;
  color: #000;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 6px 24px rgba(18, 172, 4, 0.4);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.lead-form__submit:hover {
  background: #1ed60f;
  box-shadow: 0 8px 28px rgba(30, 214, 15, 0.45);
}

.lead-form__submit:active {
  transform: translateY(1px);
}

.lead-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.lead-form__message {
  display: block;
  min-height: 1.25rem;
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.lead-form__message.is-error {
  color: #ff9a9a;
}

.lead-form__message.is-success {
  color: #8dffb5;
}

@media (min-width: 640px) {
  .lead-form__fields--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
}

@media (max-width: 900px) {
  .hero-form-wrap,
  .contact-form-wrap {
    max-width: none;
  }
}
