/* ==========================================
 * TRABALHE CONOSCO - LINHAGRO
 * ========================================== */

.trabalhe-page {
  min-height: 100vh;
  background-color: #f8f9fa;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hero */

.hero-page {
  background: linear-gradient(135deg, #2D5016 0%, #4a7b2b 50%, #6f8f4a 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  color: white;
  margin-bottom: 0;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-family: 'Montserrat', sans-serif;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0.75rem auto 0;
}

/* ==========================================
 * SOBRE TRABALHAR NA LINHAGRO
 * ========================================== */

.sobre-trabalhe {
  padding: 3rem 1rem 4rem;
  background: #f8f9fa;
}

.sobre-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #5a6c7d;
}

.section-paragraph {
  font-size: 0.98rem;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.beneficios-lista {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.beneficios-lista li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #34495e;
  margin-bottom: 0.5rem;
}

.beneficios-lista i {
  color: #2ecc71;
}

/* Cards de áreas */

.sobre-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.area-card {
  background: white;
  border-radius: 12px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #ff5500;
}

.area-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.4rem;
  font-family: 'Montserrat', sans-serif;
}

.area-card p {
  font-size: 0.95rem;
  color: #5a6c7d;
  line-height: 1.6;
}

/* ==========================================
 * FORMULÁRIO TRABALHE CONOSCO
 * ========================================== */

.form-section {
  padding: 3rem 1rem 4rem;
  background: white;
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-header {
  text-align: left;
  margin-bottom: 1.75rem;
}

.form-header .section-title {
  margin-bottom: 0.5rem;
}

.trabalhe-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  outline: none;
  background: white;
  color: #2c3e50;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff5500;
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.15);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%237f8c8d' d='M1.41 0L6 4.58 10.59 0 12 1.41 6 7.41 0 1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 12px 8px;
}

.form-note {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-top: 0.25rem;
}

.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* feedback antigo (mantido se quiser aproveitar em outro lugar) */

.form-feedback {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.feedback-sucesso {
  color: #1c7c3b;
}

/* Botões reaproveitam classes globais;
   só garantimos o laranja padrão */

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #ff5500;
  color: white;
}

.btn-primary:hover {
  background-color: #e24c00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 85, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #2c3e50;
  transform: translateY(-2px);
}

/* ==========================================
 * FEEDBACK FORMULÁRIO TRABALHE
 * ========================================== */

.form-sucesso,
.form-erro {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Sucesso - verde suave */
.form-sucesso {
  background: #e6f6ea;
  border: 1px solid #2d8a3f;
  color: #1f5e2c;
}

.form-sucesso i {
  font-size: 1.4rem;
  color: #2d8a3f;
  margin-top: 0.1rem;
}

/* Erro - vermelho suave */
.form-erro {
  background: #fdeeee;
  border: 1px solid #e74c3c;
  color: #b1392e;
}

.form-erro i {
  font-size: 1.4rem;
  color: #e74c3c;
  margin-top: 0.1rem;
}

.form-sucesso p,
.form-erro p {
  margin: 0;
}

/* ==========================================
 * CTA FINAL
 * ========================================== */

.cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
 * BOTÃO WHATSAPP FLUTUANTE
 * ========================================== */

.whatsapp-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 6px;
}

.whatsapp-floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  font-size: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-floating-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  background-color: #1ebe5b;
}

.whatsapp-floating-message {
  position: relative;
  max-width: 220px;
  background: linear-gradient(135deg, #f3e8ff 0%, #e0d4ff 100%);
  color: #1f2933;
  border-radius: 18px;
  padding: 8px 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: left;
  word-break: break-word;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.whatsapp-floating-message span {
  display: block;
}

.whatsapp-floating-message.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ==========================================
 * RESPONSIVE
 * ========================================== */

@media (max-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 2rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero-page {
    padding: 3.5rem 1rem 3rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .form-wrapper {
    padding: 1.7rem 1.25rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-paragraph {
    font-size: 0.9rem;
  }

  .whatsapp-floating-message {
    max-width: 190px;
    font-size: 12px;
  }
}