<style>
  /* FORMULÁRIO */
  .formulario {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #111;
    border-radius: 10px;
    color: #fff;
  }

  .formulario label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 14px;
  }

  .formulario input,
  .formulario select,
  .formulario textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 14px;
  }

  .formulario textarea {
    grid-column: span 2;
    resize: vertical;
  }

  .formulario button[type="submit"],
  .formulario .btn-enviar {
    grid-column: span 2;
    padding: 12px;
    background-color: #ff0000;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
  }

  .formulario button[type="submit"]:hover,
  .formulario .btn-enviar:hover {
    background-color: #cc0000;
  }

/* Corrige sobreposição do SweetAlert */
.swal2-container {
  z-index: 100000 !important;
}


  /* MODAL */
  .modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
  }

  .modal-content {
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 650px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 0 20px #000;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .modal-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    color: #ff0000;
    text-align: center;
  }

  .modal-content .btn-fechar {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
  }

  .modal-content .btn-fechar:hover {
    color: #ff0000;
  }

  /* Confirmação (se estiver usando resumo) */
  #resumoDados {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Centraliza verticalmente toda a seção Trabalhe Conosco */
  .container-centralizado {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #111; /* para garantir contraste com o formulário */
  }
  <style>
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    animation: pulse 1.5s infinite;
  }
  .whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
</style>

</style>
