    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Inter', sans-serif; background: #fff; color: #0f0f0f; }

    /* ══════════════════════════════════════════
       NAV
    ══════════════════════════════════════════ */
    .nav {
      background: #fff;
      border-bottom: 1px solid #f0f0f0;
      position: sticky;
      top: 0;
      z-index: 50;
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-links { display: flex; gap: 32px; }
    .nav-links a {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #444;
      text-decoration: none;
      transition: color .15s;
    }
    .nav-links a:hover { color: #B80F0B; }

    .nav-social {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      color: #555;
      text-decoration: none;
      transition: background .15s, color .15s;
    }
    .nav-social-btn:hover { background: #f5f5f5; color: #0f0f0f; }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #333;
      border-radius: 2px;
    }
    .nav-mobile {
      display: none;
      flex-direction: column;
      padding: 16px 24px 24px;
      border-top: 1px solid #f0f0f0;
      gap: 4px;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: #333;
      text-decoration: none;
      padding: 10px 0;
      border-bottom: 1px solid #f5f5f5;
    }
    .nav-mobile .btn-red-mobile {
      margin-top: 12px;
      text-align: center;
      border-bottom: none;
      background: #B80F0B;
      color: #fff;
      border-radius: 6px;
      padding: 13px;
    }

    /* ══════════════════════════════════════════
       BUTTONS
    ══════════════════════════════════════════ */
    .btn-red {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #B80F0B;
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 14px;
      padding: 13px 26px;
      border-radius: 6px;
      border: none;
      outline: none;
      text-decoration: none;
      letter-spacing: .02em;
      box-shadow: 0 2px 12px rgba(184,15,11,0.28);
      transition: background .15s, box-shadow .15s;
      white-space: nowrap;
      cursor: pointer;
    }
    .btn-red:hover { background: #e52629; box-shadow: 0 4px 18px rgba(184,15,11,0.35); }

    .btn-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #444;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      padding-bottom: 2px;
      border-bottom: 1.5px solid transparent;
      transition: border-color .15s, color .15s;
      white-space: nowrap;
    }
    .btn-link:hover { color: #0f0f0f; border-bottom-color: #0f0f0f; }
    .btn-link--light { color: rgba(255,255,255,0.8); }
    .btn-link--light:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }

    /* ══════════════════════════════════════════
       HERO — dot grid + card flutuante
    ══════════════════════════════════════════ */
    .hero-section {
      position: relative;
      background: #fff;
      overflow: hidden;
    }

    /* dot grid de fundo */
    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, #d4d4d4 1px, transparent 1px);
      background-size: 28px 28px;
      z-index: 0;
    }
    /* fade do grid — some no lado do texto */
    .hero-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, #fff 38%, rgba(255,255,255,0.6) 58%, rgba(255,255,255,0) 75%);
      z-index: 1;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 68px 32px 116px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 64px;
      align-items: center;
      min-height: 520px;
    }
    /* desktop: foto col 2, centralizada */
    .hero-photo-wrap {
      grid-column: 2;
      align-self: center;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #B80F0B;
      margin-bottom: 20px;
    }

    .hero-content h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 44px;
      font-weight: 700;
      line-height: 1.12;
      color: #0f0f0f;
      margin-bottom: 18px;
    }
    .hero-content h1 em { font-style: normal; color: #B80F0B; }

    .hero-sub {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 36px;
      max-width: 380px;
    }

    .hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

    /* prova social */
    .hero-proof {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 24px;
    }
    .proof-stars {
      display: flex;
      gap: 2px;
    }
    .proof-stars svg {
      width: 18px;
      height: 18px;
    }
    .proof-text { font-size: 13px; color: #666; }
    .proof-text strong { color: #0f0f0f; font-weight: 700; }

    /* ─── card da foto ─── */
    .hero-photo-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 0 40px 32px;
    }

    .hero-photo-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow:
        0 4px 16px rgba(0,0,0,0.06),
        0 16px 48px rgba(0,0,0,0.12),
        0 32px 80px rgba(0,0,0,0.10);
      aspect-ratio: 4/3;
      width: 100%;
    }
    .hero-photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* tagline sobre a foto */
    .hero-photo-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      background: rgba(10,10,10,0.72);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #fff;
      border-radius: 8px;
      padding: 7px 13px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .03em;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .hero-photo-tag::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #49d483;
      flex-shrink: 0;
    }

    /* badge: anos de experiência */
    .badge-anos {
      position: absolute;
      bottom: 16px;
      left: -4px;
      background: #fff;
      border-radius: 14px;
      padding: 12px 16px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.13);
      display: flex;
      align-items: center;
      gap: 11px;
      z-index: 3;
    }
    .badge-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: #B80F0B;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .badge-label { font-family: 'Plus Jakarta Sans', sans-serif; }
    .badge-label strong { display: block; font-size: 15px; font-weight: 700; color: #0f0f0f; line-height: 1.2; }
    .badge-label span { font-size: 11px; color: #888; font-weight: 500; }

    /* badge: empresas atendidas (canto superior direito da foto) */
    .badge-lei {
      position: absolute;
      top: 16px;
      right: -4px;
      background: #fff;
      border-radius: 14px;
      padding: 12px 16px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.13);
      display: flex;
      align-items: center;
      gap: 11px;
      z-index: 3;
    }
    .badge-lei .badge-icon { background: #7a0b08; }
    .badge-lei .badge-label strong { font-size: 15px; }
    .badge-lei .badge-label span { font-size: 11px; }

    /* ══════════════════════════════════════════
       BLOCO 2 — AUTORIDADE
    ══════════════════════════════════════════ */
    /*
      Efeito ponte: wrapper tem altura 0, o card usa translateY(-50%)
      para flutuar metade no fundo branco do hero, metade no cinza das vagas.
    */
    .autoridade-wrap {
      background: transparent;
      padding: 0 32px;
      height: 0;
      overflow: visible;
      position: relative;
      z-index: 10;
    }
    .autoridade {
      max-width: 1200px;
      margin: 0 auto;
      background: #0f0f0f;
      border-radius: 20px;
      border-top: 3px solid #B80F0B;
      box-shadow: 0 20px 60px rgba(0,0,0,0.22);
      transform: translateY(-50%);
      animation: slideUp .5s ease both;
      animation-delay: .15s;
    }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(calc(-50% + 16px)); }
      to   { opacity: 1; transform: translateY(-50%); }
    }
    .autoridade-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      align-items: center;
      padding: 0 8px;
    }
    .autoridade-item {
      padding: 34px 28px;
      text-align: center;
    }
    .autoridade-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      line-height: 1.2;
    }
    .autoridade-label {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      line-height: 1.4;
    }
    .autoridade-divider {
      width: 1px;
      height: 36px;
      background: rgba(255,255,255,0.1);
    }

    /* ══════════════════════════════════════════
       BLOCO 3 — MURAL DE VAGAS
    ══════════════════════════════════════════ */
    .vagas-section {
      background: #f7f7f7;
      padding: 112px 0 96px;
    }
    .vagas-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px; /* mesmo indent do hero-inner — alinha ao grid */
    }
    .vagas-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .vagas-titulo h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: #0f0f0f;
      line-height: 1.2;
      margin-bottom: 8px;
    }
    .vagas-titulo p {
      font-size: 15px;
      color: #666;
      max-width: 440px;
      line-height: 1.6;
    }
    .vagas-filtros {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .filtro-btn {
      padding: 7px 16px;
      border-radius: 999px;
      border: 1.5px solid #ddd;
      background: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: #555;
      cursor: pointer;
      transition: all .15s;
    }
    .filtro-btn:hover { border-color: #B80F0B; color: #B80F0B; }
    .filtro-btn.ativo {
      background: #0f0f0f;
      border-color: #0f0f0f;
      color: #fff;
    }

    /* grid de cards */
    .vagas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }
    .vaga-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: box-shadow .2s, transform .2s;
    }
    .vaga-card:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,0.11);
      transform: translateY(-3px);
    }
    .vaga-card-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
    }
    .vaga-card-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .vaga-badges {
      display: flex;
      gap: 6px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }
    .badge-tipo {
      display: inline-block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 999px;
    }
    .badge-temporario { background: #fff0ee; color: #B80F0B; }
    .badge-fixo { background: #f0f0f0; color: #444; }
    .badge-urgente { background: #fff3e0; color: #e07000; }
    .vaga-titulo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #0f0f0f;
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .vaga-local {
      font-size: 13px;
      color: #888;
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 20px;
    }
    .vaga-cta {
      margin-top: auto;
    }
    .btn-vaga {
      display: block;
      width: 100%;
      text-align: center;
      padding: 11px;
      border-radius: 8px;
      border: 1.5px solid #e0e0e0;
      background: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #0f0f0f;
      text-decoration: none;
      transition: background .15s, border-color .15s, color .15s;
    }
    .btn-vaga:hover {
      background: #B80F0B;
      border-color: #B80F0B;
      color: #fff;
    }

    /* rodapé do mural */
    .vagas-footer {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    .btn-carregar {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      border-radius: 8px;
      border: 1.5px solid #ddd;
      background: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #333;
      cursor: pointer;
      transition: all .15s;
    }
    .btn-carregar:hover { border-color: #0f0f0f; color: #0f0f0f; }
    .btn-ver-todas {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #B80F0B;
      text-decoration: none;
      border-bottom: 1.5px solid transparent;
      padding-bottom: 2px;
      transition: border-color .15s;
    }
    .btn-ver-todas:hover { border-bottom-color: #B80F0B; }

    /* ══════════════════════════════════════════
       BLOCO 5 — SERVIÇOS B2B
    ══════════════════════════════════════════ */
    .servicos-section {
      background: #0f0f0f;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    /* listras decorativas do logo como watermark */
    .servicos-section::before {
      content: '';
      position: absolute;
      top: -60px; right: -40px;
      width: 420px; height: 420px;
      background: repeating-linear-gradient(
        -55deg,
        rgba(184,15,11,0.07) 0px,
        rgba(184,15,11,0.07) 12px,
        transparent 12px,
        transparent 28px
      );
      border-radius: 50%;
      pointer-events: none;
    }
    .servicos-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }
    .servicos-header {
      margin: 0 auto 64px;
      text-align: center;
    }
    .servicos-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #B80F0B;
      margin-bottom: 16px;
    }
    .servicos-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 38px;
      font-weight: 700;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 20px;
      white-space: nowrap;
    }
    .servicos-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
    }
    .servicos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 56px;
    }
    .servico-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 36px 32px;
      transition: border-color .2s, background .2s, opacity .55s ease, transform .55s ease;
      opacity: 0;
      transform: translateY(28px);
    }
    .servico-card.visible {
      opacity: 1;
      transform: none;
    }
    .servico-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(184,15,11,0.4);
    }
    .servico-icon {
      width: 48px; height: 48px;
      background: rgba(184,15,11,0.15);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #e52629;
      margin-bottom: 24px;
    }
    .servico-tag {
      display: inline-block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #B80F0B;
      background: rgba(184,15,11,0.12);
      border-radius: 4px;
      padding: 3px 8px;
      margin-bottom: 14px;
    }
    .servico-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .servico-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .servico-lista {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .servico-lista li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
    }
    .servico-lista li::before {
      content: '';
      flex-shrink: 0;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #B80F0B;
      margin-top: 6px;
    }
    .servicos-cta-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
    .btn-ghost-white {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 12px 22px;
      text-decoration: none;
      transition: color .15s, border-color .15s;
    }
    .btn-ghost-white:hover {
      color: #fff;
      border-color: rgba(255,255,255,0.45);
    }

    /* ══════════════════════════════════════════
       BLOCO 8 — FOOTER
    ══════════════════════════════════════════ */
    .footer {
      background: #0f0f0f;
      padding: 72px 0 0;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand {}
    .footer-logo {
      height: 36px;
      width: auto;
      display: block;
      margin-bottom: 20px;
    }
    .footer-brand-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 260px;
    }
    .footer-social {
      display: flex;
      gap: 10px;
    }
    .footer-social-link {
      width: 36px; height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: border-color .15s, color .15s;
    }
    .footer-social-link:hover {
      border-color: rgba(255,255,255,0.3);
      color: #fff;
    }
    .footer-col-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 20px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color .15s;
      line-height: 1.4;
    }
    .footer-links a:hover { color: #fff; }
    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .footer-contact-icon {
      flex-shrink: 0;
      color: #B80F0B;
      margin-top: 1px;
    }
    .footer-contact-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.3);
      text-transform: uppercase;
      letter-spacing: .08em;
      display: block;
      margin-bottom: 2px;
    }
    .footer-contact-val {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
    }
    .footer-contact-val a {
      color: inherit;
      text-decoration: none;
    }
    .footer-contact-val a:hover { color: #fff; }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 0;
    }
    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,0.25);
    }
    .footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .footer-bottom-links a {
      font-size: 12px;
      color: rgba(255,255,255,0.25);
      text-decoration: none;
      transition: color .15s;
    }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.55); }
    .footer-red-bar {
      height: 3px;
      background: #B80F0B;
    }

    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
      .footer-brand-desc,
      .footer-col-title,
      .footer-links,
      .footer-links a,
      .footer-contact-label,
      .footer-contact-val,
      .footer-contact-item { text-align: left; }
    }
    @media (max-width: 480px) {
      .footer-grid { gap: 28px; }
      .footer-inner { padding: 0 20px; }
    }

    /* ══════════════════════════════════════════
       BLOCO DEPOIMENTOS
    ══════════════════════════════════════════ */
    .depo-section {
      background: #0f0f0f;
      padding: 100px 0;
      overflow: hidden;
    }
    .depo-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .depo-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 24px;
    }
    .depo-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #B80F0B;
      margin-bottom: 14px;
    }
    .depo-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      max-width: 480px;
    }
    .depo-nav {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }
    .depo-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.2);
      background: transparent;
      color: rgba(255,255,255,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color .15s, color .15s;
    }
    .depo-btn:hover { border-color: #B80F0B; color: #B80F0B; }
    .depo-track-wrap {
      overflow: hidden;
    }
    .depo-track {
      display: flex;
      transition: transform 420ms cubic-bezier(.4,0,.2,1);
    }
    .depo-card {
      flex: 0 0 calc(50% - 16px);
      margin-right: 32px;
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px;
      padding: 36px;
    }
    .depo-quote-icon {
      color: #B80F0B;
      margin-bottom: 20px;
    }
    .depo-text {
      font-size: 16px;
      color: rgba(255,255,255,0.78);
      line-height: 1.7;
      margin-bottom: 28px;
      font-style: italic;
    }
    .depo-author-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
    }
    .depo-author-role {
      font-size: 12px;
      color: rgba(255,255,255,0.4);
    }
    .depo-dots {
      display: flex;
      gap: 8px;
      margin-top: 36px;
    }
    .depo-dot {
      height: 4px;
      border-radius: 2px;
      background: rgba(255,255,255,0.2);
      transition: width .3s, background .3s;
      cursor: pointer;
    }
    .depo-dot--active {
      background: #B80F0B;
    }

    /* ══════════════════════════════════════════
       BLOCO 7 — BLOG / HUB DE CONTEÚDO
    ══════════════════════════════════════════ */
    .blog-section {
      background: linear-gradient(to bottom, #ffffff 0%, #f0f3f7 100%);
      padding: 100px 0;
    }
    .blog-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .blog-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 56px;
    }
    .blog-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #B80F0B;
      margin-bottom: 12px;
    }
    .blog-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px;
      font-weight: 700;
      line-height: 1.2;
      color: #0f0f0f;
      white-space: nowrap;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 56px;
    }
    .blog-card {
      border: 1.5px solid #ebebeb;
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: border-color .2s, box-shadow .2s;
    }
    .blog-card:hover {
      border-color: #d0d0d0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    }
    .blog-card-img {
      aspect-ratio: 16/9;
      background: #f0f0f0;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .blog-card-img-inner {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* listras do logo como placeholder visual */
    .blog-card-img-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -55deg,
        rgba(184,15,11,0.15) 0px,
        rgba(184,15,11,0.15) 10px,
        transparent 10px,
        transparent 24px
      );
    }
    .blog-card-img svg {
      position: relative;
      z-index: 1;
      opacity: 0.25;
    }
    .blog-card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .blog-card-tag {
      display: inline-block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #B80F0B;
      background: rgba(184,15,11,0.08);
      border-radius: 4px;
      padding: 3px 8px;
      margin-bottom: 12px;
      width: fit-content;
    }
    .blog-card-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #0f0f0f;
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .blog-card-excerpt {
      font-size: 13px;
      color: #777;
      line-height: 1.65;
      flex: 1;
      margin-bottom: 20px;
    }
    .blog-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: #bbb;
      border-top: 1px solid #f0f0f0;
      padding-top: 16px;
    }
    .blog-card-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .blog-card-link {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: #B80F0B;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .blog-footer {
      display: flex;
      justify-content: center;
    }

    @media (max-width: 900px) {
      .blog-grid { grid-template-columns: 1fr; gap: 16px; }
      .blog-title { font-size: 22px; white-space: normal; }
      .blog-section { padding: 64px 0; }
      .depo-section { padding: 64px 0; }
      .depo-header { flex-direction: column; align-items: center; text-align: center; margin-bottom: 36px; }
      .depo-title { font-size: 26px; max-width: 100%; }
      .depo-card { flex: 0 0 calc(100% - 32px); }
    }

    /* ══════════════════════════════════════════
       BLOCO 6 — CALCULADORA
    ══════════════════════════════════════════ */
    .calc-section {
      background: #f7f7f7;
      padding: 100px 0;
    }
    .calc-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 80px;
      align-items: center;
    }
    .calc-aside-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #B80F0B;
      margin-bottom: 16px;
    }
    .calc-aside-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px;
      font-weight: 700;
      line-height: 1.2;
      color: #0f0f0f;
      margin-bottom: 16px;
    }
    .calc-aside-sub {
      font-size: 15px;
      color: #666;
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .calc-trust {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .calc-trust-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 13px;
      color: #555;
      line-height: 1.5;
    }
    .calc-trust-icon {
      flex-shrink: 0;
      width: 32px; height: 32px;
      background: rgba(184,15,11,0.08);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: #B80F0B;
      margin-top: 1px;
    }
    .calc-trust-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: #0f0f0f;
      display: block;
      margin-bottom: 2px;
    }

    /* card da calculadora */
    .calc-card {
      background: #fff;
      border: 1.5px solid #ebebeb;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
    .calc-card-header {
      background: #0f0f0f;
      padding: 20px 28px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .calc-card-header-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
    }
    .calc-card-header-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #B80F0B;
      margin-left: auto;
    }
    .calc-body {
      padding: 28px;
    }
    .calc-inputs {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 24px;
    }
    .calc-input--text {
      font-size: 15px;
      font-weight: 500;
    }
    .calc-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .calc-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #888;
    }
    .calc-input {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #0f0f0f;
      background: #f7f7f7;
      border: 1.5px solid #e8e8e8;
      border-radius: 8px;
      padding: 12px 14px;
      width: 100%;
      outline: none;
      transition: border-color .15s;
    }
    .calc-input:focus { border-color: #B80F0B; }
    .calc-input-prefix {
      position: relative;
    }
    .calc-input-prefix span {
      position: absolute;
      left: 14px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #aaa;
      pointer-events: none;
    }
    .calc-input-prefix .calc-input {
      padding-left: 38px;
    }

    /* resultado */
    .calc-resultado {
      background: #f7f7f7;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
    }
    .calc-resultado-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #999;
      margin-bottom: 6px;
    }
    .calc-resultado-total {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: #B80F0B;
      margin-bottom: 4px;
    }
    .calc-resultado-sub {
      font-size: 12px;
      color: #999;
    }
    .calc-breakdown {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 24px;
    }
    .calc-breakdown-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #666;
      padding: 6px 0;
      border-bottom: 1px solid #f0f0f0;
    }
    .calc-breakdown-row:last-child { border-bottom: none; }
    .calc-breakdown-row strong {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      color: #0f0f0f;
      font-size: 13px;
    }
    .calc-breakdown-row--total {
      border-top: 1.5px solid #e0e0e0 !important;
      border-bottom: none !important;
      margin-top: 4px;
      padding-top: 10px !important;
    }
    .calc-breakdown-row--total span,
    .calc-breakdown-row--total strong {
      font-size: 14px;
      font-weight: 700;
      color: #0f0f0f;
    }
    .calc-obs {
      font-size: 11px;
      color: #aaa;
      line-height: 1.6;
      margin-bottom: 20px;
      padding: 12px;
      background: #f7f7f7;
      border-radius: 8px;
    }
    .calc-lead-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #0f0f0f;
      margin-bottom: 10px;
    }

    /* gate (nome + email para ver detalhes) */
    .calc-gate {
      background: rgba(184,15,11,0.04);
      border: 1px dashed rgba(184,15,11,0.25);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
    }
    .calc-gate-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #0f0f0f;
      margin-bottom: 4px;
    }
    .calc-gate-sub {
      font-size: 12px;
      color: #888;
      margin-bottom: 16px;
      line-height: 1.5;
    }
    .calc-gate-fields {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 12px;
    }
    .calc-gate-input {
      font-size: 13px;
      font-family: 'Inter', sans-serif;
      color: #0f0f0f;
      background: #fff;
      border: 1.5px solid #e0e0e0;
      border-radius: 8px;
      padding: 10px 12px;
      width: 100%;
      outline: none;
      transition: border-color .15s;
    }
    .calc-gate-input:focus { border-color: #B80F0B; }
    .calc-gate-input::placeholder { color: #bbb; }
    .calc-nota {
      font-size: 11px;
      color: #bbb;
      text-align: center;
      margin-top: 12px;
      line-height: 1.5;
    }

    @media (max-width: 900px) {
      .calc-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
      }
      .calc-section { padding: 64px 0; }
      .calc-aside-title { font-size: 26px; }
      .calc-gate-fields { grid-template-columns: 1fr; }
      .calc-trust-desc { display: none; }
      .calc-trust-item { align-items: center; }
      .calc-trust-icon { margin-top: 0; }
      .calc-trust-label { margin-bottom: 0; }
      .calc-input { font-size: 16px; }
      .calc-input--text { font-size: 15px; }
    }

    /* ══════════════════════════════════════════
       BLOCO 4 — FORMULÁRIO CENTRAL
    ══════════════════════════════════════════ */
    .form-section {
      background: #fff;
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }
    /* dot grid levíssimo — só textura, não chama atenção */
    .form-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, #d8d8d8 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: 0.35;
      z-index: 0;
    }
    /* fade nas bordas para o grid sumir suavemente */
    .form-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, #fff 0%, transparent 12%, transparent 88%, #fff 100%),
        linear-gradient(to right,  #fff 0%, transparent 10%, transparent 90%, #fff 100%);
      z-index: 1;
    }
    .form-inner {
      position: relative;
      z-index: 2;
    }
    .form-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: center;
    }

    /* aside esquerdo */
    .form-aside-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #B80F0B;
      margin-bottom: 16px;
    }
    .form-aside-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: #0f0f0f;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .form-aside-sub {
      font-size: 15px;
      color: #666;
      line-height: 1.7;
      margin-bottom: 40px;
    }
    .form-aside-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .form-aside-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .form-aside-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #555;
    }
    .form-aside-item-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #aaa;
      margin-bottom: 3px;
    }
    .form-aside-item-val {
      font-size: 14px;
      color: #333;
      font-weight: 500;
    }

    /* card do formulário */
    .form-card {
      background: #fff;
      border: 1.5px solid #ebebeb;
      border-radius: 20px;
      padding: 36px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }

    /* overlay grid: ambos os forms sempre no DOM, mesma célula */
    .form-subtitle-wrap,
    .form-panels {
      display: grid;
    }
    .form-subtitle-wrap > *,
    .form-panels > form {
      grid-area: 1 / 1;
    }
    .form-hidden {
      visibility: hidden;
      pointer-events: none;
    }

    /* toggle candidato/empresa */
    .form-toggle {
      display: flex;
      background: #f5f5f5;
      border-radius: 10px;
      padding: 4px;
      gap: 4px;
      margin-bottom: 24px;
    }
    .toggle-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 10px 16px;
      border-radius: 7px;
      border: none;
      background: transparent;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #888;
      cursor: pointer;
      transition: all .15s;
    }
    .toggle-btn.toggle-ativo {
      background: #fff;
      color: #0f0f0f;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }

    .form-subtitle {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    /* campos */
    .form-fields { display: flex; flex-direction: column; gap: 16px; }
    .field-row { display: flex; flex-direction: column; gap: 16px; }
    .field-row-2 { flex-direction: row; gap: 16px; }
    .field-row-2 .field-group { flex: 1; }
    .field-group { display: flex; flex-direction: column; gap: 6px; }
    .field-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: #444;
      letter-spacing: .02em;
    }
    .field-req { color: #ccc; margin-left: 2px; font-size: 11px; font-weight: 400; }
    .calc-gate-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 600; color: #888; letter-spacing: .04em; display: block; margin-bottom: 4px; }
    .field-input {
      padding: 11px 14px;
      border: 1.5px solid #e5e5e5;
      border-radius: 8px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      color: #0f0f0f;
      background: #fafafa;
      transition: border-color .15s, box-shadow .15s;
      outline: none;
      width: 100%;
    }
    .field-input:focus {
      border-color: #B80F0B;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(184,15,11,0.08);
    }
    .field-select { appearance: none; cursor: pointer; }
    .field-upload {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border: 1.5px dashed #ddd;
      border-radius: 8px;
      font-size: 13px;
      color: #888;
      cursor: pointer;
      background: #fafafa;
      transition: border-color .15s;
    }
    .field-upload:hover { border-color: #B80F0B; color: #B80F0B; }

    /* chips de demanda */
    .field-chips {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
    }
    .chip { cursor: pointer; }
    .chip input { display: none; }
    .chip span {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1.5px solid #e0e0e0;
      font-size: 13px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 500;
      color: #555;
      white-space: nowrap;
      transition: all .15s;
    }
    .chip input:checked + span {
      background: #0f0f0f;
      border-color: #0f0f0f;
      color: #fff;
    }
    .chip:hover span { border-color: #B80F0B; color: #B80F0B; }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 900px) {
      /* nav */
      .nav-links { display: none; }
      .nav-social { display: none; }
      .nav-hamburger { display: flex; }
      .nav-inner > .btn-red { display: none; }

      /* hero — 1 coluna: texto → foto */
      .hero-section { padding-top: 24px; }
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 24px 40px;
        min-height: auto;
      }
      .hero-section::after {
        background: linear-gradient(to bottom, #fff 20%, rgba(255,255,255,0.6) 55%, rgba(255,255,255,0) 85%);
      }
      .hero-content  { grid-column: 1; grid-row: 1; }
      .hero-photo-wrap { grid-column: 1; grid-row: 2; padding: 36px 0 16px; }
      .hero-photo-card { aspect-ratio: 16/9; }
      .hero-photo-card img { object-position: center center; }
      /* esconde badge empresas no mobile */
      .badge-lei { display: none; }

      .hero-content h1 { font-size: 30px; }
      .hero-sub { max-width: 100%; font-size: 15px; margin-bottom: 24px; }

      /* CTAs lado a lado no mobile (não empilhados) */
      .hero-ctas { flex-direction: row; align-items: center; gap: 20px; flex-wrap: nowrap; }
      .hero-ctas .btn-red { flex: 0 0 auto; font-size: 13px; padding: 11px 20px; }
      .hero-ctas .btn-link { flex: 0 0 auto; font-size: 13px; }

      /* badges menores no mobile */
      .badge-anos { left: 0; bottom: 0; padding: 9px 12px; border-radius: 10px; }
      .badge-icon { width: 30px; height: 30px; border-radius: 8px; }
      .badge-label strong { font-size: 13px; }
      .badge-label span { font-size: 10px; }
      .badge-lei { right: 0; top: 0; padding: 8px 11px; border-radius: 8px; max-width: 124px; }
      .badge-lei-title { font-size: 9px; }
      .badge-lei-val { font-size: 11px; }
      .hero-photo-tag { font-size: 11px; padding: 5px 10px; }

      /* bloco 2 mobile — sai do modo ponte, entra como card normal */
      .autoridade-wrap { padding: 0 16px; height: auto; overflow: hidden; margin-top: 24px; }
      .autoridade { border-radius: 14px; transform: none; animation: none; }
      .autoridade-inner { grid-template-columns: 1fr 1fr; padding: 0; }
      .autoridade-divider { display: none; }
      .autoridade-item { padding: 16px 12px; text-align: center; }
      .autoridade-num { font-size: 16px; }
      .autoridade-label { font-size: 11px; }

      /* bloco 3 mobile */
      .vagas-section { padding: 40px 0 56px; }
      .vagas-inner { padding: 0 20px; }
      .vagas-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .vagas-titulo h2 { font-size: 26px; }
      .vagas-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .vaga-card-img { aspect-ratio: 4/3; }
      .vaga-local { display: none; }
      .vaga-card-body { padding: 14px; }
      .vaga-titulo { font-size: 14px; margin-bottom: 10px; }
      .badge-tipo { font-size: 9px; padding: 2px 8px; }
      .btn-vaga { font-size: 12px; padding: 9px; }
    }

    /* servicos + blog + form + footer — mobile */
    @media (max-width: 900px) {
      .form-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
      }
      .form-section { padding: 64px 0; }
      .form-aside-title { font-size: 26px; text-align: center; }
      .form-aside-sub { margin-bottom: 0; text-align: center; }
      .form-aside-eyebrow { text-align: center; }
      .form-aside-list { display: none; }
      /* servicos colapsa a 900px, não só 480px */
      .servicos-grid { grid-template-columns: 1fr; gap: 16px; }
      .servicos-inner { padding: 0 20px; }
      .servicos-section { padding: 64px 0; }
      br.br-desktop { display: none; }
      .servicos-title { font-size: 28px; white-space: normal; }
      .servicos-header { margin-bottom: 40px; }
      .servicos-cta-wrap { flex-direction: row; align-items: center; flex-wrap: wrap; justify-content: center; }
      /* blog */
      .blog-inner { padding: 0 20px; }
    }

    @media (max-width: 480px) {
      .field-chips { flex-wrap: wrap; }
      .nav-inner { padding: 0 20px; }
      .hero-inner { padding: 0 20px 48px; }
      .hero-content h1 { font-size: 26px; line-height: 1.18; }
      .hero-eyebrow { font-size: 10px; letter-spacing: .12em; }
      .hero-sub { font-size: 14px; margin-bottom: 28px; }
      .hero-photo-wrap { padding: 40px 8px 20px; }
      .autoridade-wrap { padding: 0 12px; }
      .form-card { padding: 20px 16px; }
      .field-row-2 { flex-direction: column; }
      .servico-card { padding: 24px 20px; }
    }


/* ══════════════════════════════════════════
   PAGE: EMPRESA
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
       HERO INTERNO
    ══════════════════════════════════════════ */
.emp-hero {
      background: #0f0f0f;
      position: relative;
      overflow: hidden;
      padding: 80px 0 88px;
    }
    /* listras diagonais da marca como watermark */
    .emp-hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -80px;
      width: 520px; height: 520px;
      background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 18px,
        rgba(184,15,11,0.07) 18px,
        rgba(184,15,11,0.07) 36px
      );
      border-radius: 50%;
      pointer-events: none;
      z-index: 2;
    }
    .emp-hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 3;
    }
    .emp-hero-bg {
      position: absolute; inset: 0; z-index: 1;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.08;
      pointer-events: none;
    }
    .emp-hero-h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B;
      margin-bottom: 16px;
    }
    .emp-hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 44px; font-weight: 700; line-height: 1.15;
      color: #fff; max-width: 720px; margin-bottom: 28px;
    }
    .emp-hero-title span { color: #B80F0B; }
    .emp-hero-chips {
      display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px;
    }
    .emp-hero-chip {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px; font-weight: 600;
      color: rgba(255,255,255,0.4);
      padding: 6px 14px; border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.1);
      white-space: nowrap;
    }

