:root {
    --navy: #1B2A4E;
    --navy-dark: #131F3A;
    --navy-light: #2A3D6B;
    --gold: #A78544;
    --gold-soft: #C4A268;
    --gold-pale: #E8DDC4;
    --cream: #F7F3EA;
    --cream-dark: #EDE6D3;
    --bg: #FBFAF6;
    --white: #FFFFFF;
    --text: #1B2A4E;
    --text-muted: #5A5751;
    --text-faint: #8A877F;
    --border: #E5E1D2;
    --shadow-sm: 0 2px 8px rgba(27, 42, 78, 0.06);
    --shadow-md: 0 8px 24px rgba(27, 42, 78, 0.10);
    --shadow-lg: 0 20px 60px rgba(27, 42, 78, 0.15);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Manrope', -apple-system, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--navy);
    line-height: 1.15;
  }

  h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
  h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

  p { color: var(--text-muted); }

  a { color: var(--gold); text-decoration: none; }

  /* ============ NAV ============ */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(251, 250, 246, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: all 0.3s ease;
  }
  body.admin-bar .nav {
    top: 32px;
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.5px;
    border: 1.5px solid var(--gold);
  }
  .logo-text {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--navy);
  }
  .logo-text span { color: var(--gold); font-style: italic; }

  .nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
    align-items: center;
  }
  .nav-link {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.3px;
    border-radius: 4px;
    transition: all 0.2s;
    position: relative;
  }
  .nav-link:hover { color: var(--gold); }
  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 14px; right: 14px;
    height: 1.5px;
    background: var(--gold);
  }
  .nav-link.active { color: var(--gold); }
  .nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    margin-left: 8px;
    border: 1px solid var(--navy);
    transition: all 0.2s;
  }
  .nav-cta:hover {
    background: var(--gold);
    color: var(--navy) !important;
    border-color: var(--gold);
  }
  .nav-cta.active::after { display: none; }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    margin: 5px 0;
    transition: all 0.3s;
  }

  /* ============ PAGE STRUCTURE ============ */
  .page {
    padding-top: 0;
    animation: fadeIn 0.5s ease;
    min-height: 100vh;
  }
  .page.active { display: block; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

  /* ============ HERO ============ */
  .hero {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(167,133,68,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 80%; max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-50%);
    opacity: 0.4;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 500;
    animation: slideUp 0.8s ease 0.1s both;
  }
  .hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
    animation: slideUp 0.8s ease 0.2s both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
  }
  .hero-lead {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: slideUp 0.8s ease 0.3s both;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.4s both;
  }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s;
    text-decoration: none;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
  }
  .btn-primary:hover {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
    transform: translateY(-1px);
  }
  .btn-secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
  }
  .btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
  }
  .btn-dark {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .btn-dark:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
  }
  .btn-large { padding: 18px 36px; font-size: 15px; }
  .btn-arrow::after { content: '\2192'; transition: transform 0.25s; }
  .btn-arrow:hover::after { transform: translateX(4px); }

  /* Hero side card */
  .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(167,133,68,0.3);
    backdrop-filter: blur(20px);
    padding: 40px 36px;
    border-radius: 6px;
    position: relative;
    animation: slideUp 0.8s ease 0.5s both;
  }
  .hero-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 50px; height: 50px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
  }
  .hero-card::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 50px; height: 50px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
  }
  .hero-stat {
    margin-bottom: 28px;
  }
  .hero-stat:last-child { margin-bottom: 0; }
  .hero-stat-number {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    display: block;
  }
  .hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    letter-spacing: 0.5px;
  }
  .hero-divider {
    border: none;
    height: 1px;
    background: rgba(167,133,68,0.2);
    margin: 24px 0;
  }

  /* ============ SECTIONS ============ */
  .section {
    padding: 100px 0;
  }
  .section-cream { background: var(--cream); }
  .section-navy { background: var(--navy); color: var(--white); }
  .section-navy h2, .section-navy h3 { color: var(--white); }
  .section-navy p { color: rgba(255,255,255,0.75); }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .section-header h2 {
    margin-bottom: 20px;
  }
  .section-header h2 em { font-style: italic; color: var(--gold); }
  .section-lead {
    font-size: 17px;
    line-height: 1.7;
  }

  /* ============ PILARES GRID ============ */
  .pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
  }
  .pilar {
    background: var(--white);
    padding: 40px 32px;
    transition: all 0.3s;
    position: relative;
  }
  .pilar:hover {
    background: var(--cream);
  }
  .pilar-num {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }
  .pilar h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
  }
  .pilar p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* ============ SERVIÃ‡OS ============ */
  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .servico-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .servico-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.3s;
  }
  .servico-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .servico-card:hover::before { height: 100%; }
  .servico-icon {
    width: 44px; height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 20px;
  }
  .servico-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
  }
  .servico-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* ============ PROCESSO TIMELINE ============ */
  .timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding-left: 32px;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 7px; top: 12px; bottom: 12px;
    width: 1px;
    background: var(--gold);
    opacity: 0.3;
  }
  .timeline-item {
    position: relative;
    padding-bottom: 40px;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -32px; top: 8px;
    width: 15px; height: 15px;
    border: 2px solid var(--gold);
    background: var(--bg);
    border-radius: 50%;
  }
  .timeline-step {
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 1px;
  }
  .timeline-item h3 {
    font-size: 1.4rem;
    margin: 4px 0 8px;
  }
  .timeline-item p {
    font-size: 15px;
    max-width: 620px;
  }

  .processo-resultado {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 48px 40px;
    margin-top: 64px;
    border-left: 3px solid var(--gold);
  }
  .processo-resultado h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-family: var(--serif);
  }
  .processo-resultado ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
  }
  .processo-resultado li {
    padding-left: 28px;
    position: relative;
    color: var(--text);
    font-size: 15px;
  }
  .processo-resultado li::before {
    content: '\2713';
    position: absolute;
    left: 0; top: 0;
    color: var(--gold);
    font-weight: 600;
  }

  /* ============ VAGAS ============ */
  .vagas-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
  }
  .filter-pill {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--sans);
  }
  .filter-pill:hover { border-color: var(--gold); color: var(--gold); }
  .filter-pill.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .vagas-list {
    display: grid;
    gap: 16px;
  }
  .vaga-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.25s;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
  }
  .vaga-card:hover {
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
  }
  .vaga-card-info { min-width: 0; }
  .vaga-card-meta {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .vaga-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-family: var(--serif);
    font-weight: 600;
  }
  .vaga-card-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
  }
  .vaga-card-details span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .vaga-card-tag {
    background: var(--cream);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  /* ============ VAGA DETALHE ============ */
  .vaga-detalhe-hero {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 80px;
  }
  .vaga-detalhe-hero .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 13px;
    margin-bottom: 24px;
    font-family: var(--sans);
    transition: gap 0.2s;
  }
  .vaga-detalhe-hero .back-link:hover { gap: 12px; }
  .vaga-detalhe-meta {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .vaga-detalhe-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 400;
  }
  .vaga-detalhe-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .detalhe-tag {
    background: rgba(167,133,68,0.15);
    border: 1px solid rgba(167,133,68,0.4);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .vaga-detalhe-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    padding: 80px 0;
  }
  .vaga-detalhe-body h3 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
    font-family: var(--serif);
  }
  .vaga-detalhe-body h3:first-child { margin-top: 0; }
  .vaga-detalhe-body ul {
    list-style: none;
    padding: 0;
  }
  .vaga-detalhe-body li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .vaga-detalhe-body li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--gold);
  }

  /* ============ FORMS ============ */
  .form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 40px 36px;
    position: sticky;
    top: 96px;
  }
  .form-card.standalone { position: static; max-width: 720px; margin: 0 auto; }
  .form-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  .form-card-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
  }
  .form-group label .req { color: var(--gold); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: all 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(167,133,68,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .file-upload {
    border: 1.5px dashed var(--border);
    border-radius: 4px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg);
  }
  .file-upload:hover {
    border-color: var(--gold);
    background: var(--cream);
  }
  .file-upload-icon {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .file-upload-text {
    font-size: 13px;
    color: var(--text-muted);
  }
  .file-upload-text strong { color: var(--navy); font-weight: 600; }
  .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
  }
  .form-checkbox input { margin-top: 3px; accent-color: var(--gold); }
  .form-checkbox label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    cursor: pointer;
  }
  .form-checkbox label a { font-weight: 500; }

  .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .form-success.show { display: block; }
  .form-success-icon {
    width: 64px; height: 64px;
    background: var(--cream);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 28px;
  }
  .form-success h4 {
    font-family: var(--serif);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--navy);
  }
  .form-success p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* ============ EMPRESAS / B2B ============ */
  .empresas-hero {
    background: var(--cream);
    padding: 100px 0 80px;
  }
  .empresas-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .empresas-hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .empresas-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
  }
  .empresas-stat {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
  }
  .empresas-stat-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
  }
  .empresas-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
    letter-spacing: 0.5px;
  }

  /* ============ HOME VAGAS DESTAQUE ============ */
  .home-vagas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  /* ============ CTA BANNER ============ */
  .cta-banner {
    background: var(--navy);
    color: var(--white);
    padding: 80px 48px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(167,133,68,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
  }
  .cta-banner > * { position: relative; z-index: 2; }
  .cta-banner h2 { color: var(--white); margin-bottom: 16px; font-weight: 400; }
  .cta-banner h2 em { font-style: italic; color: var(--gold); }
  .cta-banner p {
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.7;
  }

  /* ============ CONTATO ============ */
  .contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
  }
  .contato-info-block {
    margin-bottom: 32px;
  }
  .contato-info-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .contato-info-value {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 500;
  }
  .contato-info-value a { color: var(--navy); }
  .contato-info-value a:hover { color: var(--gold); }

  /* ============ FOOTER ============ */
  .footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer h4 {
    color: var(--white);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .footer-links {
    list-style: none;
  }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a, .footer-links button {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    padding: 0;
    text-align: left;
  }
  .footer-links a:hover, .footer-links button:hover { color: var(--gold); }
  .footer-about p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 16px;
  }

  /* ============ MODAL ============ */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(27, 42, 78, 0.85);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.2s;
  }
  .modal-overlay.show { display: flex; }
  .modal {
    background: var(--white);
    max-width: 520px;
    width: 100%;
    border-radius: 6px;
    padding: 48px 40px;
    position: relative;
    animation: slideUp 0.3s;
  }
  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px; height: 32px;
    color: var(--text-muted);
    font-size: 22px;
  }

  /* ============ COOKIE BANNER ============ */
  .cookie-banner {
    position: fixed;
    bottom: 24px; left: 24px; right: 24px;
    max-width: 480px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    display: none;
  }
  .cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease both;
  }
  .cookie-banner h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .cookie-banner p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cookie-banner .btn { padding: 10px 18px; font-size: 13px; }

  /* ============ DEMO BADGE ============ */
  .demo-badge {
    position: fixed;
    top: 84px; right: 24px;
    background: var(--gold);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 50;
    box-shadow: var(--shadow-sm);
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 920px) {
    .nav-links { display: none !important; }
    .nav-links.open {
      display: flex !important;
      position: absolute;
      top: 80px; left: 0; right: 0;
      flex-direction: column;
      background: var(--white);
      padding: 16px 16px 32px 16px;
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      gap: 8px;
    }
    .nav-links li {
      width: 100%;
    }
    .nav-link { display: block; padding: 12px 16px; width: 100%; text-align: left; }
    .nav-cta { display: block; text-align: center; margin-top: 8px; }
    .menu-toggle { display: block; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    .hero-grid,
    .empresas-hero-grid,
    .contato-grid,
    .vaga-detalhe-content { grid-template-columns: 1fr; gap: 40px; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .processo-resultado ul { grid-template-columns: 1fr; }
    .empresas-stats { grid-template-columns: 1fr; gap: 12px; }
    .form-card { position: static; }
    .demo-badge { top: 78px; right: 12px; font-size: 10px; padding: 4px 10px; }
  }
  @media (max-width: 600px) {
    .nav-inner { padding: 0 20px; height: 64px; }
    .logo-text { font-size: 15px; }
    .container, .container-narrow { padding: 0 20px; }
    .hero { padding: 60px 0 80px; }
    .section { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .vaga-card { grid-template-columns: 1fr; }
    .cta-banner { padding: 48px 24px; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  }
.custom-logo { max-height: 70px; max-width: 250px; width: auto; object-fit: contain; }
