/* Seção geral */
#section-body {
  padding-bottom: 0;
  font-family: var(--font-site);
}

.page-title h1 {
    font-size: 2.7rem;
  color: #30562d;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 1px;
}

/* Formulário sobre o mapa */
.contact-form-wrap {
  position: absolute;
  top: 40px;
  right: 0;
  width: 100%;
  pointer-events: none;
}

.contact-form.white-block {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(48,86,45,0.10);
  padding: 36px 28px 28px 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: 48px;
  pointer-events: auto;
}

.contact-form h3 {
  color: #30562d;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: left;
}

.form-group label {
  color: #227a28;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
  font-size: 1.04rem;
}

.form-control {
  background: #f6f7fc;
  border: 1px solid #dbead6;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 1.1rem;
  margin-bottom: 14px;
  transition: border-color 0.18s;
}

.form-control:focus {
  border-color: #227a28;
  outline: none;
}

.btn-long {
  width: 100%;
  padding: 14px 0;
  background: #30562d;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  margin-top: 8px;
  transition: background 0.18s;
  box-shadow: 0 2px 12px rgba(48,86,45,0.08);
}

.btn-long:hover,
.btn-secondary:hover {
  background: #227a28;
  color: #fff;
}

.g-recaptcha {
  margin-bottom: 12px;
}

.alert-success {
  display: none;
  background: #e8f6ea;
  border-radius: 7px;
  color: #227a28;
  font-weight: 600;
  padding: 10px 12px;
  margin-top: 12px;
}

@media (max-width: 1200px) {
  .contact-form.white-block {
    margin-right: 18px;
  }
}
@media (max-width: 900px) {
  .contact-form.white-block {
    max-width: 100%;
    margin-right: 0;
    padding: 24px 8px 18px 8px;
  }
  .contact-form-wrap {
    top: 20px;
  }
}
@media (max-width: 700px) {
  .contact-form-wrap {
    position: static;
    width: 100%;
    padding: 0;
    margin-top: -60px;
  }
  .contact-form.white-block {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(48,86,45,0.09);
    padding: 14px 4px 10px 4px;
    margin: 0 auto;
  }
  #map iframe {
    border-radius: 0;
  }
}
textarea.form-control {
    min-height: calc(1.5em + (3.75rem + 2px));
}