/* ══════════════════════════════════════════
       QUEM SOMOS
    ══════════════════════════════════════════ */
.qs-section {
      padding: 96px 0;
      position: relative; overflow: hidden;
    }
    .qs-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, #d8d8d8 1px, transparent 1px);
      background-size: 28px 28px;
      z-index: 0; pointer-events: none;
    }
    .qs-section::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(255,255,255,0.15) 30%, rgba(255,255,255,1) 72%);
      z-index: 0; pointer-events: none;
    }
    .qs-inner {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: stretch;
    }
    .qs-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 14px;
    }
    .qs-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px; font-weight: 700; line-height: 1.2;
      color: #0f0f0f; margin-bottom: 24px;
    }
    .qs-text {
      font-size: 15px; line-height: 1.75; color: #555;
      margin-bottom: 18px;
    }
    .qs-check-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; font-weight: 500; color: #333; line-height: 1.4;
    }
    .qs-check-icon {
      color: #B80F0B; flex-shrink: 0; margin-top: 1px;
    }
    .qs-img {
      border-radius: 14px; overflow: hidden;
      min-height: 480px;
      position: relative; background: #f0f0f0;
      display: flex;
    }
    .qs-img-placeholder {
      width: 100%; flex: 1;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 14px; padding: 32px;
      background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    }
    .qs-img-placeholder svg { color: #bbb; }
    .qs-img-placeholder-label {
      font-size: 12px; color: #aaa; text-align: center; line-height: 1.5;
      font-style: italic;
    }

/* ══════════════════════════════════════════
       GRUPO: EMPRESAS
    ══════════════════════════════════════════ */
.grupo-section {
      background: #f7f7f7;
      padding: 64px 0;
    }
    .grupo-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
    }
    .grupo-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #999;
      text-align: center; margin-bottom: 32px;
    }
    .grupo-logos {
      display: flex; align-items: center; justify-content: center;
      gap: 48px; flex-wrap: wrap;
    }
    .grupo-logo-card {
      display: flex; flex-direction: column; align-items: center; gap: 10px;
    }
    .grupo-logo-img {
      height: 44px; width: auto; opacity: 0.75;
      filter: grayscale(1);
      transition: opacity .2s, filter .2s;
    }
    .grupo-logo-img:hover { opacity: 1; filter: none; }
    .grupo-logo-name {
      font-size: 11px; color: #999; font-weight: 500;
    }
    .grupo-divider {
      width: 1px; height: 40px; background: #ddd;
    }

