/* ============================================
   SEÇÃO FALE CONOSCO / LISTA DE ESPERA
   ============================================ */

.contato-section {
  background: linear-gradient(160deg, #f0faf2 0%, #edf7ef 100%);
  padding: 80px 0;
}

.contato-container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ---- Lado esquerdo: texto ---- */
.texto {
  flex: 1 1 280px;
  min-width: 260px;
  padding-top: 8px;
}

.label-contato {
  display: inline-block;
  background: #0e801d;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.texto h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.25;
}

.texto > p {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.75;
  margin: 0 0 36px 0;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contato-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: #444;
  font-weight: 500;
}

.contato-info-item svg {
  flex-shrink: 0;
  color: #0e801d;
}

/* ---- Card do formulário ---- */
.formulario-card {
  flex: 1 1 380px;
  min-width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(14, 128, 29, 0.09),
    0 1px 4px rgba(0, 0, 0, 0.05);
  padding: 36px 32px;
  box-sizing: border-box;
}

/* ---- Campos ---- */
.campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.campo label {
  font-size: 0.855rem;
  font-weight: 600;
  color: #333;
}

.contato-section input:not([type="file"]),
.contato-section textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #222;
  background: #fafafa;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.contato-section input:not([type="file"]):focus,
.contato-section textarea:focus {
  border-color: #0e801d;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 128, 29, 0.12);
}

.contato-section input::placeholder,
.contato-section textarea::placeholder {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.contato-section textarea {
  height: 110px;
  resize: none;
  line-height: 1.6;
}

/* Input tipo date: garante texto visível */
.contato-section input[type="date"] {
  color: #222;
}

/* File upload estilizado */
.contato-section input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px dashed #0e801d;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: inherit;
  color: #444;
  background: #f5fdf6;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  outline: none;
}

.contato-section input[type="file"]:hover {
  background: #ecfbee;
  border-color: #0a6617;
}

.campo small {
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}

/* ---- Linha dupla lado a lado ---- */
.linha-wrap {
  margin-bottom: 0;
}

.linha {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.linha .campo {
  flex: 1 1 calc(50% - 8px);
  min-width: 180px;
  margin-bottom: 18px;
}

/* ---- Botão enviar ---- */
.btn-enviar {
  width: 100%;
  padding: 14px 20px;
  background: #0e801d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-enviar:hover {
  background: #0a6617;
  box-shadow: 0 4px 14px rgba(14, 128, 29, 0.32);
  transform: translateY(-1px);
}

.btn-enviar:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-enviar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---- Feedback de envio ---- */
.form-feedback {
  margin-top: 16px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 24px;
}

/* ---- Responsivo ---- */
@media (max-width: 820px) {
  .contato-container {
    gap: 32px;
  }

  .formulario-card {
    padding: 28px 20px;
  }
}

@media (max-width: 600px) {
  .contato-section {
    padding: 48px 0;
  }

  .texto h1 {
    font-size: 1.6rem;
  }

  .formulario-card {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .linha {
    flex-direction: column;
    gap: 0;
  }

  .linha .campo {
    flex: 1 1 100%;
    min-width: unset;
  }
}
