/* Migrado do <style> inline de trabalhe-conosco.html em 2026-06-08 (auditoria /auto-full) */
/* Reset e Variáveis (igual index.html) */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --c-primary: #0170B9;
      --c-primary-light: #2196F3;
      --c-primary-dark: #015a94;
      --c-bg: #FFFFFF;
      --c-bg-section: #F8FBFF;
      --c-bg-alt: #EDF4FB;
      --c-text: #FFFFFF;
      --c-titulo: #1a3a5c;
      --c-corpo: #4a5568;
      --c-muted: #718096;
      --c-borda: #E2E8F0;
      --c-sucesso: #10B981;
      --c-erro: #EF4444;
      --c-whatsapp: #25D366;
      --shadow: 0 10px 30px rgba(1,112,185,.15);
      --radius: 16px;
      --led: drop-shadow(0 0 6px rgba(1,112,185,.6)) drop-shadow(0 0 18px rgba(33,150,243,.3));
      --grad-principal: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
    }

    html, body {
      margin: 0;
      padding: 0;
      background: #0a0f20 !important;
      font: 16px/1.6 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: min(1180px, 92vw); margin-inline: auto; }

    /* === MENU HEADER (igual index.html) === */
    .logo-link {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .menu-logo {
      width: 110px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 0 8px rgba(255,255,255,0.6)) drop-shadow(0 0 15px rgba(255,255,255,0.3));
      transition: transform .3s ease, filter .3s ease;
    }
    .header-slogan {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.9);
      font-weight: 500;
      margin-left: 12px;
      white-space: nowrap;
      letter-spacing: 0.5px;
    }
    .menu-logo:hover {
      transform: scale(1.08);
      filter: drop-shadow(0 0 12px rgba(255,255,255,0.9)) drop-shadow(0 0 25px rgba(255,255,255,0.5)) drop-shadow(0 0 40px rgba(100,200,255,0.4));
    }

    @media (max-width: 980px) {
      .logo-link { margin-right: auto; }
      .menu-logo { width: 90px; }
      .header-slogan { display: none; }
    }

    .main-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: linear-gradient(135deg, rgba(1,112,185,0.95) 0%, rgba(0,60,120,0.98) 100%);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    }

    .main-header.scrolled {
      background: linear-gradient(135deg, rgba(1,112,185,0.85) 0%, rgba(0,60,120,0.9) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(0,0,0,.2);
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; position: relative; gap: 16px; }
    .nav nav { display: flex; justify-content: center; }
    .nav .cta { flex-shrink: 0; }
    nav ul { display: flex; list-style: none; gap: 18px; margin: 0; padding: 0; }
    nav a { font-weight: 600; color: rgba(255,255,255,0.9); font-size: 0.85rem; white-space: nowrap; }
    nav a:hover { color: #fff; }
    .cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light)); color: #fff; font-weight: 800; font-size: 0.8rem; letter-spacing: .3px; box-shadow: var(--shadow); transition: transform .15s ease, filter .2s ease; white-space: nowrap; }
    .cta:hover { transform: translateY(-1px); filter: brightness(1.05); }

    .led-bar { position: absolute; left: 0; bottom: -2px; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--c-primary-light), var(--c-primary), transparent); filter: var(--led); animation: scan 3.6s linear infinite; }
    @keyframes scan { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

    /* Mobile Menu */
    .menu-btn {
      display: none;
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
      color: #fff;
      border: none;
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
      margin-left: 10px;
    }

    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
      overflow: visible;
    }
    .mobile-menu-overlay.show { opacity: 1; }
    .mobile-menu-content {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 300px;
      max-width: 85vw;
      background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
      display: flex;
      flex-direction: column;
      padding: 20px;
      box-sizing: border-box;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      box-shadow: -5px 0 30px rgba(1, 112, 185, 0.4);
      overflow: visible;
    }
    .mobile-menu-overlay.show .mobile-menu-content { transform: translateX(0); }
    .menu-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255, 255, 255, 0.15);
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      z-index: 10;
    }
    .menu-close:hover { background: rgba(255, 255, 255, 0.25); }
    .mobile-menu-mascot {
      position: fixed;
      right: 220px;
      top: 50%;
      transform: translateY(-50%) translateX(100%);
      height: 280px;
      width: auto;
      filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6));
      z-index: 10000;
      pointer-events: none;
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .mobile-menu-overlay.show .mobile-menu-mascot {
      transform: translateY(-50%) translateX(0);
      opacity: 1;
    }
    .mobile-menu-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px 0 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 20px;
    }
    .mobile-menu-logo {
      height: 40px;
      width: auto;
      margin-bottom: 6px;
      display: block;
    }
    .mobile-menu-slogan {
      display: block;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    .mobile-menu-nav {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }
    .mobile-menu-nav a {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      padding: 14px 16px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.2s ease;
    }
    .mobile-menu-nav a:hover,
    .mobile-menu-nav a:active {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }
    .mobile-menu-contact {
      display: flex;
      gap: 10px;
      margin-bottom: 16px;
    }
    .contact-whatsapp,
    .contact-phone {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 8px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 600;
    }
    .contact-whatsapp {
      background: rgba(37, 211, 102, 0.9);
      color: #fff;
      border: none;
    }
    .contact-whatsapp:hover { background: #25d366; }
    .contact-phone {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      border: none;
    }
    .contact-phone:hover { background: rgba(255, 255, 255, 0.25); }
    .mobile-cta {
      background: #fff;
      color: var(--c-primary);
      padding: 14px 20px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.9rem;
      text-align: center;
      margin-bottom: 16px;
      transition: all 0.2s ease;
    }
    .mobile-cta:hover { background: var(--c-bg-section); }
    .mobile-menu-social {
      display: flex;
      justify-content: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: auto;
    }
    .mobile-menu-social a {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
    }
    .mobile-menu-social a:hover { background: rgba(255, 255, 255, 0.25); }

    @media (max-width: 980px) {
      nav ul { display: none; }
      .nav .cta { display: none; }
      .menu-btn { display: inline-flex; }
    }
    @media (min-width: 981px) { .menu-btn { display: none; } }

    /* === CONTEÚDO DA PÁGINA === */
    .page-content {
      padding-top: 80px;
      background: var(--c-bg);
      min-height: 100vh;
    }

    /* Hero */
    .hero-section {
      background: var(--grad-principal);
      color: white;
      padding: 80px 0;
      text-align: center;
    }
    .hero-section h1 { font-size: 2.8rem; margin-bottom: 16px; }
    .hero-section p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

    /* Seções */
    .section { padding: 60px 0; }
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-title h2 {
      font-size: 2rem;
      color: var(--c-titulo);
      margin-bottom: 8px;
    }
    .section-title p { color: var(--c-muted); }

    /* Formulário */
    .form-section { background: var(--c-bg-section); }
    .form-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.08);
      max-width: 700px;
      margin: 0 auto;
    }
    .form-card h3 {
      font-size: 1.5rem;
      color: var(--c-titulo);
      margin-bottom: 8px;
      text-align: center;
    }
    .form-card > p {
      color: var(--c-muted);
      text-align: center;
      margin-bottom: 30px;
    }
    .form-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }
    .form-group { margin-bottom: 20px; }
    .form-label {
      display: block;
      font-weight: 600;
      color: var(--c-titulo);
      margin-bottom: 6px;
      font-size: 0.9rem;
    }
    .form-label .required { color: var(--c-erro); }
    .form-control {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid var(--c-borda);
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.2s;
      font-family: inherit;
    }
    .form-control:focus {
      outline: none;
      border-color: var(--c-primary);
      box-shadow: 0 0 0 3px rgba(1,112,185,0.1);
    }
    textarea.form-control { resize: vertical; min-height: 120px; }
    select.form-control { cursor: pointer; }

    .file-upload {
      border: 2px dashed var(--c-borda);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      transition: all 0.2s;
      cursor: pointer;
    }
    .file-upload:hover { border-color: var(--c-primary); background: rgba(1,112,185,0.02); }
    .file-upload.dragover { border-color: var(--c-primary); background: rgba(1,112,185,0.05); }
    .file-upload svg { width: 40px; height: 40px; color: var(--c-muted); margin-bottom: 12px; }
    .file-upload p { color: var(--c-muted); margin-bottom: 4px; }
    .file-upload small { color: var(--c-muted); font-size: 0.8rem; }
    .file-upload input { display: none; }
    .file-name { color: var(--c-primary); font-weight: 600; margin-top: 8px; }

    .btn-submit {
      width: 100%;
      padding: 16px;
      background: var(--grad-principal);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 10px;
    }
    .btn-submit:hover { filter: brightness(1.1); transform: translateY(-2px); }
    .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

    /* Mensagens */
    .alert {
      padding: 16px 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .alert-success { background: #d1fae5; color: #065f46; }
    .alert-error { background: #fee2e2; color: #991b1b; }
    .alert svg { width: 20px; height: 20px; flex-shrink: 0; }

    /* Footer */
    .footer {
      background: var(--c-titulo);
      color: white;
      padding: 40px 0;
      text-align: center;
    }
    .footer-logo { margin-bottom: 16px; }
    .footer-logo img { height: 50px; filter: brightness(0) invert(1); margin: 0 auto; }
    .footer p { opacity: 0.7; font-size: 0.9rem; }
    .footer a { color: white; }

    /* Responsivo */
    @media (max-width: 768px) {
      .hero-section { padding: 50px 0; }
      .hero-section h1 { font-size: 2rem; }
      .form-card { padding: 24px; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* Loading */
    .loading { text-align: center; padding: 40px; color: var(--c-muted); }
    .spinner {
      width: 40px;
      height: 40px;
      border: 3px solid var(--c-borda);
      border-top-color: var(--c-primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto 16px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