/* ══════════════════════════════════════════
       CTA INTERMEDIÁRIO
    ══════════════════════════════════════════ */
.cta-strip {
      background: #B80F0B;
      padding: 40px 0;
    }
    .cta-strip-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      display: flex; align-items: center; justify-content: space-between; gap: 32px;
    }
    .cta-strip-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px; font-weight: 700; color: #fff;
    }
    .cta-strip-sub {
      font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px;
    }

/* ══════════════════════════════════════════
       PROPÓSITO
    ══════════════════════════════════════════ */
.proposito-section {
      padding: 96px 0;
      position: relative; overflow: hidden;
    }
    .proposito-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, #d8d8d8 1px, transparent 1px);
      background-size: 28px 28px;
      z-index: 0; pointer-events: none;
    }
    .proposito-section::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.1) 30%, rgba(255,255,255,0.96) 80%);
      z-index: 0; pointer-events: none;
    }
    .proposito-inner {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
    }
    .proposito-header { text-align: center; margin-bottom: 56px; }
    .proposito-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 14px;
    }
    .proposito-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px; font-weight: 700; color: #0f0f0f;
    }
    .proposito-cards {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .proposito-card {
      background: #fff;
      border: 1.5px solid #ececec;
      border-radius: 14px;
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: box-shadow .2s, border-color .2s;
    }
    .proposito-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.07);
      border-color: #ddd;
    }
    .proposito-card-icon {
      width: 48px; height: 48px; border-radius: 10px;
      background: rgba(184,15,11,0.07);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px; color: #B80F0B;
    }
    .proposito-card-tag {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 10px;
    }
    .proposito-card-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px; font-weight: 700; color: #0f0f0f; margin-bottom: 14px;
    }
    .proposito-card-text {
      font-size: 14px; line-height: 1.7; color: #666;
    }
    .valores-tags {
      display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
    }
    .valor-break { flex-basis: 100%; height: 0; }
    .valor-tag {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px; font-weight: 600;
      padding: 5px 12px; border-radius: 999px;
      background: rgba(184,15,11,0.07); color: #B80F0B;
    }

/* ══════════════════════════════════════════
       ESTRUTURA NACIONAL
    ══════════════════════════════════════════ */
.estrutura-section {
      background: #0f0f0f;
      padding: 96px 0;
      position: relative; overflow: hidden;
    }
    .estrutura-section::before {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 600px; height: 600px;
      background: repeating-linear-gradient(
        -55deg,
        transparent, transparent 18px,
        rgba(184,15,11,0.06) 18px, rgba(184,15,11,0.06) 36px
      );
      border-radius: 50%;
      pointer-events: none;
    }
    .estrutura-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
      position: relative; z-index: 2;
    }
    .estrutura-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 14px;
    }
    .estrutura-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px; font-weight: 700; line-height: 1.2;
      color: #fff; margin-bottom: 18px;
    }
    .estrutura-sub {
      font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.55);
      margin-bottom: 36px;
    }
    .unidades { display: flex; flex-direction: column; gap: 12px; }
    .unidade-card {
      display: flex; align-items: flex-start; gap: 14px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px; padding: 18px 20px;
      transition: background .2s;
    }
    .unidade-card:hover { background: rgba(255,255,255,0.08); }
    .unidade-icon {
      width: 38px; height: 38px; border-radius: 8px;
      background: rgba(184,15,11,0.15);
      display: flex; align-items: center; justify-content: center;
      color: #B80F0B; flex-shrink: 0;
    }
    .unidade-badge {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 3px;
    }
    .unidade-nome {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2;
    }
    .unidade-end {
      font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px;
    }
    .estrutura-nacional-badge {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 20px;
      font-size: 13px; color: rgba(255,255,255,0.45);
    }
    .estrutura-nacional-badge::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: #B80F0B; flex-shrink: 0;
    }
    .estrutura-mapa {
      border-radius: 14px; overflow: hidden;
      aspect-ratio: 1;
      position: relative;
    }
    .estrutura-mapa iframe {
      filter: invert(90%) hue-rotate(180deg);
      border-radius: 14px;
    }
    .unidade-card { cursor: pointer; }
    .unidade-card--ativo {
      background: rgba(184,15,11,0.1);
      border-color: rgba(184,15,11,0.3);
    }
    .unidade-card--ativo .unidade-icon {
      background: rgba(184,15,11,0.25);
    }
    .estrutura-mapa-placeholder {
      width: 100%; height: 100%; min-height: 360px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 14px; padding: 32px;
    }
    .estrutura-mapa-placeholder svg { color: rgba(255,255,255,0.15); }
    .estrutura-mapa-placeholder p {
      font-size: 12px; color: rgba(255,255,255,0.25);
      text-align: center; line-height: 1.5; font-style: italic;
    }

/* ══════════════════════════════════════════
       CTA FINAL
    ══════════════════════════════════════════ */
.cta-final {
      padding: 104px 0;
      text-align: center;
      background: #fff;
      position: relative;
    }
    .cta-final-inner {
      max-width: 640px; margin: 0 auto; padding: 0 32px;
    }
    .cta-final-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 14px;
    }
    .cta-final-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 36px; font-weight: 700; color: #0f0f0f;
      line-height: 1.2; margin-bottom: 18px;
    }
    .cta-final-sub {
      font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 40px;
    }
    .cta-final-btns {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    }

/* ══════════════════════════════════════════
       MOBILE
    ══════════════════════════════════════════ */
@media (max-width: 900px) {
      .nav-links, .nav-social { display: none; }
      .nav-hamburger { display: flex; }

      .emp-hero-title { font-size: 26px; }
      .emp-hero-chips { gap: 8px; }
      .emp-hero-chip { font-size: 11px; padding: 5px 11px; }

      .qs-inner { grid-template-columns: 1fr; gap: 32px; }
      .qs-img { min-height: unset; height: 220px; width: 100%; }
      .qs-title { font-size: 26px; }

      .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 20px; }

      .proposito-cards { grid-template-columns: 1fr; }
      .proposito-header { margin-bottom: 32px; }
      .proposito-title { font-size: 26px; }

      .estrutura-inner { grid-template-columns: 1fr; gap: 40px; }
      .estrutura-mapa { display: none; }
      .estrutura-title { font-size: 26px; }

      .cta-final-title { font-size: 26px; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
      .br-desktop { display: none; }
      .grupo-divider { display: none; }
      .grupo-logos { gap: 24px; flex-wrap: nowrap; justify-content: center; }
      .grupo-logo-img { height: 34px !important; }
    }

    @media (max-width: 480px) {
      .emp-hero { padding: 56px 0 64px; }
      .emp-hero-title { font-size: 22px; }
      .qs-section, .proposito-section, .cta-final { padding: 64px 0; }
      .estrutura-section { padding: 64px 0; }
    }


