body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #ddd;
  line-height: 1.8;
  margin: 0;
}

/* HEADER */
.header-trabalhe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10%;
  background: rgba(10, 10, 10, 0.95);
  color: #f2c94c;
  border-bottom: 1px solid #222;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.header-trabalhe .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f2c94c;
}

.header-trabalhe nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.header-trabalhe nav a:hover {
  color: #f2c94c;
  text-shadow: 0 0 10px rgba(242, 201, 76, 0.6);
}

/* CONTEÚDO */
.trabalhe-container {
  max-width: 900px;
  margin: 80px auto;
  background: #111;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(242, 201, 76, 0.15);
  border: 1px solid #2a2a2a;
}

.trabalhe-container h1 {
  text-align: center;
  color: #f2c94c;
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(242, 201, 76, 0.5);
}

.trabalhe-container h2 {
  color: #f2c94c;
  margin-top: 35px;
  font-size: 1.3rem;
  border-left: 4px solid #f2c94c;
  padding-left: 12px;
  text-shadow: 0 0 5px rgba(242, 201, 76, 0.3);
}

.trabalhe-container p, 
.trabalhe-container li {
  font-size: 1rem;
  color: #ccc;
}

.trabalhe-container ul {
  padding-left: 25px;
}

.vagas-lista i {
  color: #f2c94c;
  margin-right: 8px;
}

/* FORMULÁRIO */
.form-trabalhe {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.form-trabalhe input,
.form-trabalhe select,
.form-trabalhe textarea {
  background: #0a0a0a;
  border: 1px solid #333;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  resize: none;
}

.btn-enviar {
  background: #f2c94c;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-enviar:hover {
  background: #dcbf3f;
  transform: scale(1.02);
}

.email-contato {
  margin-top: 20px;
  font-size: 0.95rem;
}

.email-contato a {
  color: #f2c94c;
  text-decoration: none;
}

.email-contato a:hover {
  text-decoration: underline;
}

.last-update {
  text-align: right;
  color: #999;
  margin-top: 50px;
  font-size: 0.9rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .header-trabalhe {
    flex-direction: column;
    text-align: center;
  }

  .header-trabalhe nav {
    margin-top: 10px;
  }

  .trabalhe-container {
    margin: 50px 20px;
    padding: 30px 20px;
  }

  .trabalhe-container h1 {
    font-size: 1.8rem;
  }
}
