/* Start custom CSS *//* Escopo: apenas dentro da seção .work-us */
.work-us .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: transparent; /* o bloco pai já tem fundo branco */
  padding: 0;
  border-radius: 0;
}

/* Inputs e textarea */
.work-us .wpcf7 input[type="text"],
.work-us .wpcf7 input[type="email"],
.work-us .wpcf7 input[type="tel"],
.work-us .wpcf7 textarea,
.work-us .wpcf7 select,
.work-us .wpcf7 input[type="file"] {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

/* Textarea altura */
.work-us .wpcf7 textarea { min-height: 120px; }

/* Botão */
.work-us .wpcf7 input[type="submit"] {
  background-color: #f9c800;
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.work-us .wpcf7 input[type="submit"]:hover { background-color: #e6b800; }

/* Pequenos ajustes de parágrafos e labels */
.work-us .wpcf7 p { margin: 0 0 12px 0; color: #444; font-size: 14px; }
.work-us .wpcf7 .wpcf7-validation-errors { color: #d00; }

/* Responsivo */
@media (max-width:768px) {
  .work-us .columns { flex-direction: column; }
}/* End custom CSS */