/* ══════════════════════════════════════════
   PAGE: SERVICOS
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
       HERO INTERNO
    ══════════════════════════════════════════ */
.hero {
      background: #0f0f0f;
      position: relative;
      overflow: hidden;
      padding: 80px 0 88px;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -80px;
      width: 520px; height: 520px;
      background: repeating-linear-gradient(
        -55deg,
        transparent, transparent 18px,
        rgba(184,15,11,0.07) 18px, rgba(184,15,11,0.07) 36px
      );
      border-radius: 50%;
      pointer-events: none;
      z-index: 2;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      position: relative; z-index: 3;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 1;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.08; pointer-events: none;
    }
    .hero-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 16px;
    }
    .hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 44px; font-weight: 700; line-height: 1.15;
      color: #fff; max-width: 760px; margin-bottom: 18px;
    }
    .hero .hero-sub {
      font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.55);
      max-width: 560px; margin-bottom: 28px;
    }
    .hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
    .hero-chip {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px; font-weight: 600;
      color: rgba(255,255,255,0.4);
      padding: 6px 14px; border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.1);
      white-space: nowrap;
    }

/* ══════════════════════════════════════════
       PADRÃO SEÇÕES DE SERVIÇO (split 50/50)
    ══════════════════════════════════════════ */
.srv-section {
      padding: 96px 0;
      position: relative; overflow: hidden;
    }
    .srv-section--gray { background: #f7f7f7; }
    .srv-section--dots::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, #d8d8d8 1px, transparent 1px);
      background-size: 28px 28px;
      z-index: 0; pointer-events: none;
    }
    .srv-section--dots::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(255,255,255,0.15) 30%, rgba(255,255,255,1) 68%);
      z-index: 0; pointer-events: none;
    }
    .srv-section--dots-inv::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, #d8d8d8 1px, transparent 1px);
      background-size: 28px 28px;
      z-index: 0; pointer-events: none;
    }
    .srv-section--dots-inv::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to left, rgba(247,247,247,0.15) 30%, rgba(247,247,247,1) 68%);
      z-index: 0; pointer-events: none;
    }
    .srv-inner {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
    }
    .srv-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 12px;
    }
    .srv-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 32px; font-weight: 700; line-height: 1.2;
      color: #0f0f0f; margin-bottom: 10px;
    }
    .srv-subtitle {
      font-size: 15px; font-weight: 600; color: #444; margin-bottom: 20px;
    }
    .srv-text {
      font-size: 15px; line-height: 1.75; color: #555; margin-bottom: 28px;
    }
    .srv-benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
    .srv-benefit {
      display: flex; align-items: flex-start; gap: 12px;
    }
    .srv-benefit-icon {
      width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
      background: rgba(184,15,11,0.07);
      display: flex; align-items: center; justify-content: center;
      color: #B80F0B; margin-top: 1px;
    }
    .srv-benefit-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 700; color: #0f0f0f; margin-bottom: 2px;
    }
    .srv-benefit-text { font-size: 13px; color: #666; line-height: 1.5; }
    .srv-img {
      border-radius: 14px; overflow: hidden;
      position: relative; background: #e8e8e8;
      height: 650px;
      align-self: center;
    }
    .srv-img img {
      width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block;
    }
    .srv-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
    .srv-tag {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 600;
      padding: 8px 16px; border-radius: 999px;
      background: #fff; color: #0f0f0f;
      border: 1.5px solid #e8e8e8;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    .srv-section--gray .srv-tag { background: #f0f0f0; border-color: #ddd; }

/* ══════════════════════════════════════════
       RECRUTAMENTO E SELEÇÃO
    ══════════════════════════════════════════ */
.rs-section {
      padding: 96px 0;
      position: relative; overflow: hidden;
    }
    .rs-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, #d8d8d8 1px, transparent 1px);
      background-size: 28px 28px;
      z-index: 0; pointer-events: none;
    }
    .rs-section::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.1) 30%, rgba(255,255,255,0.96) 80%);
      z-index: 0; pointer-events: none;
    }
    .rs-inner {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
    }
    .rs-header { text-align: center; margin-bottom: 56px; }
    .rs-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 12px;
    }
    .rs-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px; font-weight: 700; color: #0f0f0f; margin-bottom: 12px;
    }
    .rs-subtitle {
      font-size: 16px; color: #555; line-height: 1.65; max-width: 560px; margin: 0 auto 8px;
    }
    .rs-intro {
      font-size: 15px; color: #666; line-height: 1.7; max-width: 640px; margin: 0 auto;
    }
    .rs-steps {
      display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
      margin-bottom: 56px;
    }
    .rs-step {
      background: #fff; border: 1.5px solid #ececec; border-radius: 14px;
      padding: 28px 20px; text-align: center;
      transition: box-shadow .2s, border-color .2s;
    }
    .rs-step:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); border-color: #ddd; }
    .rs-step-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(184,15,11,0.07);
      display: flex; align-items: center; justify-content: center;
      color: #B80F0B; margin: 0 auto 16px;
    }
    .rs-step-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 6px;
    }
    .rs-step-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 700; color: #0f0f0f; line-height: 1.3;
    }

    /* Callout Call Center */
    .callout {
      background: #0f0f0f;
      border-radius: 16px;
      padding: 48px 56px;
      display: flex; align-items: center; gap: 48px;
    }
    .callout-icon {
      width: 72px; height: 72px; border-radius: 16px; flex-shrink: 0;
      background: rgba(184,15,11,0.2);
      display: flex; align-items: center; justify-content: center;
      color: #B80F0B;
    }
    .callout-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 10px;
    }
    .callout-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3;
    }
    .callout-text {
      font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55);
    }

/* ══════════════════════════════════════════
       CTA MASTER
    ══════════════════════════════════════════ */
.cta-master {
      background: #B80F0B;
      padding: 88px 0;
      position: relative; overflow: hidden;
    }
    .cta-master::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 480px; height: 480px;
      background: repeating-linear-gradient(
        -55deg,
        transparent, transparent 18px,
        rgba(255,255,255,0.04) 18px, rgba(255,255,255,0.04) 36px
      );
      border-radius: 50%;
      pointer-events: none;
    }
    .cta-master-inner {
      max-width: 760px; margin: 0 auto; padding: 0 32px;
      text-align: center; position: relative; z-index: 1;
    }
    .cta-master-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 16px;
    }
    .cta-master-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 36px; font-weight: 700; color: #fff;
      line-height: 1.2; margin-bottom: 32px;
    }
    .cta-master-btns {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    }
    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: #fff; color: #B80F0B;
      font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px;
      padding: 14px 28px; border-radius: 6px;
      text-decoration: none; letter-spacing: .02em;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
      transition: background .15s, box-shadow .15s;
      white-space: nowrap;
    }
    .btn-white:hover { background: #fef0f0; box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

/* ══════════════════════════════════════════
       MOBILE
    ══════════════════════════════════════════ */
@media (max-width: 900px) {
      .nav-links, .nav-social { display: none; }
      .nav-hamburger { display: flex; }

      .hero { padding: 56px 0 64px; }
      .hero-title { font-size: 26px; }
      .hero-chips { gap: 8px; }
      .hero-chip { font-size: 11px; padding: 5px 11px; }

      .srv-inner { grid-template-columns: 1fr; gap: 40px; }
      .srv-img { height: 260px; width: 100%; aspect-ratio: unset; order: -1; }
      .srv-section--dots-inv .srv-img { order: unset; }
      .srv-title { font-size: 26px; }
      .srv-section { padding: 64px 0; }

      .rs-section { padding: 64px 0; }
      .rs-title { font-size: 26px; }
      .rs-header { margin-bottom: 36px; }
      .rs-steps { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 36px; }

      .callout { flex-direction: column; align-items: flex-start; gap: 20px; padding: 32px 28px; }
      .callout-title { font-size: 18px; }

      .cta-master { padding: 64px 0; }
      .cta-master-title { font-size: 26px; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
      .br-desktop { display: none; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 22px; }
      .rs-steps { grid-template-columns: 1fr 1fr; }
      .callout { padding: 28px 20px; }
      .cta-master-title { font-size: 22px; }
    }


/* ══════════════════════════════════════════
   PAGE: VAGAS
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
       HERO INTERNO
    ══════════════════════════════════════════ */
.emp-hero {
      background: #0f0f0f;
      position: relative; overflow: hidden;
      padding: 80px 0 88px;
    }
    .emp-hero--compact { padding: 48px 0 56px; }
    .emp-hero::before {
      content: '';
      position: absolute; top: -60px; right: -80px;
      width: 520px; height: 520px;
      background: repeating-linear-gradient(
        -55deg, transparent, transparent 18px,
        rgba(184,15,11,0.07) 18px, rgba(184,15,11,0.07) 36px
      );
      border-radius: 50%; pointer-events: none; z-index: 2;
    }
    .emp-hero-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      position: relative; z-index: 3;
    }
    .emp-hero-bg {
      position: absolute; inset: 0; z-index: 1;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.08; pointer-events: none;
    }
    .emp-hero-h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 16px;
    }
    .emp-hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 44px; font-weight: 700; line-height: 1.15;
      color: #fff; max-width: 700px; margin-bottom: 20px;
    }
    .emp-hero-title span { color: #B80F0B; }
    .emp-hero-sub {
      font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 560px;
      margin-bottom: 36px;
    }
    .hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
       MURAL DE VAGAS
    ══════════════════════════════════════════ */
.vagas-section {
      background: #f7f7f7;
      padding: 96px 0;
    }
    .vagas-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
    }
    .vagas-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
    }
    .vagas-titulo h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px; font-weight: 700; color: #0f0f0f; line-height: 1.2; margin-bottom: 8px;
    }
    .vagas-titulo p { font-size: 15px; color: #666; max-width: 440px; line-height: 1.6; }
    .vagas-filtros { display: flex; gap: 8px; flex-wrap: wrap; }
    .filtro-btn {
      padding: 7px 16px; border-radius: 999px;
      border: 1.5px solid #ddd; background: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px; font-weight: 600; color: #555;
      cursor: pointer; transition: all .15s;
    }
    .filtro-btn:hover { border-color: #B80F0B; color: #B80F0B; }
    .filtro-btn.ativo { background: #0f0f0f; border-color: #0f0f0f; color: #fff; }

    /* grid de cards */
    .vagas-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-bottom: 40px;
    }
    .vaga-card {
      background: #fff; border-radius: 16px; overflow: hidden;
      display: flex; flex-direction: column;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: box-shadow .2s, transform .2s;
    }
    .vaga-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.11); transform: translateY(-3px); }
    .vaga-card-img {
      width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
    }
    .vaga-card-body {
      padding: 20px; flex: 1; display: flex; flex-direction: column;
    }
    .vaga-badges { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
    .badge-tipo {
      display: inline-block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
    }
    .badge-temporario { background: #fff0ee; color: #B80F0B; }
    .badge-fixo { background: #f0f0f0; color: #444; }
    .badge-urgente { background: #fff3e0; color: #e07000; }
    .vaga-titulo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px; font-weight: 700; color: #0f0f0f; margin-bottom: 6px; line-height: 1.3;
    }
    .vaga-local {
      font-size: 13px; color: #888;
      display: flex; align-items: center; gap: 5px; margin-bottom: 20px;
    }
    .vaga-area {
      font-size: 12px; color: #aaa; font-weight: 500; margin-bottom: 16px;
    }
    .vaga-cta { margin-top: auto; }
    .btn-vaga {
      display: block; width: 100%; text-align: center; padding: 11px;
      border-radius: 8px; border: 1.5px solid #e0e0e0; background: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 600; color: #0f0f0f;
      text-decoration: none; transition: background .15s, border-color .15s, color .15s;
    }
    .btn-vaga:hover { background: #B80F0B; border-color: #B80F0B; color: #fff; }

    /* rodapé do mural */
    .vagas-footer {
      text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px;
    }
    .btn-carregar {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 28px; border-radius: 8px;
      border: 1.5px solid #ddd; background: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px; font-weight: 600; color: #333;
      cursor: pointer; transition: all .15s;
    }
    .btn-carregar:hover { border-color: #0f0f0f; color: #0f0f0f; }
    .vagas-esgotadas {
      font-size: 14px; color: #aaa;
    }

/* ══════════════════════════════════════════
       BANCO DE TALENTOS (dark)
    ══════════════════════════════════════════ */
.talentos-section {
      background: #0f0f0f;
      padding: 96px 0;
      position: relative; overflow: hidden;
    }
    .talentos-section::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 500px; height: 500px;
      background: repeating-linear-gradient(
        -55deg, transparent, transparent 18px,
        rgba(184,15,11,0.06) 18px, rgba(184,15,11,0.06) 36px
      );
      border-radius: 50%; pointer-events: none;
    }
    .talentos-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      position: relative; z-index: 2;
    }
    .talentos-header { max-width: 680px; margin-bottom: 56px; }
    .talentos-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 14px;
    }
    .talentos-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 18px;
    }
    .talentos-sub {
      font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.75;
    }
    .talentos-areas {
      display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px;
    }
    .area-chip {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 999px; padding: 10px 18px;
      transition: background .2s, border-color .2s;
    }
    .area-chip:hover {
      background: rgba(184,15,11,0.1);
      border-color: rgba(184,15,11,0.3);
    }
    .area-chip-icon {
      color: #B80F0B; display: flex; align-items: center;
    }
    .area-chip-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
      white-space: nowrap;
    }
    .talentos-cta {
      display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    }
    .talentos-cta-note {
      font-size: 13px; color: rgba(255,255,255,0.35);
    }

/* ══════════════════════════════════════════
       FORMULÁRIO CANDIDATO
    ══════════════════════════════════════════ */
.form-section {
      background: #fff;
      padding: 96px 0;
      position: relative; overflow: hidden;
    }
    .form-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, #d8d8d8 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: 0.35; z-index: 0;
    }
    .form-section::after {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, #fff 0%, transparent 12%, transparent 88%, #fff 100%),
        linear-gradient(to right, #fff 0%, transparent 10%, transparent 90%, #fff 100%);
      z-index: 1;
    }
    .form-inner {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      display: grid; grid-template-columns: 1fr 1.1fr;
      gap: 80px; align-items: center;
    }
    .form-aside-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .16em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 16px;
    }
    .form-aside-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px; font-weight: 700; color: #0f0f0f; line-height: 1.2; margin-bottom: 16px;
    }
    .form-aside-sub {
      font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 40px;
    }
    .form-aside-steps { display: flex; flex-direction: column; gap: 20px; }
    .form-step { display: flex; align-items: flex-start; gap: 14px; }
    .form-step-num {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(184,15,11,0.08);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 700; color: #B80F0B;
      flex-shrink: 0;
    }
    .form-step-text {
      font-size: 14px; color: #444; line-height: 1.5; padding-top: 5px;
    }
    .form-step-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px; font-weight: 600; color: #222; margin-bottom: 2px;
    }
    .form-card {
      background: #fff; border: 1.5px solid #ebebeb;
      border-radius: 20px; padding: 36px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
    .form-card-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px; font-weight: 700; color: #0f0f0f; margin-bottom: 6px;
    }
    .form-card-sub {
      font-size: 14px; color: #666; margin-bottom: 28px; line-height: 1.6;
    }
    .form-fields { display: flex; flex-direction: column; gap: 16px; }
    .field-row { display: flex; flex-direction: column; gap: 16px; }
    .field-row-2 { flex-direction: row; gap: 16px; }
    .field-row-2 .field-group { flex: 1; }
    .field-group { display: flex; flex-direction: column; gap: 6px; }
    .field-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px; font-weight: 600; color: #444; letter-spacing: .02em;
    }
    .field-req { color: #ccc; margin-left: 2px; font-size: 11px; font-weight: 400; }
    .field-input {
      padding: 11px 14px; border: 1.5px solid #e5e5e5; border-radius: 8px;
      font-size: 14px; font-family: 'Inter', sans-serif; color: #0f0f0f;
      background: #fafafa; transition: border-color .15s, box-shadow .15s; outline: none; width: 100%;
    }
    .field-input:focus {
      border-color: #B80F0B; background: #fff;
      box-shadow: 0 0 0 3px rgba(184,15,11,0.08);
    }
    .field-select { appearance: none; cursor: pointer; }
    .field-upload {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 14px; border: 1.5px dashed #ddd; border-radius: 8px;
      font-size: 13px; color: #888; cursor: pointer;
      background: #fafafa; transition: border-color .15s;
    }
    .field-upload:hover { border-color: #B80F0B; color: #B80F0B; }

/* ══════════════════════════════════════════
       MOBILE
    ══════════════════════════════════════════ */
@media (max-width: 900px) {
      .nav-links, .nav-social { display: none; }
      .nav-hamburger { display: flex; }

      .emp-hero-title { font-size: 28px; }
      .emp-hero-sub { font-size: 14px; }
      .hero-ctas { gap: 16px; }
      .br-desktop { display: none; }

      .vagas-section { padding: 64px 0; }
      .vagas-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .vagas-titulo h2 { font-size: 26px; }
      .vagas-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .vaga-card-img { aspect-ratio: 4/3; }
      .vaga-local { display: none; }
      .vaga-card-body { padding: 14px; }
      .vaga-titulo { font-size: 14px; margin-bottom: 8px; }
      .badge-tipo { font-size: 9px; padding: 2px 8px; }
      .btn-vaga { font-size: 12px; padding: 9px; }

      .talentos-section { padding: 64px 0; }
      .talentos-title { font-size: 26px; }
      .talentos-header { margin-bottom: 36px; }
      .talentos-cta { flex-direction: column; align-items: flex-start; }

      .form-inner {
        grid-template-columns: 1fr;
        gap: 20px; padding: 0 20px;
      }
      .form-section { padding: 64px 0; }
      .form-aside-title { font-size: 26px; }
      .form-aside-sub { margin-bottom: 24px; }
      .form-aside-steps { display: none; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
    }

    @media (max-width: 480px) {
      .emp-hero { padding: 56px 0 64px; }
      .emp-hero-inner { padding: 0 20px; }
      .emp-hero-title { font-size: 22px; }
      .vagas-grid { grid-template-columns: 1fr; }
      .vagas-inner { padding: 0 20px; }
      .talentos-inner { padding: 0 20px; }
      .form-card { padding: 20px 16px; }
      .field-row-2 { flex-direction: column; }
      .nav-inner { padding: 0 20px; }
      .area-chip { padding: 8px 14px; }
      .area-chip-label { font-size: 12px; }
    }


/* ══════════════════════════════════════════
   PAGE: CONTATO
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
       HERO INTERNO
    ══════════════════════════════════════════ */
.emp-hero {
      background: #0f0f0f;
      position: relative;
      overflow: hidden;
      padding: 80px 0 88px;
    }
    .emp-hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -80px;
      width: 520px; height: 520px;
      background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 18px,
        rgba(184,15,11,0.07) 18px,
        rgba(184,15,11,0.07) 36px
      );
      border-radius: 50%;
      pointer-events: none;
      z-index: 2;
    }
    .emp-hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 3;
    }
    .emp-hero-bg {
      position: absolute; inset: 0; z-index: 1;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.08;
      pointer-events: none;
    }
    .emp-hero-h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B;
      margin-bottom: 16px;
    }
    .emp-hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 44px; font-weight: 700; line-height: 1.15;
      color: #fff; max-width: 760px; margin-bottom: 20px;
    }
    .emp-hero-title span { color: #B80F0B; }
    .emp-hero-sub {
      font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7;
      max-width: 600px;
    }

/* ══════════════════════════════════════════
       SPLIT: AUTORIDADE + FORMULÁRIO
    ══════════════════════════════════════════ */
.form-section {
      background: #fff;
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }
    .form-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, #d8d8d8 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: 0.35;
      z-index: 0;
    }
    .form-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, #fff 0%, transparent 12%, transparent 88%, #fff 100%),
        linear-gradient(to right,  #fff 0%, transparent 10%, transparent 90%, #fff 100%);
      z-index: 1;
    }
    .form-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: center;
    }

    /* aside esquerdo */
    .form-aside-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #B80F0B;
      margin-bottom: 16px;
    }
    .form-aside-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: #0f0f0f;
      line-height: 1.2;
      margin-bottom: 28px;
    }
    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .check-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 500;
      color: #222;
      line-height: 1.4;
    }
    .check-icon {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: rgba(184,15,11,0.08);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: #B80F0B;
    }

    /* card do formulário */
    .form-card {
      background: #fff;
      border: 1.5px solid #ebebeb;
      border-radius: 20px;
      padding: 36px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }

    /* overlay grid: ambos os forms sempre no DOM, mesma célula */
    .form-subtitle-wrap,
    .form-panels {
      display: grid;
    }
    .form-subtitle-wrap > *,
    .form-panels > form {
      grid-area: 1 / 1;
    }
    .form-hidden {
      visibility: hidden;
      pointer-events: none;
    }

    /* toggle candidato/empresa */
    .form-toggle {
      display: flex;
      background: #f5f5f5;
      border-radius: 10px;
      padding: 4px;
      gap: 4px;
      margin-bottom: 24px;
    }
    .toggle-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 10px 16px;
      border-radius: 7px;
      border: none;
      background: transparent;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #888;
      cursor: pointer;
      transition: all .15s;
    }
    .toggle-btn.toggle-ativo {
      background: #fff;
      color: #0f0f0f;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }
    .form-subtitle {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    /* campos */
    .form-fields { display: flex; flex-direction: column; gap: 16px; }
    .field-row { display: flex; flex-direction: column; gap: 16px; }
    .field-row-2 { flex-direction: row; gap: 16px; }
    .field-row-2 .field-group { flex: 1; }
    .field-group { display: flex; flex-direction: column; gap: 6px; }
    .field-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: #444;
      letter-spacing: .02em;
    }
    .field-req { color: #ccc; margin-left: 2px; font-size: 11px; font-weight: 400; }
    .field-input {
      padding: 11px 14px;
      border: 1.5px solid #e5e5e5;
      border-radius: 8px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      color: #0f0f0f;
      background: #fafafa;
      transition: border-color .15s, box-shadow .15s;
      outline: none;
      width: 100%;
    }
    .field-input:focus {
      border-color: #B80F0B;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(184,15,11,0.08);
    }
    .field-select { appearance: none; cursor: pointer; }
    .field-upload {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border: 1.5px dashed #ddd;
      border-radius: 8px;
      font-size: 13px;
      color: #888;
      cursor: pointer;
      background: #fafafa;
      transition: border-color .15s;
    }
    .field-upload:hover { border-color: #B80F0B; color: #B80F0B; }
    .field-chips {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
    }
    .chip { cursor: pointer; }
    .chip input { display: none; }
    .chip span {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1.5px solid #e0e0e0;
      font-size: 13px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 500;
      color: #555;
      white-space: nowrap;
      transition: all .15s;
    }
    .chip input:checked + span {
      background: #0f0f0f;
      border-color: #0f0f0f;
      color: #fff;
    }
    .chip:hover span { border-color: #B80F0B; color: #B80F0B; }

/* ══════════════════════════════════════════
       ESTRUTURA NACIONAL (seção mapa)
    ══════════════════════════════════════════ */
.estrutura-section {
      background: #0f0f0f;
      padding: 96px 0;
      position: relative; overflow: hidden;
    }
    .estrutura-section::before {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 600px; height: 600px;
      background: repeating-linear-gradient(
        -55deg,
        transparent, transparent 18px,
        rgba(184,15,11,0.06) 18px, rgba(184,15,11,0.06) 36px
      );
      border-radius: 50%;
      pointer-events: none;
    }
    .estrutura-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
      position: relative; z-index: 2;
    }
    .estrutura-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 14px;
    }
    .estrutura-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px; font-weight: 700; line-height: 1.2;
      color: #fff; margin-bottom: 18px;
    }
    .estrutura-sub {
      font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.55);
      margin-bottom: 36px;
    }
    .unidades { display: flex; flex-direction: column; gap: 12px; }
    .unidade-card {
      display: flex; align-items: flex-start; gap: 14px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px; padding: 18px 20px;
      transition: background .2s;
      cursor: pointer;
    }
    .unidade-card:hover { background: rgba(255,255,255,0.08); }
    .unidade-icon {
      width: 38px; height: 38px; border-radius: 8px;
      background: rgba(184,15,11,0.15);
      display: flex; align-items: center; justify-content: center;
      color: #B80F0B; flex-shrink: 0;
    }
    .unidade-badge {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 3px;
    }
    .unidade-nome {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2;
    }
    .unidade-end {
      font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px;
    }
    .estrutura-nacional-badge {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 20px;
      font-size: 13px; color: rgba(255,255,255,0.45);
    }
    .estrutura-nacional-badge::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: #B80F0B; flex-shrink: 0;
    }
    .estrutura-mapa {
      border-radius: 14px; overflow: hidden;
      aspect-ratio: 1;
      position: relative;
    }
    .estrutura-mapa iframe {
      filter: invert(90%) hue-rotate(180deg);
      border-radius: 14px;
    }
    .unidade-card--ativo {
      background: rgba(184,15,11,0.1);
      border-color: rgba(184,15,11,0.3);
    }
    .unidade-card--ativo .unidade-icon {
      background: rgba(184,15,11,0.25);
    }

/* ══════════════════════════════════════════
       INFOS DE CONTATO
    ══════════════════════════════════════════ */
.contato-info-section {
      background: #fff;
      padding: 80px 0;
    }
    .contato-info-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px;
    }
    .info-col-eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 20px;
    }
    .info-col-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px; font-weight: 700; color: #0f0f0f;
      margin-bottom: 24px; line-height: 1.2;
    }
    .info-contact-list {
      list-style: none;
      display: flex; flex-direction: column; gap: 20px;
    }
    .info-contact-item {
      display: flex; gap: 14px; align-items: flex-start;
    }
    .info-contact-icon {
      width: 40px; height: 40px; border-radius: 9px;
      background: #f5f5f5;
      display: flex; align-items: center; justify-content: center;
      color: #B80F0B; flex-shrink: 0;
    }
    .info-contact-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: #aaa;
      display: block; margin-bottom: 4px;
    }
    .info-contact-val {
      font-size: 14px; color: #333; line-height: 1.6; font-weight: 500;
    }
    .info-contact-val a {
      color: #333; text-decoration: none; transition: color .15s;
    }
    .info-contact-val a:hover { color: #B80F0B; }
    .info-unidades-list {
      list-style: none;
      display: flex; flex-direction: column; gap: 16px;
    }
    .info-unidade-item {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 16px 20px;
      border: 1.5px solid #f0f0f0;
      border-radius: 10px;
      transition: border-color .15s;
    }
    .info-unidade-item:hover { border-color: #ddd; }
    .info-unidade-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #B80F0B; flex-shrink: 0; margin-top: 6px;
    }
    .info-unidade-badge {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: #B80F0B; margin-bottom: 3px;
    }
    .info-unidade-nome {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px; font-weight: 700; color: #0f0f0f; line-height: 1.2;
    }
    .info-unidade-end {
      font-size: 13px; color: #888; margin-top: 2px;
    }

/* ══════════════════════════════════════════
       MOBILE
    ══════════════════════════════════════════ */
@media (max-width: 900px) {
      .nav-links, .nav-social { display: none; }
      .nav-hamburger { display: flex; }

      .emp-hero-title { font-size: 28px; }
      .emp-hero-sub { font-size: 14px; }

      .form-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
      }
      .form-section { padding: 64px 0; }
      .form-aside-title { font-size: 26px; text-align: center; }
      .form-aside-eyebrow { text-align: center; }
      .check-list { align-items: flex-start; }

      .estrutura-inner { grid-template-columns: 1fr; gap: 40px; }
      .estrutura-mapa { display: none; }
      .estrutura-title { font-size: 26px; }

      .contato-info-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 20px;
      }
      .contato-info-section { padding: 64px 0; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
      .br-desktop { display: none; }
    }

    @media (max-width: 480px) {
      .emp-hero { padding: 56px 0 64px; }
      .emp-hero-inner { padding: 0 20px; }
      .emp-hero-title { font-size: 22px; }
      .form-card { padding: 20px 16px; }
      .field-row-2 { flex-direction: column; }
      .field-chips { flex-wrap: wrap; }
      .nav-inner { padding: 0 20px; }
    }


/* ══════════════════════════════════════════
   PAGE: BLOG-LISTING
══════════════════════════════════════════ */

/* HERO */
.emp-hero { background: #0f0f0f; position: relative; overflow: hidden; padding: 40px 0 48px; }
    .emp-hero::before { content: ''; position: absolute; top: -60px; right: -80px; width: 520px; height: 520px; background: repeating-linear-gradient(-55deg, transparent, transparent 18px, rgba(184,15,11,0.07) 18px, rgba(184,15,11,0.07) 36px); border-radius: 50%; pointer-events: none; z-index: 2; }
    .emp-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 3; }
    .emp-hero-bg { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; opacity: 0.08; pointer-events: none; }
    .emp-hero-h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B80F0B; margin-bottom: 16px; }
    .emp-hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 700; line-height: 1.15; color: #fff; max-width: 680px; margin-bottom: 20px; }
    .emp-hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 540px; }

/* BLOG */
.blog-section { background: #f7f7f7; padding: 80px 0 96px; }
    .blog-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ARTIGO DESTAQUE */
.post-featured {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; background: #fff;
      border: 1.5px solid #ececec; border-radius: 16px; overflow: hidden;
      margin-bottom: 48px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: box-shadow .2s;
    }
    .post-featured:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
    .post-featured-img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
    .post-featured-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
    .post-cat {
      display: inline-block; align-self: flex-start;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: #B80F0B; background: rgba(184,15,11,0.07);
      padding: 4px 12px; border-radius: 999px; margin-bottom: 16px;
    }
    .post-featured-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 26px; font-weight: 700; color: #0f0f0f; line-height: 1.25; margin-bottom: 14px;
    }
    .post-featured-title a { text-decoration: none; color: inherit; transition: color .15s; }
    .post-featured-title a:hover { color: #B80F0B; }
    .post-excerpt { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 28px; }
    .post-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: #aaa; margin-bottom: 28px; }
    .post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: #ddd; }

/* GRADE DE POSTS */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
    .post-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1.5px solid #ececec; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
    .post-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-2px); }
    .post-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #ebebeb; }
    .post-card-img-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #e8e8e8, #f5f5f5); display: flex; align-items: center; justify-content: center; }
    .post-card-img-placeholder svg { color: #ccc; }
    .post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
    .post-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: #0f0f0f; margin-bottom: 10px; line-height: 1.3; }
    .post-card-title a { text-decoration: none; color: inherit; transition: color .15s; }
    .post-card-title a:hover { color: #B80F0B; }
    .post-card-excerpt { font-size: 13px; color: #777; line-height: 1.65; margin-bottom: 18px; flex: 1; }
    .post-card-meta { font-size: 12px; color: #bbb; display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; border-top: 1px solid #f0f0f0; padding-top: 14px; }
    .post-card-meta-dot { display: none; }
    .post-read-link { display: inline-flex; align-items: center; gap: 4px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 600; color: #B80F0B; text-decoration: none; flex-shrink: 0; }
    .post-read-link:hover { opacity: .8; }

/* PAGINAÇÃO */
.blog-footer { display: flex; justify-content: center; gap: 8px; }
    .pag-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; border: 1.5px solid #ddd; background: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; color: #555; cursor: pointer; text-decoration: none; transition: all .15s; }
    .pag-btn:hover { border-color: #0f0f0f; color: #0f0f0f; }
    .pag-btn.ativo { background: #0f0f0f; border-color: #0f0f0f; color: #fff; }
    .pag-btn-wide { width: auto; padding: 0 14px; gap: 6px; }

/* CTA DARK */
.blog-cta-section { background: #0f0f0f; padding: 80px 0; position: relative; overflow: hidden; }
    .blog-cta-section::before { content: ''; position: absolute; top: -60px; right: -60px; width: 480px; height: 480px; background: repeating-linear-gradient(-55deg, transparent, transparent 18px, rgba(184,15,11,0.06) 18px, rgba(184,15,11,0.06) 36px); border-radius: 50%; pointer-events: none; }
    .blog-cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .blog-cta-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B80F0B; margin-bottom: 14px; }
    .blog-cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 30px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
    .blog-cta-sub { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; }
    .blog-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-ghost { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: 6px; text-decoration: none; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.3); transition: box-shadow .15s, color .15s; white-space: nowrap; }
    .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.7); color: #fff; }


/* ══════════════════════════════════════════
   PAGE: BLOG-ARTIGO
══════════════════════════════════════════ */

/* HERO DO ARTIGO */
.artigo-hero {
      background: #0f0f0f;
      padding: 40px 0 52px;
      position: relative; overflow: hidden;
    }
    .artigo-hero::before { content: ''; position: absolute; top: -60px; right: -80px; width: 480px; height: 480px; background: repeating-linear-gradient(-55deg, transparent, transparent 18px, rgba(184,15,11,0.07) 18px, rgba(184,15,11,0.07) 36px); border-radius: 50%; pointer-events: none; z-index: 1; }
    .artigo-hero-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 28px; }
    .breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color .15s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.7); }
    .breadcrumb-sep { color: rgba(255,255,255,0.15); }
    .artigo-cat { display: inline-block; align-self: flex-start; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #B80F0B; background: rgba(184,15,11,0.15); padding: 4px 12px; border-radius: 999px; margin-bottom: 20px; }
    .artigo-hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 38px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 20px; }
    .artigo-hero-excerpt { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px; }
    .artigo-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .artigo-meta-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(184,15,11,0.2); display: flex; align-items: center; justify-content: center; color: #B80F0B; flex-shrink: 0; }
    .artigo-meta-info { font-size: 13px; color: rgba(255,255,255,0.45); }
    .artigo-meta-info strong { color: rgba(255,255,255,0.7); font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; display: block; margin-bottom: 2px; }
    .artigo-meta-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }
    .artigo-meta-stat { font-size: 12px; color: rgba(255,255,255,0.35); }

/* CORPO DO ARTIGO */
.artigo-section { background: #fff; padding: 72px 0 0; }
    .artigo-inner { max-width: 740px; margin: 0 auto; padding: 0 32px; }
    .artigo-img-capa { width: 100%; border-radius: 14px; object-fit: cover; aspect-ratio: 16/9; display: block; margin-bottom: 48px; }

/* TIPOGRAFIA DO ARTIGO */
.artigo-body { font-size: 17px; line-height: 1.8; color: #333; }
    .artigo-body h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 700; color: #0f0f0f; margin: 40px 0 16px; line-height: 1.25; }
    .artigo-body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: #0f0f0f; margin: 32px 0 12px; }
    .artigo-body p { margin-bottom: 20px; }
    .artigo-body ul, .artigo-body ol { margin: 0 0 20px 24px; }
    .artigo-body li { margin-bottom: 8px; }
    .artigo-body strong { color: #111; font-weight: 600; }
    .artigo-body blockquote { border-left: 3px solid #B80F0B; padding: 16px 24px; margin: 32px 0; background: rgba(184,15,11,0.04); border-radius: 0 8px 8px 0; font-size: 18px; font-style: italic; color: #555; line-height: 1.65; }
    .artigo-body a { color: #B80F0B; text-decoration: underline; text-underline-offset: 3px; }

/* COMPARTILHAR + TAGS ABAIXO DO ARTIGO */
.artigo-footer { border-top: 1px solid #f0f0f0; margin-top: 48px; padding-top: 32px; padding-bottom: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
    .artigo-share { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #888; }
    .share-btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; background: #f5f5f5; color: #444; text-decoration: none; transition: background .15s, color .15s; }
    .share-btn:hover { background: #0f0f0f; color: #fff; }
    .artigo-tags { display: flex; gap: 8px; flex-wrap: wrap; }
    .artigo-tag { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 600; color: #666; background: #f5f5f5; padding: 4px 12px; border-radius: 999px; text-decoration: none; transition: background .15s, color .15s; }
    .artigo-tag:hover { background: #0f0f0f; color: #fff; }

/* SIDEBAR DO ARTIGO */
.artigo-sidebar { position: sticky; top: 80px; }
    .sidebar-card { background: #f7f7f7; border-radius: 14px; padding: 24px; margin-bottom: 20px; }
    .sidebar-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #aaa; margin-bottom: 16px; }
    .toc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .toc-list a { font-size: 13px; color: #555; text-decoration: none; line-height: 1.4; transition: color .15s; display: flex; gap: 8px; align-items: flex-start; }
    .toc-list a:hover { color: #B80F0B; }
    .toc-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; color: #B80F0B; flex-shrink: 0; margin-top: 1px; }
    .sidebar-cta-card { background: #0f0f0f; border-radius: 14px; padding: 24px; }
    .sidebar-cta-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #B80F0B; margin-bottom: 10px; }
    .sidebar-cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
    .sidebar-cta-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; line-height: 1.5; }

/* COMENTÁRIOS */
.comments-section { background: #f7f7f7; padding: 72px 0 80px; }
    .comments-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; }
    .comments-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 700; color: #0f0f0f; margin-bottom: 8px; }
    .comments-sub { font-size: 14px; color: #888; margin-bottom: 32px; }
    /* Comentários nativos WP */
    .fp-comments-list { list-style: none; margin: 28px 0 40px; display: flex; flex-direction: column; gap: 20px; }
    .fp-comment { background: #fff; border: 1.5px solid #ececec; border-radius: 12px; padding: 20px 24px; }
    .fp-comment-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
    .fp-comment-avatar { border-radius: 50%; flex-shrink: 0; }
    .fp-comment-author { display: block; font-size: 14px; font-weight: 700; color: #0f0f0f; }
    .fp-comment-date { font-size: 12px; color: #aaa; }
    .fp-comment-body { font-size: 14px; color: #444; line-height: 1.7; }
    .fp-comment-body p { margin-bottom: 8px; }
    .fp-comment-pending { font-size: 13px; color: #888; font-style: italic; }
    .fp-comment-pagination { display: flex; gap: 8px; margin-top: 20px; }
    .fp-comment-pagination a { font-size: 13px; color: #B80F0B; text-decoration: none; font-weight: 600; }

    .fp-comment-form-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: #0f0f0f; margin-bottom: 20px; padding-top: 8px; border-top: 1.5px solid #ececec; }
    .fp-comment-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .fp-comment-field-wrap { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
    .fp-comment-label { font-size: 12px; font-weight: 600; color: #555; }
    .fp-comment-input, .fp-comment-textarea { border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 10px 14px; font-size: 14px; font-family: inherit; color: #0f0f0f; width: 100%; resize: vertical; }
    .fp-comment-input:focus, .fp-comment-textarea:focus { outline: none; border-color: #B80F0B; }
    .fp-comment-textarea { margin-bottom: 16px; }
    .fp-comment-submit { background: #B80F0B; color: #fff; border: none; border-radius: 8px; padding: 11px 24px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .15s; }
    .fp-comment-submit:hover { background: #9a0c09; }
    #respond { margin-top: 8px; }
    .logged-in-as { font-size: 13px; color: #888; margin-bottom: 16px; }
    .logged-in-as a { color: #B80F0B; }

/* MAIS ARTIGOS */
.mais-artigos-section { background: #fff; padding: 72px 0 80px; }
    .mais-artigos-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
    .mais-artigos-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
    .mais-artigos-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 700; color: #0f0f0f; }
    .btn-link { display: inline-flex; align-items: center; gap: 6px; color: #B80F0B; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 13px; text-decoration: none; border-bottom: 1.5px solid transparent; padding-bottom: 1px; transition: border-color .15s; }
    .btn-link:hover { border-bottom-color: #B80F0B; }
    .mais-artigos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .post-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1.5px solid #ececec; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
    .post-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-2px); }
    .post-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #ebebeb; }
    .post-card-img-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #e8e8e8, #f5f5f5); display: flex; align-items: center; justify-content: center; }
    .post-card-img-placeholder svg { color: #ccc; }
    .post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
    .post-cat { display: inline-block; align-self: flex-start; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #B80F0B; background: rgba(184,15,11,0.07); padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
    .post-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: #0f0f0f; margin-bottom: 8px; line-height: 1.3; }
    .post-card-title a { text-decoration: none; color: inherit; transition: color .15s; }
    .post-card-title a:hover { color: #B80F0B; }
    .post-card-meta { font-size: 11px; color: #bbb; display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 14px; }
    .post-card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: #ddd; }


/* ══════════════════════════════════════════
   PAGE: OBRIGADO
══════════════════════════════════════════ */

    .obrigado-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 80px 32px; }
    .obrigado-inner { max-width: 580px; text-align: center; }
    .obrigado-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(184,15,11,0.08); border: 1.5px solid rgba(184,15,11,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; color: #B80F0B; }
    .obrigado-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B80F0B; margin-bottom: 16px; }
    .obrigado-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 700; color: #0f0f0f; line-height: 1.15; margin-bottom: 20px; }
    .obrigado-sub { font-size: 16px; color: #666; line-height: 1.75; margin-bottom: 40px; }
    .obrigado-steps { background: #fff; border: 1px solid #ececec; border-radius: 14px; padding: 28px 32px; margin-bottom: 40px; text-align: left; display: flex; flex-direction: column; gap: 20px; }
    .obrigado-step { display: flex; gap: 16px; align-items: flex-start; }
    .step-dot { width: 28px; height: 28px; border-radius: 50%; background: rgba(184,15,11,0.08); border: 1.5px solid rgba(184,15,11,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; color: #B80F0B; margin-top: 1px; }
    .step-text { font-size: 14px; color: #666; line-height: 1.6; }
    .step-text strong { color: #222; font-weight: 600; display: block; margin-bottom: 2px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; }
    .obrigado-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ══════════════════════════════════════════
   PAGE: POLITICA-PRIVACIDADE
══════════════════════════════════════════ */

    .page-hero { background: #0f0f0f; padding: 64px 0 72px; position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; top: -60px; right: -80px; width: 480px; height: 480px; background: repeating-linear-gradient(-55deg, transparent, transparent 18px, rgba(184,15,11,0.07) 18px, rgba(184,15,11,0.07) 36px); border-radius: 50%; pointer-events: none; z-index: 1; }
    .page-hero-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
    .page-hero-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B80F0B; margin-bottom: 16px; }
    .page-hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
    .page-hero-meta { font-size: 13px; color: rgba(255,255,255,0.3); }
    .doc-section { padding: 72px 0 96px; }
    .doc-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 200px; gap: 64px; align-items: start; }
    .doc-body { font-size: 16px; line-height: 1.8; color: #444; }
    .doc-body h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: #0f0f0f; margin: 44px 0 14px; padding-top: 44px; border-top: 1px solid #f0f0f0; line-height: 1.25; }
    .doc-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
    .doc-body p { margin-bottom: 16px; }
    .doc-body ul { margin: 0 0 16px 22px; }
    .doc-body li { margin-bottom: 6px; }
    .doc-body strong { color: #111; font-weight: 600; }
    .doc-body a { color: #B80F0B; }
    .doc-sidebar { position: sticky; top: 80px; }
    .doc-toc { background: #f7f7f7; border-radius: 12px; padding: 20px; }
    .doc-toc-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #aaa; margin-bottom: 14px; }
    .doc-toc ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .doc-toc a { font-size: 12px; color: #666; text-decoration: none; line-height: 1.4; transition: color .15s; }
    .doc-toc a:hover { color: #B80F0B; }
    .lgpd-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(184,15,11,0.08); border: 1px solid rgba(184,15,11,0.15); color: #B80F0B; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 32px; }


/* ══════════════════════════════════════════
   PAGE: TERMOS-DE-USO
══════════════════════════════════════════ */

    .page-hero { background: #0f0f0f; padding: 64px 0 72px; position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; top: -60px; left: -80px; width: 480px; height: 480px; background: repeating-linear-gradient(55deg, transparent, transparent 18px, rgba(184,15,11,0.07) 18px, rgba(184,15,11,0.07) 36px); border-radius: 50%; pointer-events: none; z-index: 1; }
    .page-hero-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
    .page-hero-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B80F0B; margin-bottom: 16px; }
    .page-hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
    .page-hero-meta { font-size: 13px; color: rgba(255,255,255,0.3); }
    .doc-section { padding: 72px 0 96px; }
    .doc-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 200px; gap: 64px; align-items: start; }
    .doc-body { font-size: 16px; line-height: 1.8; color: #444; }
    .doc-body h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: #0f0f0f; margin: 44px 0 14px; padding-top: 44px; border-top: 1px solid #f0f0f0; line-height: 1.25; }
    .doc-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
    .doc-body p { margin-bottom: 16px; }
    .doc-body ul { margin: 0 0 16px 22px; }
    .doc-body li { margin-bottom: 6px; }
    .doc-body strong { color: #111; font-weight: 600; }
    .doc-body a { color: #B80F0B; }
    .doc-sidebar { position: sticky; top: 80px; }
    .doc-toc { background: #f7f7f7; border-radius: 12px; padding: 20px; }
    .doc-toc-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #aaa; margin-bottom: 14px; }
    .doc-toc ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .doc-toc a { font-size: 12px; color: #666; text-decoration: none; line-height: 1.4; transition: color .15s; }
    .doc-toc a:hover { color: #B80F0B; }


/* ══════════════════════════════════════════
   PAGE: 404
══════════════════════════════════════════ */

    .notfound-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 80px 32px; position: relative; overflow: hidden; }
    .notfound-main::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(184,15,11,0.08) 0%, transparent 65%); pointer-events: none; }
    .notfound-main::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg, transparent, transparent 28px, rgba(255,255,255,0.015) 28px, rgba(255,255,255,0.015) 56px); pointer-events: none; }
    .notfound-inner { max-width: 560px; text-align: center; position: relative; z-index: 2; }
    .notfound-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 120px; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(184,15,11,0.4); letter-spacing: -4px; margin-bottom: 8px; }
    .notfound-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B80F0B; margin-bottom: 16px; }
    .notfound-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
    .notfound-sub { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 40px; }
    .notfound-links { display: flex; flex-direction: column; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px 24px; margin-bottom: 36px; text-align: left; }
    .notfound-links-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
    .notfound-link { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color .15s; }
    .notfound-link:last-child { border-bottom: none; }
    .notfound-link:hover { color: #fff; }
    .notfound-link svg { color: #B80F0B; flex-shrink: 0; }
    .notfound-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* OBRIGADO - responsive */
@media (max-width: 600px) {
      .obrigado-main { padding: 60px 20px; }
      .obrigado-title { font-size: 28px; }
      .nav-links { display: none; }
      .nav-inner { padding: 0 20px; }
      .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
      .obrigado-steps { padding: 24px 20px; }
    }

/* POLITICA-PRIVACIDADE - responsive */
@media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-inner, .page-hero-inner, .doc-inner { padding: 0 20px; }
      .doc-inner { grid-template-columns: 1fr; gap: 0; }
      .doc-sidebar { display: none; }
      .page-hero-title { font-size: 28px; }
      .footer-bottom-simple { flex-direction: column; gap: 12px; align-items: center; text-align: center; }
    }

/* TERMOS-DE-USO - responsive */
@media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-inner, .page-hero-inner, .doc-inner { padding: 0 20px; }
      .doc-inner { grid-template-columns: 1fr; gap: 0; }
      .doc-sidebar { display: none; }
      .page-hero-title { font-size: 28px; }
      .footer-bottom-simple { flex-direction: column; gap: 12px; align-items: center; text-align: center; }
    }

/* 404 - responsive */
@media (max-width: 600px) {
      .notfound-main { padding: 60px 20px; }
      .notfound-num { font-size: 80px; }
      .notfound-title { font-size: 24px; }
      .nav-links { display: none; }
      .nav-inner { padding: 0 20px; }
      .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
    }

/* EMPRESA - responsive */
@media (max-width: 900px) {
      .nav-links, .nav-social { display: none; }
      .nav-hamburger { display: flex; }

      .emp-hero-title { font-size: 26px; }
      .emp-hero-chips { gap: 8px; }
      .emp-hero-chip { font-size: 11px; padding: 5px 11px; }

      .qs-inner { grid-template-columns: 1fr; gap: 32px; }
      .qs-img { min-height: unset; height: 220px; width: 100%; }
      .qs-title { font-size: 26px; }

      .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 20px; }

      .proposito-cards { grid-template-columns: 1fr; }
      .proposito-header { margin-bottom: 32px; }
      .proposito-title { font-size: 26px; }

      .estrutura-inner { grid-template-columns: 1fr; gap: 40px; }
      .estrutura-mapa { display: none; }
      .estrutura-title { font-size: 26px; }

      .cta-final-title { font-size: 26px; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
      .br-desktop { display: none; }
      .grupo-divider { display: none; }
      .grupo-logos { gap: 24px; flex-wrap: nowrap; justify-content: center; }
      .grupo-logo-img { height: 34px !important; }
    }
@media (max-width: 480px) {
      .emp-hero { padding: 56px 0 64px; }
      .emp-hero-title { font-size: 22px; }
      .qs-section, .proposito-section, .cta-final { padding: 64px 0; }
      .estrutura-section { padding: 64px 0; }
    }

/* SERVICOS - responsive */
@media (max-width: 900px) {
      .nav-links, .nav-social { display: none; }
      .nav-hamburger { display: flex; }

      .hero { padding: 56px 0 64px; }
      .hero-title { font-size: 26px; }
      .hero-chips { gap: 8px; }
      .hero-chip { font-size: 11px; padding: 5px 11px; }

      .srv-inner { grid-template-columns: 1fr; gap: 40px; }
      .srv-img { height: 260px; width: 100%; aspect-ratio: unset; order: -1; }
      .srv-section--dots-inv .srv-img { order: unset; }
      .srv-title { font-size: 26px; }
      .srv-section { padding: 64px 0; }

      .rs-section { padding: 64px 0; }
      .rs-title { font-size: 26px; }
      .rs-header { margin-bottom: 36px; }
      .rs-steps { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 36px; }

      .callout { flex-direction: column; align-items: flex-start; gap: 20px; padding: 32px 28px; }
      .callout-title { font-size: 18px; }

      .cta-master { padding: 64px 0; }
      .cta-master-title { font-size: 26px; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
      .br-desktop { display: none; }
    }
@media (max-width: 480px) {
      .hero-title { font-size: 22px; }
      .rs-steps { grid-template-columns: 1fr 1fr; }
      .callout { padding: 28px 20px; }
      .cta-master-title { font-size: 22px; }
    }

/* VAGAS - responsive */
@media (max-width: 900px) {
      .nav-links, .nav-social { display: none; }
      .nav-hamburger { display: flex; }

      .emp-hero-title { font-size: 28px; }
      .emp-hero-sub { font-size: 14px; }
      .hero-ctas { gap: 16px; }
      .br-desktop { display: none; }

      .vagas-section { padding: 64px 0; }
      .vagas-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .vagas-titulo h2 { font-size: 26px; }
      .vagas-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .vaga-card-img { aspect-ratio: 4/3; }
      .vaga-local { display: none; }
      .vaga-card-body { padding: 14px; }
      .vaga-titulo { font-size: 14px; margin-bottom: 8px; }
      .badge-tipo { font-size: 9px; padding: 2px 8px; }
      .btn-vaga { font-size: 12px; padding: 9px; }

      .talentos-section { padding: 64px 0; }
      .talentos-title { font-size: 26px; }
      .talentos-header { margin-bottom: 36px; }
      .talentos-cta { flex-direction: column; align-items: flex-start; }

      .form-inner {
        grid-template-columns: 1fr;
        gap: 20px; padding: 0 20px;
      }
      .form-section { padding: 64px 0; }
      .form-aside-title { font-size: 26px; }
      .form-aside-sub { margin-bottom: 24px; }
      .form-aside-steps { display: none; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
    }
@media (max-width: 480px) {
      .emp-hero { padding: 56px 0 64px; }
      .emp-hero-inner { padding: 0 20px; }
      .emp-hero-title { font-size: 22px; }
      .vagas-grid { grid-template-columns: 1fr; }
      .vagas-inner { padding: 0 20px; }
      .talentos-inner { padding: 0 20px; }
      .form-card { padding: 20px 16px; }
      .field-row-2 { flex-direction: column; }
      .nav-inner { padding: 0 20px; }
      .area-chip { padding: 8px 14px; }
      .area-chip-label { font-size: 12px; }
    }

/* CONTATO - responsive */
@media (max-width: 900px) {
      .nav-links, .nav-social { display: none; }
      .nav-hamburger { display: flex; }

      .emp-hero-title { font-size: 28px; }
      .emp-hero-sub { font-size: 14px; }

      .form-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
      }
      .form-section { padding: 64px 0; }
      .form-aside-title { font-size: 26px; text-align: center; }
      .form-aside-eyebrow { text-align: center; }
      .check-list { align-items: flex-start; }

      .estrutura-inner { grid-template-columns: 1fr; gap: 40px; }
      .estrutura-mapa { display: none; }
      .estrutura-title { font-size: 26px; }

      .contato-info-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 20px;
      }
      .contato-info-section { padding: 64px 0; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
      .br-desktop { display: none; }
    }
@media (max-width: 480px) {
      .emp-hero { padding: 56px 0 64px; }
      .emp-hero-inner { padding: 0 20px; }
      .emp-hero-title { font-size: 22px; }
      .form-card { padding: 20px 16px; }
      .field-row-2 { flex-direction: column; }
      .field-chips { flex-wrap: wrap; }
      .nav-inner { padding: 0 20px; }
    }

/* BLOG-LISTING - responsive */
@media (max-width: 900px) {
      .nav-links, .nav-social { display: none; }
      .nav-hamburger { display: flex; }
      .emp-hero-title { font-size: 28px; }
      .emp-hero-sub { font-size: 14px; }
      .blog-inner { padding: 0 20px; }
      .blog-section { padding: 56px 0 72px; }
      .post-featured { grid-template-columns: 1fr; }
      .post-featured-img { min-height: 220px; }
      .post-featured-body { padding: 28px 24px; }
      .post-featured-title { font-size: 20px; }
      .posts-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .blog-cta-inner { grid-template-columns: 1fr; gap: 32px; }
      .blog-cta-inner { padding: 0 20px; }
      .blog-cta-title { font-size: 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
      .br-desktop { display: none; }
    }
@media (max-width: 480px) {
      .emp-hero { padding: 56px 0 64px; }
      .emp-hero-inner { padding: 0 20px; }
      .emp-hero-title { font-size: 22px; }
      .posts-grid { grid-template-columns: 1fr; }
      .nav-inner { padding: 0 20px; }
    }

/* BLOG-ARTIGO - responsive */
@media (max-width: 900px) {
      .nav-links, .nav-social { display: none; }
      .nav-hamburger { display: flex; }
      .artigo-hero { padding: 48px 0 56px; }
      .artigo-hero-inner, .artigo-inner, .comments-inner, .mais-artigos-inner { padding: 0 20px; }
      .artigo-hero-title { font-size: 26px; }
      .artigo-hero-excerpt { font-size: 15px; }
      .artigo-inner { grid-template-columns: 1fr; gap: 0; }
      .artigo-sidebar { display: none; }
      .artigo-section { padding: 40px 0 0; }
      .artigo-body { font-size: 16px; }
      .artigo-body h2 { font-size: 20px; }
      .mais-artigos-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col-contact { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
      .footer-bottom-links { justify-content: center; }
      .footer-copy { text-align: center; }
      .br-desktop { display: none; }
    }
@media (max-width: 480px) {
      .artigo-hero-title { font-size: 22px; }
      .mais-artigos-grid { grid-template-columns: 1fr; }
      .nav-inner { padding: 0 20px; }
      .artigo-footer { flex-direction: column; align-items: flex-start; }
    }

/* ══════════════════════════════════════════
   ARTIGOS — componentes especiais
══════════════════════════════════════════ */

.step-card { display: flex; gap: 20px; align-items: flex-start; background: #f9f9f9; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.step-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; color: #B80F0B; line-height: 1; flex-shrink: 0; min-width: 32px; }
.step-content h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: #0f0f0f; margin-bottom: 6px; }
.step-content p { font-size: 15px; color: #555; margin: 0; line-height: 1.6; }
.law-box { background: #f9f9f9; border-radius: 12px; padding: 24px 28px; margin: 32px 0; border-left: 4px solid #B80F0B; }
.law-box-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #B80F0B; margin-bottom: 10px; }
.law-box p { font-size: 15px; color: #444; margin: 0; line-height: 1.65; }


/* ══════════════════════════════════════════
   CORREÇÕES E OVERRIDES GLOBAIS
══════════════════════════════════════════ */

/* Animação seção autoridade: mais suave */
.autoridade { animation-duration: 0.9s; animation-delay: 0.25s; }

/* Hero serviços: impede que a grid 1fr 1fr do hero home vaze para a página de serviços */
.page-template-page-servicos .hero-inner { display: block; min-height: auto; }

/* Toggle Sou Empresa / Sou Candidato: impede quebra de linha */
.toggle-btn { white-space: nowrap; }

/* emp-hero mobile: corrige padding excessivo em 480px (bug: 56px > 40px desktop) */
@media (max-width: 480px) {
  .emp-hero { padding: 36px 0 44px; }
}

/* Mapa interativo: cursor pointer nos cards de unidade */
.unidade-card { cursor: pointer; }
.unidade-card--ativo { border-color: #B80F0B; }


/* ══════════════════════════════════════════
   PAGE: SINGLE VAGA
══════════════════════════════════════════ */

.vaga-hero { background: #0f0f0f; padding: 56px 0 64px; position: relative; overflow: hidden; }
.vaga-hero::before { content: ''; position: absolute; top: -60px; right: -80px; width: 480px; height: 480px; background: repeating-linear-gradient(-55deg, transparent, transparent 18px, rgba(184,15,11,0.07) 18px, rgba(184,15,11,0.07) 36px); border-radius: 50%; pointer-events: none; z-index: 1; }
.vaga-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

.vaga-hero-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.badge-tipo { display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; }
.vaga-hero-badges .badge-temporario { background: rgba(184,15,11,0.2); color: #ff6b6b; }
.vaga-hero-badges .badge-fixo { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.vaga-hero-badges .badge-urgente { background: rgba(224,112,0,0.2); color: #ffaa45; }

.vaga-hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.vaga-hero-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.vaga-meta-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.45); }
.vaga-meta-item svg { color: rgba(184,15,11,0.7); }

.vaga-content-section { background: #f7f7f7; padding: 56px 0 80px; }
.vaga-content-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }

.vaga-blocks { display: flex; flex-direction: column; gap: 16px; }
.vaga-block { background: #fff; border: 1.5px solid #ececec; border-radius: 14px; padding: 28px 32px; }
.vaga-block-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.vaga-block-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(184,15,11,0.07); display: flex; align-items: center; justify-content: center; color: #B80F0B; flex-shrink: 0; }
.vaga-block-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: #0f0f0f; }
.vaga-block-text { font-size: 14px; line-height: 1.75; color: #555; }
.vaga-block-text p { margin-bottom: 10px; }
.vaga-block-text p:last-child { margin-bottom: 0; }
.vaga-block-text strong { color: #222; font-weight: 600; }
.vaga-block-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.vaga-block-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #555; line-height: 1.5; }
.vaga-block-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #B80F0B; flex-shrink: 0; margin-top: 7px; }
.vaga-info-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.vaga-info-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #555; }
.vaga-info-item svg { color: #B80F0B; flex-shrink: 0; }
.vaga-info-item strong { font-weight: 600; color: #222; }

.vaga-sidebar { position: sticky; top: 80px; }
.vaga-sidebar-card { background: #fff; border: 1.5px solid #ececec; border-radius: 14px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.vaga-sidebar-card .sidebar-cta-title { color: #0f0f0f; margin-bottom: 6px; }
.vaga-sidebar-card .sidebar-cta-sub { color: #888; margin-bottom: 24px; }
.sidebar-vaga-meta { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.vaga-img-capa { width: 100%; border-radius: 12px; display: block; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 16px; }
.vaga-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.vaga-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color .15s; }
.vaga-breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.vaga-breadcrumb-sep { color: rgba(255,255,255,0.2); }
.sidebar-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.sidebar-meta-item { display: flex; align-items: flex-start; gap: 10px; }
.sidebar-meta-icon { width: 32px; height: 32px; border-radius: 7px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #B80F0B; flex-shrink: 0; }
.sidebar-meta-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #aaa; display: block; margin-bottom: 2px; }
.sidebar-meta-val { font-size: 13px; font-weight: 600; color: #222; }
.sidebar-divider { height: 1px; background: #f0f0f0; margin: 20px 0; }
.sidebar-share { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: #aaa; }
.sidebar-share a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: #f5f5f5; color: #555; text-decoration: none; transition: background .15s, color .15s; }
.sidebar-share a:hover { background: #0f0f0f; color: #fff; }

.mais-vagas-section { background: #0f0f0f; padding: 80px 0; position: relative; overflow: hidden; }
.mais-vagas-section::before { content: ''; position: absolute; bottom: -80px; left: -80px; width: 500px; height: 500px; background: repeating-linear-gradient(-55deg, transparent, transparent 18px, rgba(184,15,11,0.06) 18px, rgba(184,15,11,0.06) 36px); border-radius: 50%; pointer-events: none; }
.mais-vagas-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.mais-vagas-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.mais-vagas-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; color: #fff; line-height: 1.2; }
.mais-vagas-title span { color: #B80F0B; }
.mais-vagas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.mv-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: background .2s, border-color .2s; }
.mv-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.mv-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; opacity: 0.7; transition: opacity .2s; }
.mv-card:hover .mv-card-img { opacity: 0.85; }
.mv-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.mv-badge { display: inline-block; align-self: flex-start; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px; margin-bottom: 10px; }
.mv-badge-temp { background: rgba(184,15,11,0.2); color: #ff6b6b; }
.mv-badge-fixo { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.mv-titulo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.mv-local { font-size: 12px; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 4px; margin-bottom: 16px; }
.mv-cta { margin-top: auto; }
.btn-mv { display: block; width: 100%; text-align: center; padding: 10px; border-radius: 7px; border: 1px solid rgba(255,255,255,0.15); background: transparent; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); text-decoration: none; transition: background .15s, border-color .15s, color .15s; }
.btn-mv:hover { background: #B80F0B; border-color: #B80F0B; color: #fff; }

.candidatura-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(4px); }
.candidatura-modal { background: #fff; border-radius: 20px; padding: 36px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.2); position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 8px; background: #f5f5f5; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #555; transition: background .15s; }
.modal-close:hover { background: #ebebeb; }
.modal-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #B80F0B; margin-bottom: 8px; }
.modal-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: #0f0f0f; margin-bottom: 4px; }
.modal-vaga-ref { font-size: 13px; color: #888; margin-bottom: 28px; }
.modal-success { text-align: center; padding: 24px 0; }
.modal-success-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(73,201,136,0.1); display: flex; align-items: center; justify-content: center; color: #49c988; margin: 0 auto 16px; }
.modal-success-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: #0f0f0f; margin-bottom: 8px; }
.modal-success-text { font-size: 14px; color: #666; line-height: 1.6; }

@media (max-width: 900px) {
  .vaga-hero { padding: 40px 0 48px; }
  .vaga-hero-title { font-size: 26px; }
  .vaga-hero-meta { gap: 14px; }
  .vaga-content-inner { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }
  .vaga-content-section { padding: 40px 0 60px; }
  .vaga-sidebar { position: static; }
  .vaga-sidebar-card { order: -1; }
  .mais-vagas-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mais-vagas-inner { padding: 0 20px; }
  .mais-vagas-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .vaga-hero-inner { padding: 0 20px; }
  .vaga-hero-title { font-size: 22px; }
  .vaga-block { padding: 20px; }
  .mais-vagas-grid { grid-template-columns: 1fr; }
  .candidatura-modal { padding: 24px 20px; }
}

/* Classes do modal em single-vaga.php */
.vaga-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(4px); }
.vaga-modal { background: #fff; border-radius: 20px; padding: 36px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.2); position: relative; }
.vaga-modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 8px; background: #f5f5f5; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #555; transition: background .15s; }
.vaga-modal-close:hover { background: #ebebeb; }
.vaga-modal-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #B80F0B; margin-bottom: 8px; }
.vaga-modal-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: #0f0f0f; margin-bottom: 4px; }
.vaga-modal-ref { font-size: 13px; color: #888; margin-bottom: 28px; }

@media (max-width: 480px) {
  .vaga-modal { padding: 24px 20px; }
}

/* Fix: hero-section precisa de padding-bottom no desktop para o card
   .autoridade (translateY -50%) não sobrepor a imagem do hero */
@media (min-width: 901px) {
  .hero-section { padding-bottom: 80px; }
}

/* Estado ativo do menu — página atual fica vermelho */
.nav-links .nav-ativo,
.nav-mobile .nav-ativo { color: #B80F0B; }

/* Ancora do form de contato — compensa a navbar fixa */
#proposta, #mot, #terceirizacao, #recrutamento { scroll-margin-top: 80px; }

/* Upload com arquivo selecionado */
.field-upload--ok { border-color: #49c988; color: #1a7a4a; background: #f0fdf6; }
.field-upload--ok svg { stroke: #49c988; }

/* Textarea nos formulários */
.field-input[rows] { height: auto; }

@media (max-width: 480px) {
  .form-success-title { font-size: 22px !important; }
  .fp-comment-fields-row { grid-template-columns: 1fr; }
}

/* Fade-in suave nas secoes */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Botao voltar ao topo */
#btn-topo {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #B80F0B;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s, transform .2s, background .15s;
}
#btn-topo.btn-topo--visivel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#btn-topo:hover { background: #960c09; }

/* Botão rebibo no rodapé */
.footer-rebibo-btn {
  background: #B80F0B;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.footer-rebibo-btn:hover { background: #960c09; }

/* Modal rebibo */
.rebibo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.rebibo-modal {
  background: #fff;
  border-radius: 8px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px 36px;
  position: relative;
  font-size: 15px;
  color: #333;
  line-height: 1.65;
}
.rebibo-modal p { margin: 0 0 14px; }
.rebibo-fechar {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 4px;
  line-height: 1;
}
.rebibo-fechar:hover { color: #B80F0B; }
.rebibo-logo { height: 48px; display: block; margin-bottom: 20px; }
.rebibo-titulo { font-size: 26px; font-weight: 700; color: #0f0f0f; margin: 0 0 18px; }
.rebibo-destaque { font-weight: 700; color: #0f0f0f; }
.rebibo-modal a { color: #B80F0B; }
.rebibo-modal .rebibo-cta {
  display: inline-block;
  margin-top: 8px;
  background: #B80F0B;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s;
}
.rebibo-modal .rebibo-cta:hover { background: #960c09; color: #fff; }

@media (max-width: 480px) {
  .rebibo-modal { padding: 32px 20px 24px; }
  .rebibo-titulo { font-size: 22px; }
}
