
    :root {
      --navy: #0b2864;
      --navy-deep: #071a42;
      --navy-mid: #123875;
      --blue: #1f4f96;
      --gold: #f3b400;
      --orange: #ec8a00;
      --ink: #13213a;
      --muted: #637087;
      --line: #e6eaf0;
      --paper: #fff;
      --soft: #f5f7fa;
      --radius: 18px;
      --shadow: 0 18px 52px rgba(9,30,66,.10);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 100px; }
    body {
      margin: 0; color: var(--ink); background: var(--paper);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6; -webkit-font-smoothing: antialiased;
    }
    img, svg { display: block; }
    a { color: inherit; }
    button, input, textarea { font: inherit; }
    .container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
    .icon-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
    .skip-link {
      position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px;
      color: white; background: var(--navy); border-radius: 8px; transform: translateY(-160%);
    }
    .skip-link:focus { transform: translateY(0); }






    .site-header {
      position: sticky; z-index: 100; top: 0; color: white; background: rgba(11,40,100,.98);
      border-bottom: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(12px);
    }
    .nav-wrap { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 23px; }
    .brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
    .brand img {
      width: 174px; height: 88px; object-fit: cover; object-position: center 44%;
      background: transparent;
    }
    .nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
    .nav-links > a, .nav-link-button {
      display: inline-flex; align-items: center; gap: 8px; padding: 12px 0; color: #fff;
      background: transparent; border: 0; text-decoration: none; font-size: 13px; font-weight: 680;
      white-space: nowrap; cursor: pointer; transition: color .2s ease;
    }
    .nav-links > a:hover, .nav-links > a:focus-visible, .nav-link-button:hover, .nav-link-button:focus-visible { color: var(--gold); }
    .nav-link-button svg { width: 13px; height: 13px; transition: transform .2s ease; }
    .nav-services { position: relative; display: flex; align-items: center; }
    .nav-services.is-open .nav-link-button svg { transform: rotate(180deg); }
    .nav-dropdown {
      position: absolute; z-index: 110; top: calc(100% + 24px); left: 50%; display: none;
      width: 272px; max-height: min(72vh, 570px); overflow-y: auto; padding: 8px;
      background: #fff; border: 1px solid #e5eaf1; border-radius: 9px;
      box-shadow: 0 20px 45px rgba(2,13,34,.23); transform: translateX(-50%);
    }
    .nav-dropdown::before { position: absolute; top: -25px; left: 0; width: 100%; height: 25px; content: ""; }
    .nav-services:hover .nav-dropdown, .nav-services:focus-within .nav-dropdown, .nav-services.is-open .nav-dropdown { display: grid; }
    .nav-dropdown a {
      position: relative; display: flex; align-items: center; min-height: 39px; padding: 8px 12px;
      color: #182741; border-radius: 5px; text-decoration: none; font-size: 12px; font-weight: 620;
      transition: color .18s ease, background .18s ease;
    }
    .nav-dropdown a:hover, .nav-dropdown a:focus-visible { color: var(--navy); background: #f2f6fc; }
    .nav-dropdown a.dropdown-all { color: var(--blue); border-bottom: 1px solid #edf0f4; border-radius: 0; font-weight: 800; }
    .button {
      display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px;
      padding: 0 20px; border: 1px solid transparent; border-radius: 999px; text-decoration: none;
      font-size: 13px; font-weight: 750; letter-spacing: .01em; cursor: pointer;
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button-primary { color: var(--navy-deep); background: var(--gold); box-shadow: 0 10px 25px rgba(243,180,0,.22); }
    .button-primary:hover { background: #ffc51d; box-shadow: 0 13px 30px rgba(243,180,0,.3); }
    .button-outline { color: white; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.28); }
    .button-outline:hover { background: rgba(255,255,255,.14); }
    .button svg, .text-link svg { width: 17px; height: 17px; }
    .menu-toggle { display: none; width: 44px; height: 44px; color: var(--gold); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); border-radius: 12px; cursor: pointer; }
    .menu-toggle svg { width: 22px; height: 22px; margin: auto; }

    .hero {
      position: relative; isolation: isolate; overflow: hidden; color: white;
      background:
        radial-gradient(ellipse at 79% 28%, rgba(42,92,164,.35), transparent 37%),
        radial-gradient(ellipse at 0% 100%, rgba(21,61,126,.55), transparent 38%),
        linear-gradient(118deg, #081b43 0%, #0b2864 58%, #102f6b 100%);
    }
    .hero::before {
      position: absolute; z-index: -1; inset: 0; content: "";
      opacity: .15; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
      background-size: 54px 54px; mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
    }
    .hero-inner { min-height: 560px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 40px; padding-block: 62px 68px; }
    .hero-copy { position: relative; z-index: 2; max-width: 650px; }
    .eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
    .eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
    .hero h1 { max-width: 690px; margin: 22px 0 20px; font-size: clamp(42px, 5.15vw, 67px); font-weight: 760; line-height: 1.04; letter-spacing: -.052em; }
    .hero h1 span { color: var(--gold); }
    .hero-lede { max-width: 580px; margin: 0; color: #d9e3f4; font-size: 17px; line-height: 1.8; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
    .hero-proof { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 28px; color: #c5d2e8; font-size: 12px; }
    .hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
    .proof-check { display: grid; width: 18px; height: 18px; place-items: center; color: var(--gold); border: 1px solid rgba(243,180,0,.45); border-radius: 50%; }
    .proof-check svg { width: 10px; height: 10px; }
    .hero-art { position: relative; min-height: 440px; display: grid; place-items: center; }
    .scene-card {
      position: relative; width: min(100%, 520px); min-height: 415px; overflow: hidden;
      border: 1px solid rgba(255,255,255,.16); border-radius: 28px;
      background: linear-gradient(150deg, rgba(28,68,132,.82), rgba(7,23,58,.96));
      box-shadow: 0 34px 90px rgba(0,0,0,.27);
    }
    .scene-topline { position: absolute; z-index: 2; top: 22px; left: 24px; right: 24px; display: flex; justify-content: space-between; color: #c5d4ea; font-size: 9px; font-weight: 750; letter-spacing: .13em; }
    .scene-topline span:last-child { color: var(--gold); }
    .scene-card > svg { position: absolute; inset: 38px 0 0; width: 100%; height: calc(100% - 38px); }
    .scene-callout {
      position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 13px 15px;
      color: var(--ink); background: white; border: 1px solid rgba(232,237,245,.9); border-radius: 14px;
      box-shadow: 0 16px 40px rgba(0,0,0,.18);
    }
    .scene-callout.top { top: 20%; right: -24px; }
    .scene-callout.bottom { bottom: -16px; left: -27px; max-width: calc(100% - 12px); }
    .callout-icon { display: grid; width: 39px; height: 39px; place-items: center; color: var(--navy); background: #fff4cd; border-radius: 12px; }
    .callout-icon svg { width: 22px; height: 22px; }
    .scene-callout strong { display: block; font-size: 12px; line-height: 1.2; }
    .scene-callout small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
    .hero-orbit { position: absolute; z-index: -1; right: -31px; bottom: -50px; width: 240px; height: 240px; border: 1px solid rgba(243,180,0,.19); border-radius: 50%; }
    .hero-orbit::before, .hero-orbit::after { position: absolute; content: ""; border: 1px solid rgba(243,180,0,.16); border-radius: 50%; }
    .hero-orbit::before { inset: 24px; }
    .hero-orbit::after { inset: 52px; }

    .proof-strip { background: var(--paper); }
    .quick-services { background: #f5f7fb; border-bottom: 1px solid #e8edf4; }
    .quick-services-inner { display: grid; grid-template-columns: 132px 1fr; align-items: start; gap: 16px; padding-block: 15px; }
    .quick-services-label { padding-top: 8px; color: var(--navy); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
    .service-ribbon { display: flex; flex-wrap: wrap; gap: 7px; }
    .service-ribbon a { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; color: #334665; background: white; border: 1px solid #dfe6f0; border-radius: 999px; text-decoration: none; white-space: nowrap; font-size: 10px; font-weight: 720; transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease; }
    .service-ribbon a:hover, .service-ribbon a:focus-visible { color: var(--navy-deep); background: #fff4ce; border-color: var(--gold); transform: translateY(-1px); }
    .service-card { scroll-margin-top: 118px; }
    .proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
    .proof-item { display: flex; align-items: center; gap: 13px; min-height: 99px; padding: 18px 22px; border-right: 1px solid var(--line); }
    .proof-item:first-child { border-left: 1px solid var(--line); }
    .proof-icon { flex: 0 0 auto; display: grid; width: 43px; height: 43px; place-items: center; color: var(--navy); background: #f4f7fb; border-radius: 13px; }
    .proof-icon svg { width: 21px; height: 21px; }
    .proof-item strong { display: block; font-size: 12px; line-height: 1.4; }
    .proof-item small { color: var(--muted); font-size: 10px; }

    .section { padding: 96px 0; }
    .section-soft { background: var(--soft); }
    .section-heading { max-width: 720px; margin: 0 auto 45px; text-align: center; }
    .section-heading .eyebrow, .about-copy .eyebrow { color: var(--orange); }
    .section-heading h2 { margin: 14px 0 13px; color: var(--navy-deep); font-size: clamp(32px, 4vw, 46px); line-height: 1.13; letter-spacing: -.04em; }
    .section-heading p { margin: 0 auto; max-width: 650px; color: var(--muted); font-size: 15px; line-height: 1.8; }
    .service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
    .service-card {
      position: relative; display: flex; min-height: 318px; flex-direction: column; padding: 24px 22px 20px;
      background: white; border: 1px solid var(--line); border-radius: var(--radius);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .service-card:hover { transform: translateY(-4px); border-color: #d2dbea; box-shadow: var(--shadow); }
    .service-icon { display: grid; width: 48px; height: 48px; place-items: center; color: var(--navy); background: #eff4fb; border-radius: 15px; }
    .service-icon svg { width: 24px; height: 24px; }
    .service-card h3 { margin: 19px 0 7px; color: var(--navy-deep); font-size: 18px; line-height: 1.28; letter-spacing: -.018em; }
    .service-card > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
    .service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
    .service-tags span { padding: 4px 8px; color: #465675; background: #f5f7fa; border-radius: 999px; font-size: 9px; font-weight: 700; }
    .scope { margin-top: 12px; }
    .scope summary { width: fit-content; color: var(--blue); font-size: 11px; font-weight: 750; cursor: pointer; list-style: none; }
    .scope summary::-webkit-details-marker { display: none; }
    .scope summary::after { display: inline-block; width: 12px; content: "+"; margin-left: 5px; font-size: 14px; line-height: 1; }
    .scope[open] summary::after { content: "−"; }
    .scope p { margin: 8px 0 0; color: #5d6b82; font-size: 11px; line-height: 1.75; }
    .service-cta { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 16px; color: var(--navy); text-decoration: none; font-size: 11px; font-weight: 800; }
    .service-cta svg { width: 14px; height: 14px; color: var(--orange); transition: transform .2s ease; }
    .service-cta:hover svg { transform: translateX(4px); }

    .clients-section { overflow: hidden; color: var(--navy-deep); background: #fff; }
    .clients-section .section-heading h2 { color: var(--navy-deep); }
    .clients-section .section-heading p { color: var(--muted); }
    .client-marquee {
      width: 100%; overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
      mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
    }
    .client-track {
      display: flex; width: max-content; animation: client-logo-loop 52s linear infinite; will-change: transform;
    }
    .client-group { display: flex; flex: 0 0 auto; align-items: center; gap: 44px; padding: 8px 24px; }
    .client-card {
      position: relative; display: grid; flex: 0 0 220px; width: 220px; min-height: 138px;
      place-items: center; margin: 0; padding: 0; background: transparent; border: 0; border-radius: 0;
      transition: transform .2s ease;
    }
    .client-card:hover { transform: scale(1.045); }
    .client-card img { display: block; width: 100%; height: 112px; object-fit: contain; }
    .client-card figcaption {
      position: absolute; width: 1px; height: 1px; overflow: hidden; margin: -1px; padding: 0;
      clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
    }
    .client-marquee:hover .client-track { animation-play-state: paused; }
    @keyframes client-logo-loop { to { transform: translateX(-50%); } }
    .clients-note { margin: 13px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
    .work-section { padding: 86px 0; background: #f5f7fa; }
    .work-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
    .work-shot { position: relative; min-height: 205px; overflow: hidden; margin: 0; background: #dce4ef; border-radius: 16px; box-shadow: 0 12px 30px rgba(9,30,66,.1); }
    .work-shot img { width: 100%; height: 100%; min-height: 205px; object-fit: cover; transition: transform .35s ease; }
    .work-shot:hover img { transform: scale(1.035); }
    .work-shot figcaption {
      position: absolute; right: 0; bottom: 0; left: 0; padding: 35px 13px 12px; color: white;
      background: linear-gradient(transparent, rgba(4,17,43,.82)); font-size: 10px; font-weight: 700; line-height: 1.4;
    }
    .service-page[hidden] { display: none !important; }
    .service-detail-hero {
      position: relative; overflow: hidden; color: white;
      background: radial-gradient(ellipse at 85% 10%, rgba(48,100,174,.4), transparent 35%), linear-gradient(122deg, #071a42, #0b2864 65%, #153a78);
    }
    .service-detail-hero::after {
      position: absolute; top: -120px; right: -90px; width: 420px; height: 420px; content: "";
      border: 1px solid rgba(243,180,0,.17); border-radius: 50%; box-shadow: 0 0 0 34px rgba(243,180,0,.025), 0 0 0 70px rgba(243,180,0,.018);
      pointer-events: none;
    }
    /* Padrão compartilhado de navegação, igual ao de Qualidade e Auditorias. */
    .detail-breadcrumbs { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: baseline; gap: 9px; padding: 24px 0 0; color: #c1cde0; font-size: 12px; font-weight: 400; line-height: 1.6; }
    .detail-breadcrumbs .detail-breadcrumb-group { display: inline-flex; align-items: baseline; gap: 9px; }
    .detail-breadcrumbs a { color: #d7e4f6; text-decoration: none; }
    .detail-breadcrumbs a:hover { color: var(--gold); }
    .detail-breadcrumbs > [aria-current="page"] { color: var(--gold); }
    .detail-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 60px; min-height: 394px; padding: 40px 0 66px; }
    .detail-copy { max-width: 710px; }
    .detail-copy .eyebrow { color: var(--gold); }
    .detail-copy h1 { max-width: 700px; margin: 18px 0 17px; font-size: clamp(38px, 4.7vw, 59px); font-weight: 760; line-height: 1.05; letter-spacing: -.045em; }
    .detail-lede { max-width: 660px; margin: 0; color: #d7e2f2; font-size: 15px; line-height: 1.8; }
    .detail-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
    .detail-tags span { padding: 6px 10px; color: #f5d978; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 99px; font-size: 9px; font-weight: 750; }
    .detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
    .detail-aside {
      padding: 25px; color: white; background: rgba(3,14,36,.58); border: 1px solid rgba(255,255,255,.17);
      border-radius: 19px; box-shadow: 0 22px 48px rgba(0,0,0,.16); backdrop-filter: blur(8px);
    }
    .detail-aside-mark { display: grid; width: 43px; height: 43px; place-items: center; color: var(--navy-deep); background: var(--gold); border-radius: 13px; }
    .detail-aside-mark svg { width: 22px; height: 22px; }
    .detail-aside h2 { margin: 17px 0 8px; font-size: 19px; line-height: 1.3; }
    .detail-aside p { margin: 0; color: #c8d5e8; font-size: 11px; line-height: 1.75; }
    .detail-aside-list { display: grid; gap: 10px; margin: 17px 0 0; padding: 0; list-style: none; }
    .detail-aside-list li { display: flex; align-items: flex-start; gap: 8px; color: #e5ecf6; font-size: 10px; line-height: 1.5; }
    .detail-aside-list li::before { flex: 0 0 6px; width: 6px; height: 6px; margin-top: 5px; content: ""; background: var(--gold); border-radius: 50%; }
    .detail-content { padding: 78px 0 45px; }
    .detail-content-head { max-width: 730px; margin-bottom: 30px; }
    .detail-content-head .eyebrow { color: var(--orange); }
    .detail-content-head h2 { margin: 13px 0 8px; color: var(--navy-deep); font-size: clamp(29px, 3.5vw, 40px); line-height: 1.14; letter-spacing: -.035em; }
    .detail-content-head p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
    .detail-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .detail-group { display: grid; grid-template-columns: 34px 1fr; gap: 13px; padding: 22px; background: white; border: 1px solid var(--line); border-radius: 16px; }
    .detail-group-number { display: grid; width: 32px; height: 32px; place-items: center; color: var(--navy); background: #fff3cb; border-radius: 10px; font-size: 10px; font-weight: 850; }
    .detail-group h3 { margin: 1px 0 7px; color: var(--navy-deep); font-size: 15px; line-height: 1.35; }
    .detail-group p { margin: 0; color: #647087; font-size: 11px; line-height: 1.7; }
    .detail-group ul { display: grid; gap: 6px; margin: 11px 0 0; padding-left: 17px; color: #53617a; font-size: 10px; line-height: 1.6; }
    .detail-note { margin-top: 18px; padding: 14px 16px; color: #56647b; background: #f5f7fa; border-left: 3px solid var(--gold); border-radius: 0 9px 9px 0; font-size: 10px; line-height: 1.7; }
    .related-services { padding: 28px 0 74px; }
    .related-services h2 { margin: 0 0 14px; color: var(--navy-deep); font-size: 19px; }
    .related-links { display: flex; flex-wrap: wrap; gap: 8px; }
    .related-links a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; color: var(--navy); background: #f4f7fb; border: 1px solid #e4eaf2; border-radius: 99px; text-decoration: none; font-size: 10px; font-weight: 700; }
    .related-links a:hover { border-color: var(--gold); background: #fff8de; }
    .detail-contact-band { padding: 30px 0; color: white; background: linear-gradient(110deg, #0b2864, #153d7d); }
    .detail-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
    .detail-contact-inner h2 { margin: 0 0 4px; font-size: 21px; line-height: 1.25; }
    .detail-contact-inner p { margin: 0; color: #d1ddef; font-size: 11px; }

    .numbers { padding: 30px 0; color: white; background: linear-gradient(110deg, #0b2864, #143b7b); }
    .numbers-inner { display: flex; align-items: center; justify-content: center; gap: 20px; text-align: center; }
    .numbers strong { color: var(--gold); font-size: clamp(27px, 4vw, 38px); line-height: 1; letter-spacing: -.04em; }
    .numbers span { max-width: 190px; color: #d7e2f3; font-size: 12px; line-height: 1.45; text-align: left; }
    .numbers-rule { width: 1px; height: 40px; background: rgba(255,255,255,.22); }

    .audiences { padding: 78px 0; color: white; background: var(--navy); }
    .audiences-inner { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 68px; }
    .audiences .eyebrow { color: var(--gold); }
    .audiences h2 { max-width: 530px; margin: 15px 0; font-size: clamp(30px, 3.5vw, 42px); line-height: 1.14; letter-spacing: -.04em; }
    .audiences-copy { max-width: 510px; margin: 0; color: #c7d5eb; font-size: 14px; line-height: 1.8; }
    .audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
    .audience-tile { display: flex; min-height: 92px; align-items: center; gap: 13px; padding: 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 15px; }
    .audience-tile svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold); }
    .audience-tile span { font-size: 12px; font-weight: 700; }

    .about-grid { display: grid; grid-template-columns: 1fr .93fr; align-items: center; gap: 76px; }
    .about-visual {
      position: relative; min-height: 410px; display: grid; place-items: center; overflow: hidden;
      background: linear-gradient(145deg, #eaf0f7, #f9fafc 70%); border-radius: 24px;
    }
    .about-visual::before { position: absolute; top: 36px; left: 36px; width: 110px; height: 110px; content: ""; border: 1px solid rgba(11,40,100,.16); border-radius: 50%; }
    .about-visual::after { position: absolute; right: -57px; bottom: -64px; width: 250px; height: 250px; content: ""; border: 1px solid rgba(236,138,0,.38); border-radius: 50%; box-shadow: 0 0 0 25px rgba(236,138,0,.035), 0 0 0 50px rgba(236,138,0,.025); }
    .about-plan { position: relative; width: min(82%, 415px); aspect-ratio: 1.1; padding: 27px; color: white; background: linear-gradient(140deg, #102f6b, #071a42); border-radius: 20px; box-shadow: 0 25px 55px rgba(9,30,66,.2); }
    .about-plan .plan-label { color: #becce2; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
    .about-plan h3 { max-width: 240px; margin: 20px 0; font-size: 25px; line-height: 1.12; letter-spacing: -.035em; }
    .plan-line { height: 1px; margin: 12px 0; background: rgba(255,255,255,.2); }
    .plan-row { display: flex; align-items: center; justify-content: space-between; color: #d8e3f3; font-size: 10px; }
    .plan-row b { color: var(--gold); font-size: 10px; }
    .plan-stamp { position: absolute; right: 23px; bottom: 22px; display: grid; width: 54px; height: 54px; place-items: center; color: var(--navy); background: var(--gold); border-radius: 50%; transform: rotate(-10deg); }
    .plan-stamp svg { width: 27px; height: 27px; }
    .about-copy h2 { margin: 15px 0 14px; color: var(--navy-deep); font-size: clamp(32px, 4vw, 44px); line-height: 1.12; letter-spacing: -.04em; }
    .about-copy > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
    .values { display: grid; gap: 16px; margin-top: 25px; }
    .value { display: flex; align-items: flex-start; gap: 13px; }
    .value-mark { flex: 0 0 auto; display: grid; width: 31px; height: 31px; place-items: center; color: var(--navy); background: #fff3cd; border-radius: 10px; }
    .value-mark svg { width: 17px; height: 17px; }
    .value strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 12px; }
    .value span { display: block; color: var(--muted); font-size: 11px; line-height: 1.6; }

    .steps { padding: 84px 0; background: #f5f7fa; }
    .step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .step { padding: 22px 20px; background: white; border: 1px solid var(--line); border-radius: 16px; }
    .step-number { color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .14em; }
    .step h3 { margin: 14px 0 6px; color: var(--navy-deep); font-size: 16px; line-height: 1.3; }
    .step p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }

    .contact-section { position: relative; overflow: hidden; padding: 88px 0; color: white; background: linear-gradient(120deg, #071a42, #0e3478); }
    .contact-section::after { position: absolute; top: -170px; right: -85px; width: 430px; height: 430px; content: ""; border: 1px solid rgba(243,180,0,.18); border-radius: 50%; box-shadow: 0 0 0 38px rgba(243,180,0,.03), 0 0 0 77px rgba(243,180,0,.025); }
    .contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; align-items: start; gap: 72px; }
    .contact-copy .eyebrow { color: var(--gold); }
    .contact-copy h2 { max-width: 490px; margin: 15px 0; font-size: clamp(34px, 4vw, 49px); line-height: 1.1; letter-spacing: -.045em; }
    .contact-copy > p { max-width: 445px; margin: 0; color: #c6d4e9; font-size: 14px; line-height: 1.85; }
    .contact-methods { display: grid; gap: 14px; margin-top: 28px; }
    .contact-method { display: flex; align-items: center; gap: 12px; color: white; text-decoration: none; }
    .contact-method > span:first-child { display: grid; width: 41px; height: 41px; place-items: center; color: var(--gold); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; }
    .contact-method svg { width: 19px; height: 19px; }
    .contact-method small { display: block; color: #b5c5dd; font-size: 9px; }
    .contact-method strong { display: block; font-size: 12px; }
    .contact-form { padding: 27px; color: var(--ink); background: white; border-radius: 20px; box-shadow: 0 22px 60px rgba(0,0,0,.2); }
    .contact-form h3 { margin: 0 0 4px; color: var(--navy-deep); font-size: 19px; }
    .contact-form > p { margin: 0 0 18px; color: var(--muted); font-size: 11px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .field { display: grid; gap: 6px; margin-bottom: 12px; }
    .field label { color: #394863; font-size: 10px; font-weight: 750; }
    .field input, .field textarea { width: 100%; color: var(--ink); background: #f8f9fb; border: 1px solid #e1e6ee; border-radius: 10px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
    .field input { height: 43px; padding: 0 12px; }
    .field textarea { min-height: 92px; padding: 11px 12px; resize: vertical; }
    .field input:focus, .field textarea:focus { border-color: #7c9fce; box-shadow: 0 0 0 3px rgba(31,79,150,.1); }
    .field input::placeholder, .field textarea::placeholder { color: #9aa5b5; font-size: 11px; }
    .contact-form .button { width: 100%; min-height: 47px; border: 0; }
    .form-note { margin: 10px 0 0; color: #7b8799; font-size: 9px; text-align: center; }

    .footer { color: #c2cee1; background: #061638; }
    .footer-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 0; }
    .footer-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .footer-brand img { width: 142px; height: 72px; object-fit: cover; object-position: center 44%; background: transparent; }
    .footer-brand span { color: #b7c5dc; font-size: 10px; }
    .footer-nav { display: flex; flex-wrap: wrap; gap: 14px; }
    .footer-nav a { color: #c2cee1; text-decoration: none; font-size: 10px; }
    .footer-nav a:hover { color: var(--gold); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0 18px; border-top: 1px solid rgba(255,255,255,.1); color: #91a2bf; font-size: 9px; }
    .footer-bottom p { margin: 0; }
    .whatsapp-float {
      position: fixed; z-index: 90; right: 20px; bottom: 20px; display: grid; width: 58px; height: 58px; place-items: center;
      color: white; background: #25d366; border: 0; border-radius: 50%;
      box-shadow: 0 8px 25px rgba(11,40,100,.2); transition: transform .2s ease;
    }
    .whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
    .whatsapp-float svg { width: 36px; height: 36px; }
    :focus-visible { outline: 3px solid rgba(243,180,0,.75); outline-offset: 3px; }

    @media (max-width: 980px) {
      .container { width: min(100% - 38px, 760px); }
      .nav-wrap { min-height: 88px; }
      .brand img { width: 160px; height: 80px; }
      .nav-links { gap: 14px; }
      .nav-links > a, .nav-link-button { font-size: 10px; }
      .nav-cta { display: none; }
      .hero-inner { grid-template-columns: 1fr .8fr; gap: 17px; }
      .hero-art { min-height: 370px; }
      .scene-card { min-height: 345px; }
      .scene-callout.top { right: -10px; }
      .scene-callout.bottom { left: -8px; }
      .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .quick-services-inner { grid-template-columns: 1fr; gap: 8px; }
      .quick-services-label { padding-top: 0; }
      .about-grid { gap: 45px; }
      .contact-grid { gap: 42px; }
      .client-group { gap: 36px; padding-inline: 22px; }
      .client-card { flex-basis: 200px; width: 200px; min-height: 128px; }
      .client-card img { height: 104px; }
      .work-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    @media (max-width: 700px) {
      html { scroll-padding-top: 76px; }
      .container { width: min(100% - 34px, 540px); }



      .nav-wrap { min-height: 76px; gap: 14px; }
      .brand img { width: 150px; height: 74px; }
      .menu-toggle { display: block; margin-left: auto; }
      .nav-links {
        position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch;
        gap: 0; max-height: calc(100vh - 77px); overflow-y: auto; padding: 8px 17px 16px;
        background: var(--navy-deep); border-bottom: 1px solid rgba(255,255,255,.16); box-shadow: 0 14px 25px rgba(9,30,66,.2);
      }
      .nav-links.is-open { display: flex; }
      .nav-links > a, .nav-link-button { width: 100%; justify-content: space-between; padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.13); font-size: 13px; }
      .nav-services { display: block; }
      .nav-dropdown {
        position: static; width: auto; max-height: 236px; margin: 0 0 9px; padding: 6px;
        background: #fff; border: 0; border-radius: 10px; box-shadow: none; transform: none;
      }
      .nav-dropdown::before { display: none; }
      .nav-services.is-open .nav-dropdown { display: grid; grid-template-columns: 1fr 1fr; }
      .nav-dropdown a { min-height: 36px; padding: 7px 8px; font-size: 10px; }
      .nav-dropdown a.dropdown-all { grid-column: 1 / -1; }
      .hero-inner { display: block; min-height: auto; padding-block: 53px 42px; }
      .hero h1 { max-width: 540px; margin-top: 17px; font-size: clamp(41px, 11vw, 56px); }
      .hero-lede { font-size: 14px; }
      .hero-actions { gap: 9px; margin-top: 23px; }
      .button { min-height: 46px; padding: 0 16px; font-size: 11px; }
      .hero-proof { gap: 12px; margin-top: 21px; font-size: 10px; }
      .hero-art { min-height: 310px; margin: 31px 7px 0; }
      .scene-card { min-height: 308px; }
      .scene-topline { flex-wrap: wrap; gap: 7px 12px; }
      .scene-callout { padding: 10px 11px; }
      .scene-callout.top { top: 78px; right: -6px; }
      .scene-callout.bottom { bottom: -16px; left: -8px; }
      .callout-icon { width: 34px; height: 34px; }
      .scene-callout strong { font-size: 10px; }
      .scene-callout small { font-size: 9px; }
      .proof-grid { grid-template-columns: repeat(2, 1fr); }
      .proof-item { min-height: 78px; padding: 13px 10px; gap: 9px; }
      .proof-item:nth-child(odd) { border-left: 1px solid var(--line); }
      .proof-item:nth-child(even) { border-right: 1px solid var(--line); }
      .proof-item:nth-child(n+3) { border-top: 1px solid var(--line); }
      .proof-icon { width: 36px; height: 36px; border-radius: 11px; }
      .proof-icon svg { width: 18px; height: 18px; }
      .proof-item strong { font-size: 10px; }
      .proof-item small { font-size: 9px; }
      .section { padding: 68px 0; }
      .section-heading { margin-bottom: 31px; text-align: left; }
      .section-heading h2 { font-size: 34px; }
      .section-heading p { margin-left: 0; font-size: 13px; }
      .service-grid { grid-template-columns: 1fr; gap: 12px; }
      .service-ribbon { flex-wrap: nowrap; overflow-x: auto; padding: 1px 0 7px; scrollbar-width: thin; scroll-snap-type: x proximity; }
      .service-ribbon a { scroll-snap-align: start; }
      .service-card { min-height: 275px; padding: 21px; }
      .service-card h3 { margin-top: 15px; font-size: 17px; }
      .clients-section { padding: 68px 0; }
      .client-group { gap: 28px; padding-inline: 16px; }
      .client-card { flex-basis: 178px; width: 178px; min-height: 112px; }
      .client-card img { height: 98px; }
      .client-track { animation-duration: 38s; }
      .work-section { padding: 66px 0; }
      .work-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
      .work-shot, .work-shot img { min-height: 158px; }
      .work-shot figcaption { padding: 28px 9px 8px; font-size: 9px; }
      .detail-hero-grid { grid-template-columns: 1fr; gap: 25px; min-height: 0; padding: 35px 0 46px; }
      .detail-copy h1 { font-size: clamp(36px, 10vw, 48px); }
      .detail-lede { font-size: 13px; }
      .detail-aside { max-width: 520px; padding: 19px; }
      .detail-content { padding: 58px 0 35px; }
      .detail-groups { grid-template-columns: 1fr; gap: 10px; }
      .detail-group { padding: 17px; }
      .related-services { padding: 16px 0 56px; }
      .detail-contact-inner { align-items: flex-start; flex-direction: column; }
      .detail-contact-inner h2 { font-size: 19px; }
      .numbers-inner { gap: 12px; }
      .numbers span { font-size: 10px; }
      .audiences { padding: 61px 0; }
      .audiences-inner { grid-template-columns: 1fr; gap: 26px; }
      .audiences h2 { font-size: 34px; }
      .audiences-copy { font-size: 13px; }
      .audience-grid { gap: 9px; }
      .audience-tile { min-height: 76px; gap: 9px; padding: 12px; }
      .audience-tile span { font-size: 10px; }
      .audience-tile svg { width: 18px; height: 18px; }
      .about-grid { grid-template-columns: 1fr; gap: 33px; }
      .about-visual { order: 2; min-height: 315px; }
      .about-plan { width: 80%; padding: 22px; }
      .about-plan .plan-stamp { position: relative; right: auto; bottom: auto; margin: 16px 30px 0 auto; }
      .about-plan h3 { margin: 14px 0; font-size: 22px; }
      .about-copy h2 { font-size: 35px; }
      .steps { padding: 63px 0; }
      .step-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
      .step { padding: 17px 14px; }
      .step h3 { font-size: 14px; }
      .step p { font-size: 10px; }
      .contact-section { padding: 66px 0; }
      .contact-grid { grid-template-columns: 1fr; gap: 29px; }
      .contact-copy h2 { font-size: 36px; }
      .contact-copy > p { font-size: 13px; }
      .contact-form { padding: 22px 18px; }
      .footer-main { align-items: flex-start; flex-direction: column; padding: 23px 0; }
      .footer-nav { gap: 11px 15px; }
      .footer-bottom { flex-direction: column; gap: 5px; }
      .whatsapp-float { right: 13px; bottom: 13px; width: 56px; height: 56px; }
    }
    @media (max-width: 370px) {
      .container { width: calc(100% - 28px); }
      .hero h1 { font-size: 39px; }
      .hero-actions .button { padding-inline: 12px; }
      .scene-topline { left: 14px; right: 14px; font-size: 8px; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .work-gallery { grid-template-columns: 1fr 1fr; }
      .client-group { gap: 22px; padding-inline: 14px; }
      .client-card { flex-basis: 158px; width: 158px; min-height: 100px; }
      .client-card img { height: 88px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
      .client-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; scrollbar-width: thin; }
      .client-track { animation: none !important; transform: none !important; }
    }

    /* Catálogo de laudos e páginas individuais. */
    #report-catalog[hidden], #report-catalog [hidden], #detail-groups[hidden], #detail-laudos-crumb[hidden] { display: none !important; }
    .report-toolbar { padding: 23px; background: var(--soft); border: 1px solid var(--line); border-radius: 16px; margin-bottom: 26px; }
    .report-search-label { display: block; margin: 0 0 8px; color: var(--navy-deep); font-size: 14px; font-weight: 750; }
    .report-search { width: 100%; min-height: 50px; padding: 12px 16px; color: var(--ink); background: white; border: 1px solid #cdd7e6; border-radius: 9px; font: inherit; font-size: 15px; }
    .report-search:focus { outline: 3px solid #d8e7fb; border-color: var(--blue); }
    .report-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
    .report-filter { min-height: 42px; padding: 9px 14px; color: #405475; background: #fff; border: 1px solid #dce3ed; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; }
    .report-filter[aria-pressed="true"] { color: white; background: var(--navy); border-color: var(--navy); }
    .report-count { margin: 20px 0 13px; color: var(--muted); font-size: 13px; }
    .report-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
    .report-card { display: flex; flex-direction: column; padding: 27px; border: 1px solid #dce4ef; border-top: 3px solid var(--gold); border-radius: 14px; background: white; }
    .report-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .report-card-top .service-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
    .report-standard { color: var(--blue); font-weight: 800; font-size: 12px; line-height: 1.5; }
    .report-card h3 { margin: 0 0 12px; color: var(--navy-deep); font-size: 23px; line-height: 1.25; letter-spacing: -.025em; }
    .report-card > p { margin: 0; color: #53637b; font-size: 14px; line-height: 1.8; }
    .report-audience { margin: 19px 0; padding-top: 17px; border-top: 1px solid var(--line); }
    .report-audience dt { color: var(--navy-deep); font-weight: 750; font-size: 12px; margin-bottom: 4px; }
    .report-audience dd { margin: 0; color: #53637b; font-size: 13px; line-height: 1.65; }
    .report-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: auto; padding-top: 5px; }
    .report-actions .button { min-height: 44px; padding: 10px 17px; font-size: 12px; box-shadow: none; }
    .report-detail-link { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; color: var(--navy); font-size: 13px; font-weight: 750; text-underline-offset: 4px; }
    .report-detail-link svg { width: 16px; height: 16px; }
    .report-empty { padding: 34px 22px; color: var(--muted); border: 1px dashed #c6d1e0; border-radius: 14px; text-align: center; }
    .report-empty strong { display: block; color: var(--navy-deep); font-size: 19px; }
    .report-empty button { margin-top: 12px; }
    .is-report .detail-group { padding: 27px; }
    .is-report .detail-group h3 { font-size: 20px; }
    .is-report .detail-group p, .is-report .detail-group ul { font-size: 14px; line-height: 1.8; }
    .is-report .detail-note, .is-report-catalog .detail-note { font-size: 12px; }
    .is-report .detail-aside p, .is-report-catalog .detail-aside p { font-size: 13px; }
    .is-report .detail-aside-list li, .is-report-catalog .detail-aside-list li { font-size: 12px; }
    #detail-laudos-crumb { display: inline-flex; gap: 9px; }
    @media (max-width: 700px) {
      .report-grid { grid-template-columns: 1fr; }
      .report-card { padding: 22px; }
      .report-card h3 { font-size: 22px; }
      .report-toolbar { padding: 18px; }
      .report-filters { gap: 7px; }
      .report-filter { font-size: 11px; padding-inline: 11px; }
      .is-report .detail-group { padding: 20px; gap: 10px; }
    }



    /* Ampliação do catálogo: controles compartilhados em todas as áreas. */
    .report-search-help { margin: 9px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
    .report-suggestions { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 14px; }
    .report-suggestions span { color: var(--muted); font-size: 12px; }
    .report-suggestions button { min-height: 38px; padding: 7px 11px; border: 1px solid #cdd7e6; border-radius: 20px; background: #fff; color: var(--navy); font: inherit; font-size: 12px; cursor: pointer; }
    .report-suggestions button:hover { border-color: var(--navy); }
    .report-results-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 20px; margin: 20px 0 15px; }
    .report-results-head .report-count { margin: 0; }
    .report-clear { border: 0; background: none; color: var(--navy); padding: 8px 0; font: inherit; font-size: 12px; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
    .report-card:focus { outline: 3px solid #87aadd; outline-offset: 4px; }
    .report-card-category { margin: 0 0 8px; color: var(--muted); font-size: 11px; font-weight: 700; }
    .report-more { display: flex; justify-content: center; margin: 24px 0; }
    .report-more .button { color: var(--navy); background: var(--soft); border: 1px solid #cdd7e6; }
    .report-help-band { display: flex; gap: 24px; align-items: center; justify-content: space-between; padding: 27px; margin-top: 36px; background: var(--navy-deep); color: white; border-radius: 16px; }
    .report-help-band h3 { margin: 0 0 8px; color: var(--gold); font-size: 23px; line-height: 1.3; }
    .report-help-band p { max-width: 640px; margin: 0; color: #dae4f4; font-size: 14px; line-height: 1.7; }
    .report-help-band .button { flex-shrink: 0; }
    .report-questions { margin-top: 42px; }
    .report-questions h3 { color: var(--navy-deep); font-size: 25px; line-height: 1.3; }
    .report-questions details { border-bottom: 1px solid var(--line); padding: 15px 0; }
    .report-questions summary { color: var(--navy); cursor: pointer; font-size: 15px; font-weight: 750; line-height: 1.6; }
    .report-questions p, .report-questions ul { max-width: 920px; font-size: 14px; line-height: 1.8; color: var(--muted); }
    .report-questions a { color: var(--navy); text-underline-offset: 3px; }
    .report-standard { overflow-wrap: anywhere; }
    @media (max-width: 700px) {
      .report-help-band { flex-direction: column; align-items: flex-start; padding: 22px; }
      .report-help-band .button { width: 100%; }
      .report-results-head { align-items: flex-start; }
      .report-questions h3 { font-size: 23px; }
    }

    /* Página dedicada a AVCB e CLCB. */
    #fire-page[hidden] { display: none !important; }
    .fire-page { background: #fff; }
    .fire-page h1, .fire-page h2, .fire-page h3 { text-wrap: balance; }
    .fire-page p { text-wrap: pretty; }
    .fire-page svg { width: 22px; height: 22px; flex-shrink: 0; }
    .fire-page .button svg { width: 17px; height: 17px; }
    .fire-hero { color: white; background: radial-gradient(ellipse at 100% 0, #214684 0, transparent 52%), linear-gradient(115deg,#071a42,#0b2864); }
    .fire-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; padding-block: 50px 68px; }
    .fire-hero h1 { margin: 20px 0 20px; font-size: clamp(40px,4.3vw,60px); line-height: 1.07; letter-spacing: -.045em; font-weight: 780; }
    .fire-hero h1 span { display: block; color: var(--gold); }
    .fire-hero-lede { margin: 0; max-width: 655px; color: #e1e9f6; font-size: 17px; line-height: 1.8; }
    .fire-hero .hero-actions { margin-top: 26px; }
    .fire-hero-proof { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 24px; color: #d3e0f3; font-size: 12px; }
    .fire-hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
    .fire-hero-proof svg { width: 13px; height: 13px; color: var(--gold); }
    .fire-start { padding: 29px; background: #061937; border: 1px solid #3b5280; border-radius: 20px; box-shadow: 0 20px 52px #0003; }
    .fire-start-label { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
    .fire-start h2 { font-size: 26px; line-height: 1.2; margin: 18px 0 12px; letter-spacing: -.02em; }
    .fire-start > p { color: #c5d5ec; font-size: 13px; margin: 0 0 20px; }
    .fire-choice { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; margin-top: 9px; border: 1px solid #45608b; background: #102b57; color: white; border-radius: 9px; font-size: 14px; font-weight: 720; text-decoration: none; }
    .fire-choice:hover { border-color: var(--gold); background: #193867; }
    .fire-choice svg { color: var(--gold); width: 17px; height: 17px; }
    .fire-quicknav { border-bottom: 1px solid #dde5ee; background: #f5f7fb; }
    .fire-quicknav .container { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; padding-block: 12px; }
    .fire-quicknav button { min-height: 40px; padding: 7px 0; border: 0; background: transparent; color: var(--navy); font-size: 12px; font-weight: 750; cursor: pointer; }
    .fire-quicknav button:hover { text-decoration: underline; text-underline-offset: 5px; }
    .fire-section { padding-block: 76px; scroll-margin-top: 115px; }
    .fire-section-soft { background: var(--soft); }
    .fire-section-head { max-width: 765px; margin-bottom: 32px; }
    .fire-section-head .eyebrow { color: #986600; }
    .fire-section-head h2 { color: var(--navy-deep); font-size: clamp(29px,3.2vw,43px); line-height: 1.15; letter-spacing: -.033em; margin: 15px 0; }
    .fire-section-head > p { color: #52627b; font-size: 15px; line-height: 1.85; margin: 0; }
    .fire-two { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .fire-license { padding: 28px; border: 1px solid #dce4ef; border-radius: 15px; background: white; }
    .fire-license-code { display: inline-block; color: var(--navy); font-size: 38px; line-height: 1.15; font-weight: 850; letter-spacing: -.045em; border-bottom: 4px solid var(--gold); padding-bottom: 7px; }
    .fire-license h3 { margin: 18px 0 11px; font-size: 19px; line-height: 1.4; color: var(--navy-deep); }
    .fire-license p { margin: 0; color: #52627b; font-size: 14px; line-height: 1.85; }
    .fire-license .fire-license-help { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
    .fire-license-help b { color: var(--navy); }
    .fire-fit-note { margin-top: 22px; padding: 17px 20px; border-left: 3px solid var(--gold); background: #f7f9fc; color: #4a5f7c; font-size: 13px; line-height: 1.75; }
    .fire-service-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 21px; }
    .fire-service { display: flex; flex-direction: column; padding: 27px; border: 1px solid #dce4ef; background: #fff; border-radius: 15px; }
    .fire-small-icon { display: grid; width: 43px; height: 43px; place-items: center; color: var(--navy); background: #fff3c9; border-radius: 10px; }
    .fire-service h3 { color: var(--navy-deep); margin: 21px 0 10px; font-size: 24px; line-height: 1.2; }
    .fire-service p { margin: 0; color: #52627b; font-size: 14px; line-height: 1.8; }
    .fire-list { display: grid; gap: 9px; margin: 17px 0 23px; padding: 0; list-style: none; }
    .fire-list li { position: relative; color: #475c79; padding-left: 19px; font-size: 13px; line-height: 1.7; }
    .fire-list li::before { position: absolute; top: .64em; left: 0; width: 7px; height: 7px; content: ''; border-radius: 50%; background: var(--gold); }
    .fire-service .fire-text-link { margin-top: auto; }
    .fire-text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); font-size: 13px; font-weight: 780; text-decoration: underline; text-underline-offset: 5px; min-height: 42px; }
    .fire-text-link svg { width: 16px; height: 16px; }
    .fire-doc-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
    .fire-document { padding: 25px; border: 1px solid #dfe6ef; border-radius: 13px; background: white; }
    .fire-document h3 { margin: 18px 0 10px; font-size: 19px; line-height: 1.3; color: var(--navy-deep); }
    .fire-document p { margin: 0; color: #52627b; font-size: 14px; line-height: 1.75; }
    .fire-document .fire-document-scope { font-size: 12px; margin-top: 14px; color: #68788f; }
    .fire-gas { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: center; padding: 34px; margin-top: 22px; background: #fff7dd; border: 1px solid #eed89a; border-radius: 15px; }
    .fire-gas .eyebrow { color: #826000; }
    .fire-gas h3 { color: var(--navy-deep); font-size: 28px; line-height: 1.2; letter-spacing: -.025em; margin: 14px 0 13px; }
    .fire-gas p { margin: 0; font-size: 14px; color: #4f5b70; line-height: 1.85; }
    .fire-gas .fire-list { margin-top: 0; }
    .fire-gas .fire-list li::before { background: #ab7900; }
    .fire-training { color: white; background: linear-gradient(118deg,#061937,#0f3473); }
    .fire-training-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 65px; }
    .fire-training .fire-section-head h2 { color: white; }
    .fire-training .fire-section-head .eyebrow, .fire-training h2 span { color: var(--gold); }
    .fire-training .fire-section-head > p { color: #d3e0f2; }
    .fire-training .fire-section-head { margin-bottom: 25px; }
    .fire-training-topics { display: grid; gap: 16px; }
    .fire-training-topic { display: flex; gap: 16px; border: 1px solid #ffffff30; background: #ffffff08; padding: 22px; border-radius: 12px; }
    .fire-training-topic svg { color: var(--gold); }
    .fire-training-topic h3 { margin: 0 0 6px; font-size: 17px; line-height: 1.4; }
    .fire-training-topic p { margin: 0; color: #cfddf0; font-size: 13px; line-height: 1.8; }
    .fire-training-note { margin-top: 17px; color: #c7d7ed; font-size: 12px; line-height: 1.8; }
    .fire-project-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: start; }
    .fire-project-card { padding: 28px; background: #f4f7fb; border: 1px solid #e0e7f1; border-radius: 15px; }
    .fire-project-card h3 { font-size: 22px; color: var(--navy-deep); margin: 0 0 18px; }
    .fire-system { display: flex; align-items: flex-start; gap: 10px; padding: 13px 0; border-top: 1px solid #dce4ef; color: #405573; font-size: 14px; }
    .fire-system svg { color: var(--blue); width: 17px; height: 17px; margin-top: 3px; }
    .fire-process { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 25px; }
    .fire-step { border-top: 3px solid var(--gold); padding-top: 22px; }
    .fire-step-number { color: #8d6600; font-size: 13px; font-weight: 800; }
    .fire-step h3 { margin: 12px 0 9px; color: var(--navy-deep); font-size: 20px; }
    .fire-step p { margin: 0; color: #52627b; font-size: 13px; line-height: 1.8; }
    .fire-faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: start; }
    .fire-faq-layout .fire-section-head h2 { font-size: 37px; }
    .fire-faq-item { border-bottom: 1px solid #dce4ee; }
    .fire-faq-item:first-child { border-top: 1px solid #dce4ee; }
    .fire-faq-item summary { position: relative; padding: 21px 35px 21px 0; cursor: pointer; font-size: 16px; font-weight: 750; line-height: 1.5; color: var(--navy-deep); list-style: none; }
    .fire-faq-item summary::-webkit-details-marker { display: none; }
    .fire-faq-item summary::after { position: absolute; right: 7px; top: 17px; content: '+'; color: #926500; font-size: 24px; font-weight: 500; }
    .fire-faq-item[open] summary::after { content: '−'; }
    .fire-faq-item p { padding: 0 30px 23px 0; margin: 0; color: #4f627d; font-size: 14px; line-height: 1.85; }
    .fire-faq-layout .button { margin-top: 23px; }
    .fire-official-link { display: inline-block; color: var(--blue); font-size: 12px; text-underline-offset: 3px; margin-top: 23px; }
    .fire-final { background: #0b2864; color: white; padding: 56px 0; }
    .fire-final-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 40px; }
    .fire-final h2 { margin: 0 0 14px; font-size: clamp(29px,3.3vw,42px); line-height: 1.15; letter-spacing: -.025em; }
    .fire-final h2 span { color: var(--gold); }
    .fire-final p { margin: 0; color: #d3e1f3; font-size: 15px; line-height: 1.8; }
    .fire-final-action { text-align: center; }
    .fire-final-action p { margin-top: 13px; font-size: 12px; }
    .fire-final-action a:not(.button) { color: #fff; }
    @media (max-width: 960px) {
      .fire-hero-grid { grid-template-columns: 1.1fr .9fr; gap: 30px; }
      .fire-start { padding: 23px; }
      .fire-service-grid, .fire-doc-grid { gap: 15px; }
      .fire-service, .fire-document { padding: 22px; }
      .fire-training-grid, .fire-faq-layout, .fire-project-grid { gap: 35px; }
    }
    @media (max-width: 760px) {
      .fire-hero-grid, .fire-training-grid, .fire-project-grid, .fire-faq-layout, .fire-final-grid, .fire-gas { grid-template-columns: 1fr; }
      .fire-hero-grid { padding-block: 35px 45px; }
      .fire-hero h1 { font-size: clamp(37px,7vw,52px); }
      .fire-hero-lede { font-size: 16px; }
      .fire-start { padding: 25px; }
      .fire-section { padding-block: 54px; }
      .fire-service-grid, .fire-two { grid-template-columns: 1fr; }
      .fire-doc-grid, .fire-process { grid-template-columns: 1fr 1fr; }
      .fire-faq-layout .fire-section-head { margin-bottom: 0; }
      .fire-gas { padding: 26px; gap: 23px; }
      .fire-final-action { text-align: left; }
      .fire-quicknav .container { gap: 3px 17px; }
    }
    @media (max-width: 480px) {
      .fire-doc-grid, .fire-process { grid-template-columns: 1fr; }
      .fire-page .eyebrow { font-size: 10px; letter-spacing: .12em; }
      .fire-hero .hero-actions { flex-direction: column; align-items: stretch; }
      .fire-hero .button { padding: 12px 16px; line-height: 1.5; }
      .fire-license { padding: 23px; }
      .fire-training-topic { padding: 20px; }
      .fire-faq-layout .fire-section-head h2 { font-size: 33px; }
      .fire-faq-item summary { font-size: 15px; }
      .fire-final-action .button { width: 100%; padding-inline: 15px; font-size: 12px; }
    }

    .fire-project-description { color: #52627b; font-size: 14px; line-height: 1.85; }

    /* Ginástica laboral: o mesmo padrão visual da página de AVCB. */
    #labor-page[hidden] { display: none !important; }
    .labor-promise { color: var(--gold); font-size: 16px; font-weight: 750; line-height: 1.6; margin: 0 0 18px; }
    .labor-page .fire-hero h1 { font-size: clamp(39px,4.15vw,58px); }
    .labor-summary-list { padding: 0; margin: 24px 0 0; list-style: none; display: grid; gap: 15px; }
    .labor-summary-list li { display: flex; gap: 12px; align-items: flex-start; color: #d5e2f5; font-size: 14px; line-height: 1.65; }
    .labor-summary-list b { display: grid; flex-shrink: 0; width: 25px; height: 25px; place-items: center; color: var(--gold); border: 1px solid #6b6237; border-radius: 50%; font-size: 11px; }
    .labor-start-cta { margin-top: 25px; }
    .labor-start-cta .button { width: 100%; }
    .labor-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
    .labor-intro .fire-section-head { margin-bottom: 0; }
    .labor-value-panel { padding: 28px; border-left: 4px solid var(--gold); background: #f4f7fb; border-radius: 0 14px 14px 0; }
    .labor-value-panel h3 { margin: 0 0 13px; color: var(--navy-deep); font-size: 24px; line-height: 1.3; }
    .labor-value-panel p { margin: 0; color: #53637b; font-size: 14px; line-height: 1.85; }
    .labor-value-panel .fire-list { margin-bottom: 0; }
    .labor-service h3 { font-size: 21px; }
    .labor-service .fire-document-scope { font-size: 13px; }
    .labor-mode { border-top: 3px solid var(--gold); }
    .labor-mode-label { color: #896000; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
    .labor-mode h3 { margin-top: 14px; font-size: 23px; }
    .labor-mode .fire-list { margin-bottom: 0; }
    .labor-calendar { overflow: hidden; border: 1px solid #dce4ef; border-radius: 15px; background: #fff; }
    .labor-calendar-intro { padding: 23px 27px; background: var(--navy); color: #fff; }
    .labor-calendar-intro h3 { margin: 0 0 6px; font-size: 23px; }
    .labor-calendar-intro p { margin: 0; color: #d8e4f6; font-size: 13px; }
    .labor-table-scroll { overflow-x: auto; }
    .labor-schedule { width: 100%; border-collapse: collapse; text-align: left; }
    .labor-schedule caption { padding: 19px 25px 5px; color: #62738b; text-align: left; font-size: 12px; }
    .labor-schedule th { padding: 16px 25px; color: var(--navy-deep); font-size: 13px; font-weight: 750; background: #f6f8fb; }
    .labor-schedule td { padding: 21px 25px; border-top: 1px solid #e1e7f0; color: #52647f; font-size: 14px; line-height: 1.7; vertical-align: top; }
    .labor-schedule td:first-child { color: var(--navy); font-weight: 750; width: 24%; }
    .labor-calendar-note { padding: 16px 25px; margin: 0; border-top: 1px solid #e1e7f0; color: #5e718d; font-size: 12px; line-height: 1.8; background: #fbfcfe; }
    .labor-quote-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
    .labor-quote-layout .fire-section-head { margin-bottom: 20px; }
    .labor-quote-points { display: grid; gap: 12px; padding: 0; list-style: none; }
    .labor-quote-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.7; color: #52647f; }
    .labor-quote-points svg { color: #986800; width: 15px; height: 15px; margin-top: 5px; }
    .labor-form { padding: 29px; background: white; border: 1px solid #dce4ef; border-radius: 18px; box-shadow: 0 14px 36px #0b286409; }
    .labor-form h3 { margin: 0 0 7px; color: var(--navy-deep); font-size: 24px; line-height: 1.3; }
    .labor-form > p { margin: 0 0 22px; color: #62738b; font-size: 13px; }
    .labor-form .field { gap: 7px; margin-bottom: 16px; }
    .labor-form .field label { font-size: 12px; }
    .labor-form .field input, .labor-form .field select, .labor-form .field textarea { min-height: 46px; font: inherit; font-size: 14px; color: #233b5c; }
    .labor-form .field select { width: 100%; padding: 10px; border: 1px solid #d6dfeb; border-radius: 10px; background: #f8f9fb; }
    .labor-form .button { width: 100%; }
    .labor-form .labor-form-note { margin: 14px 0 0; font-size: 11px; text-align: center; line-height: 1.7; color: #62738b; }
    .labor-footer-links { display: flex; flex-wrap: wrap; gap: 13px 22px; margin-top: 25px; }
    .labor-footer-links a { color: #dbe6f6; font-size: 12px; text-underline-offset: 4px; }
    @media (max-width: 960px) {
      .labor-intro, .labor-quote-layout { gap: 30px; }
      .labor-form { padding: 24px; }
      .labor-schedule th, .labor-schedule td { padding-inline: 19px; }
    }
    @media (max-width: 760px) {
      .labor-intro, .labor-quote-layout { grid-template-columns: 1fr; }
      .labor-page .fire-hero h1 { font-size: clamp(38px,7vw,52px); }
      .labor-schedule { min-width: 580px; }
    }
    @media (max-width: 480px) {
      .labor-form .form-row { grid-template-columns: 1fr; gap: 0; }
      .labor-form { padding: 22px; }
      .labor-promise { font-size: 15px; }
      .labor-start-cta .button { padding-inline: 14px; }
    }


    /* Qualidade e auditorias: identidade compartilhada com as páginas de serviços. */
    #quality-page[hidden] { display: none !important; }
    .quality-page .fire-hero h1 { font-size: clamp(39px,4.1vw,57px); }
    .quality-promise { color: var(--gold); font-size: 16px; font-weight: 750; line-height: 1.65; margin: 0 0 17px; }
    .quality-start .fire-choice { width: 100%; text-align: left; font: inherit; font-size: 14px; font-weight: 720; cursor: pointer; line-height: 1.6; }
    .quality-start .quality-start-note { margin: 19px 0 0; color: #bed0eb; font-size: 12px; line-height: 1.8; }
    .quality-service h3 { font-size: 22px; }
    .quality-service .fire-list { margin-bottom: 0; }
    .quality-standards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
    .quality-standard { display: flex; flex-direction: column; min-width: 0; }
    .quality-standard .fire-license-code { align-self: start; font-size: clamp(30px,3vw,38px); white-space: nowrap; }
    .quality-standard .fire-text-link { margin-top: auto; }
    .quality-page button.fire-text-link { border: 0; background: transparent; padding: 0; text-align: left; cursor: pointer; }
    .quality-other { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; padding: 25px 28px; background: #fff7df; border: 1px solid #ead99e; border-radius: 14px; margin-top: 22px; }
    .quality-other h3 { margin: 0 0 8px; font-size: 20px; color: var(--navy-deep); }
    .quality-other p { margin: 0; color: #52627b; font-size: 14px; line-height: 1.8; }
    .quality-reference { color: #61718a; font-size: 12px; line-height: 1.9; margin: 19px 0 0; }
    .quality-reference a { color: var(--navy); text-underline-offset: 3px; }
    .quality-audit { border-top: 3px solid var(--gold); }
    .quality-kicker { color: #8b6300; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    .quality-audit h3 { font-size: 22px; }
    .quality-audit .quality-audit-purpose { font-size: 13px; margin-top: 18px; padding-top: 17px; border-top: 1px solid #e0e7f1; color: var(--navy); }
    .quality-deliverables { margin-top: 25px; padding: 27px 30px; border: 1px solid #e0e7f1; border-radius: 15px; background: #f5f8fc; display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: start; }
    .quality-deliverables h3 { color: var(--navy-deep); margin: 0 0 9px; font-size: 23px; }
    .quality-deliverables p { margin: 0; color: #52627b; font-size: 13px; line-height: 1.85; }
    .quality-deliverables .fire-list { margin: 0; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
    .quality-certification { margin-top: 25px; border-left: 4px solid var(--gold); padding: 20px 24px; background: #faf7ed; }
    .quality-certification h3 { margin: 0 0 8px; color: var(--navy-deep); font-size: 19px; }
    .quality-certification p { margin: 0; color: #4f6076; font-size: 13px; line-height: 1.85; }
    .quality-certification a { display: inline-block; margin-top: 12px; color: var(--navy); font-size: 12px; text-underline-offset: 3px; }
    .quality-page .fire-training .button { margin-top: 5px; }
    .quality-quote-note { padding: 17px 20px; border-left: 3px solid var(--gold); background: #fff8e5; margin-top: 25px; font-size: 13px; line-height: 1.8; color: #51617a; }
    .quality-page .labor-form textarea { resize: vertical; }
    @media (max-width: 960px) {
      .quality-standards { gap: 15px; }
      .quality-standard { padding: 22px; }
      .quality-standard .fire-license-code { font-size: 30px; }
      .quality-deliverables { grid-template-columns: 1fr; gap: 20px; }
    }
    @media (max-width: 760px) {
      .quality-standards, .quality-other { grid-template-columns: 1fr; }
      .quality-page .fire-hero h1 { font-size: clamp(38px,7vw,52px); }
      .quality-standard .fire-license-code { font-size: 36px; }
      .quality-other { padding: 24px; }
      .quality-other .button { justify-self: start; }
      .quality-deliverables { padding: 25px; }
    }
    @media (max-width: 480px) {
      .quality-deliverables .fire-list { grid-template-columns: 1fr; }
      .quality-promise { font-size: 15px; }
      .quality-other .button { width: 100%; }
    }


    /* Meio ambiente e regularização sanitária. */
    #environment-page[hidden] { display: none !important; }
    .environment-page .fire-hero h1 { font-size: clamp(38px,4vw,56px); }
    .environment-promise { color: var(--gold); font-size: 16px; font-weight: 750; line-height: 1.65; margin: 0 0 18px; }
    .environment-start .fire-choice { width: 100%; text-align: left; font: inherit; font-size: 14px; font-weight: 720; cursor: pointer; line-height: 1.6; }
    .environment-start .environment-start-note { color: #c6d7ee; margin: 20px 0 0; font-size: 12px; line-height: 1.8; }
    .environment-page button.fire-text-link { background: transparent; border: 0; padding: 0; text-align: left; cursor: pointer; }
    .environment-license-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
    .environment-license { display: flex; flex-direction: column; }
    .environment-license .fire-license-code { align-self: start; }
    .environment-license .fire-text-link { margin-top: 18px; }
    .environment-other-licenses { margin-top: 28px; padding: 27px; border: 1px solid #dce4ef; border-radius: 15px; background: #f7f9fc; }
    .environment-other-licenses h3 { margin: 0 0 8px; color: var(--navy-deep); font-size: 23px; }
    .environment-other-licenses > p { margin: 0 0 20px; color: #52627b; font-size: 14px; line-height: 1.85; }
    .environment-license-options { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; align-items: start; }
    .environment-license-detail { padding: 18px 20px; border: 1px solid #dce4ef; background: white; border-radius: 10px; }
    .environment-license-detail summary { cursor: pointer; color: var(--navy-deep); font-weight: 750; font-size: 14px; line-height: 1.6; }
    .environment-license-detail summary span { display: inline-block; margin-right: 9px; color: #906700; }
    .environment-license-detail p { font-size: 13px; color: #52627b; line-height: 1.8; margin: 13px 0 0; }
    .environment-license-note { margin: 18px 0 0; font-size: 13px; line-height: 1.85; color: #53657e; }
    .environment-reference { color: #60728b; font-size: 12px; line-height: 1.8; margin-top: 20px; }
    .environment-reference a { color: var(--navy); text-underline-offset: 3px; }
    .environment-agency h3 { font-size: 21px; }
    .environment-agency .fire-list, .environment-service .fire-list { margin-bottom: 0; }
    .environment-agency-label { color: var(--navy); font-size: 22px; letter-spacing: .04em; font-weight: 850; border-bottom: 3px solid var(--gold); align-self: start; padding-bottom: 7px; }
    .environment-service h3 { font-size: 21px; }
    .environment-renew { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; margin-top: 24px; padding: 26px 28px; border-radius: 15px; border: 1px solid #ebdba2; background: #fff7de; }
    .environment-renew h3 { margin: 0 0 9px; color: var(--navy-deep); font-size: 23px; }
    .environment-renew p { margin: 0; color: #52627b; font-size: 14px; line-height: 1.85; }
    .environment-sanitary .button { margin-top: 5px; }
    .environment-sanitary-note { border-left: 3px solid var(--gold); padding: 13px 0 13px 18px; margin-top: 24px; color: #d4e1f3; font-size: 13px; line-height: 1.85; }
    .environment-sanitary-note strong { color: white; }
    .environment-sanitary .environment-reference a { color: #e2ebfa; }
    .environment-quote-note { padding: 18px 20px; margin: 24px 0 5px; background: #fff8e6; border-left: 3px solid var(--gold); color: #52647c; font-size: 13px; line-height: 1.8; }
    .environment-page textarea { resize: vertical; }
    @media (max-width: 960px) { .environment-license-grid { gap: 15px; } .environment-license { padding: 23px; } }
    @media (max-width: 760px) {
      .environment-license-grid, .environment-renew { grid-template-columns: 1fr; }
      .environment-page .fire-hero h1 { font-size: clamp(37px,7vw,52px); }
      .environment-renew .button { justify-self: start; }
    }
    @media (max-width: 480px) {
      .environment-license-options { grid-template-columns: 1fr; }
      .environment-other-licenses, .environment-renew { padding: 23px; }
      .environment-promise { font-size: 15px; }
      .environment-renew .button { width: 100%; }
    }


    /* Perícias e assistência técnica para empresas e pessoas físicas. */
    #expertise-page[hidden] { display: none !important; }
    .expertise-page .fire-hero h1 { font-size: clamp(38px,4.1vw,57px); }
    .expertise-promise { color: var(--gold); font-size: 16px; font-weight: 750; line-height: 1.65; margin: 0 0 18px; }
    .expertise-start .fire-choice { width: 100%; text-align: left; font: inherit; font-size: 14px; font-weight: 720; cursor: pointer; line-height: 1.6; }
    .expertise-start .expertise-start-note { color: #c6d7ee; margin: 20px 0 0; font-size: 12px; line-height: 1.8; }
    .expertise-page button.fire-text-link { background: transparent; border: 0; padding: 0; text-align: left; cursor: pointer; }
    .expertise-audience { padding: 29px; border: 1px solid #dce4ef; border-top: 4px solid var(--gold); border-radius: 15px; background: white; display: flex; flex-direction: column; }
    .expertise-kicker { font-size: 10px; font-weight: 800; color: #886100; letter-spacing: .09em; text-transform: uppercase; }
    .expertise-audience h3 { color: var(--navy-deep); font-size: 27px; line-height: 1.25; margin: 15px 0 12px; }
    .expertise-audience p { margin: 0; font-size: 14px; line-height: 1.85; color: #52627b; }
    .expertise-audience .button { align-self: start; margin-top: auto; }
    .expertise-lawyers { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; margin-top: 23px; padding: 25px 28px; background: #fff7df; border: 1px solid #ecdaa0; border-radius: 14px; }
    .expertise-lawyers h3 { margin: 0 0 8px; color: var(--navy-deep); font-size: 22px; }
    .expertise-lawyers p { margin: 0; color: #52627b; font-size: 14px; line-height: 1.8; }
    .expertise-service h3 { font-size: 21px; }
    .expertise-service .fire-list, .expertise-area .fire-list { margin-bottom: 0; }
    .expertise-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .expertise-area h3 { font-size: 24px; margin-top: 14px; }
    .expertise-docs .fire-training-topic { align-items: flex-start; }
    .expertise-docs .button { margin-top: 5px; }
    .expertise-reference { color: #60728b; font-size: 12px; line-height: 1.8; margin-top: 20px; }
    .expertise-reference a { color: var(--navy); text-underline-offset: 3px; }
    .expertise-table .labor-schedule th[scope="row"] { width: 23%; border-top: 1px solid #e1e7f0; vertical-align: top; }
    .expertise-table .labor-schedule th { font-size: 13px; }
    .expertise-table .labor-schedule td { font-size: 14px; }
    .expertise-quote-note { padding: 18px 20px; margin: 23px 0 4px; background: #fff8e6; border-left: 3px solid var(--gold); color: #52647c; font-size: 13px; line-height: 1.8; }
    .expertise-page textarea { resize: vertical; }
    .expertise-form .expertise-form-help { font-size: 11px; color: #61728a; line-height: 1.65; margin: 0; }
    @media (max-width: 760px) {
      .expertise-areas, .expertise-lawyers { grid-template-columns: 1fr; }
      .expertise-page .fire-hero h1 { font-size: clamp(37px,7vw,52px); }
      .expertise-lawyers .button { justify-self: start; }
    }
    @media (max-width: 480px) {
      .expertise-audience, .expertise-lawyers { padding: 23px; }
      .expertise-audience h3 { font-size: 25px; }
      .expertise-audience .button, .expertise-lawyers .button { width: 100%; }
      .expertise-promise { font-size: 15px; }
    }


    /* Saúde ocupacional: planejamento, atendimento e acompanhamento. */
    #health-page[hidden] { display: none !important; }
    .health-page .fire-hero h1 { font-size: clamp(38px,4.1vw,57px); }
    .health-promise { color: var(--gold); font-size: 16px; font-weight: 750; line-height: 1.65; margin: 0 0 18px; }
    .health-start .fire-choice { width: 100%; text-align: left; font: inherit; font-size: 14px; font-weight: 720; cursor: pointer; line-height: 1.6; }
    .health-start .health-start-note { color: #c6d7ee; margin: 20px 0 0; font-size: 12px; line-height: 1.8; }
    .health-page button.fire-text-link { background: transparent; border: 0; padding: 0; text-align: left; cursor: pointer; }
    .health-service h3 { font-size: 21px; }
    .health-service .fire-list { margin-bottom: 0; }
    .health-definition .fire-license-code { font-size: 34px; }
    .health-reference { color: #60728b; font-size: 12px; line-height: 1.8; margin: 21px 0 0; }
    .health-reference a { color: var(--navy); text-underline-offset: 3px; }
    .health-table .labor-schedule th[scope="row"] { width: 24%; border-top: 1px solid #e1e7f0; vertical-align: top; }
    .health-table .labor-schedule th { font-size: 13px; }
    .health-table .labor-schedule td { font-size: 14px; vertical-align: top; }
    .health-complements { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
    .health-complement { padding: 24px; }
    .health-complement h3 { font-size: 20px; }
    .health-support { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: center; padding: 29px; margin-top: 28px; background: #fff7df; border: 1px solid #ecdaa0; border-radius: 15px; }
    .health-support h3 { margin: 0 0 10px; color: var(--navy-deep); font-size: 24px; line-height: 1.3; }
    .health-support p { color: #52627b; font-size: 14px; line-height: 1.85; margin: 0; }
    .health-support .fire-list { margin: 0; }
    .health-page .fire-training .health-reference { color: #c7d7ed; }
    .health-page .fire-training .health-reference a { color: #f4dc93; }
    .health-quote-note { padding: 18px 20px; margin: 23px 0 4px; background: #fff8e6; border-left: 3px solid var(--gold); color: #52647c; font-size: 13px; line-height: 1.8; }
    .health-page textarea { resize: vertical; }
    .health-form .health-form-help { font-size: 11px; color: #61728a; line-height: 1.65; margin: 0; }
    @media (max-width: 960px) { .health-complements { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 760px) {
      .health-support { grid-template-columns: 1fr; gap: 20px; }
      .health-page .fire-hero h1 { font-size: clamp(37px,7vw,52px); }
    }
    @media (max-width: 480px) {
      .health-complements { grid-template-columns: 1fr; }
      .health-support { padding: 23px; }
      .health-promise { font-size: 15px; }
    }


    /* Assessoria e consultoria de segurança do trabalho. */
    #safety-page[hidden] { display: none !important; }
    .safety-page .fire-hero h1 { font-size: clamp(38px,4.1vw,57px); }
    .safety-promise { color: var(--gold); font-size: 16px; font-weight: 750; line-height: 1.65; margin: 0 0 18px; }
    .safety-start .fire-choice { width: 100%; text-align: left; font: inherit; font-size: 14px; font-weight: 720; cursor: pointer; line-height: 1.6; }
    .safety-start .safety-start-note { color: #c6d7ee; margin: 20px 0 0; font-size: 12px; line-height: 1.8; }
    .safety-service h3 { font-size: 21px; }
    .safety-service .safety-service-help { margin-top: 18px; padding-top: 15px; border-top: 1px solid #e4eaf2; color: #536b88; font-size: 12px; }
    .safety-reference { color: #60728b; font-size: 12px; line-height: 1.8; margin: 21px 0 0; }
    .safety-reference a { color: var(--navy); text-underline-offset: 3px; }
    .safety-page .fire-training .safety-reference { color: #c7d7ed; }
    .safety-page .fire-training .safety-reference a { color: #f4dc93; }
    .safety-table .labor-schedule th[scope="row"] { width: 30%; border-top: 1px solid #e1e7f0; vertical-align: top; }
    .safety-table .labor-schedule th strong { display: block; font-size: 22px; color: var(--navy); margin-bottom: 5px; }
    .safety-table .labor-schedule th span { display: block; font-size: 12px; font-weight: 600; line-height: 1.65; }
    .safety-table .labor-schedule td { font-size: 14px; vertical-align: top; }
    .safety-related { display: flex; flex-wrap: wrap; gap: 7px 25px; margin-top: 18px; }
    .safety-packages { background: var(--soft); }
    .safety-package { display: flex; flex-direction: column; padding: 30px; border: 1px solid #dce4ef; border-top: 4px solid var(--gold); border-radius: 15px; background: #fff; }
    .safety-package .safety-package-label { color: #8a6100; font-size: 11px; letter-spacing: .08em; font-weight: 800; text-transform: uppercase; }
    .safety-package h3 { color: var(--navy-deep); font-size: 27px; line-height: 1.25; margin: 14px 0 12px; }
    .safety-package p { color: #52627b; font-size: 14px; line-height: 1.85; margin: 0; }
    .safety-package .button { margin-top: auto; align-self: start; }
    .safety-sizes { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
    .safety-sizes span { padding: 9px 13px; background: #fff; border: 1px solid #dce4ef; border-radius: 8px; font-size: 12px; font-weight: 750; color: var(--navy); }
    .safety-event { display: inline-block; padding: 6px 10px; color: var(--navy); background: #fff3c9; border-radius: 6px; font-size: 13px; font-weight: 800; }
    .safety-package-plus { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; padding: 26px 29px; margin-top: 24px; background: #fff7df; border: 1px solid #ecdaa0; border-radius: 15px; }
    .safety-package-plus h3 { margin: 0 0 9px; font-size: 24px; line-height: 1.3; color: var(--navy-deep); }
    .safety-package-plus p { margin: 0; font-size: 14px; line-height: 1.85; color: #52627b; }
    .safety-page textarea { resize: vertical; }
    .safety-form .safety-form-help { font-size: 11px; color: #61728a; line-height: 1.65; margin: 0; }
    @media (max-width: 760px) { .safety-page .fire-hero h1 { font-size: clamp(37px,7vw,52px); } .safety-package-plus { grid-template-columns: 1fr; } .safety-package-plus .button { justify-self: start; } }
    @media (max-width: 480px) { .safety-package { padding: 23px; } .safety-promise { font-size: 15px; } .safety-package .button { width: 100%; } }


    /* Serviços gerais, manutenção e conservação de imóveis. */
    #maintenance-page[hidden] { display: none !important; }
    .maintenance-page .fire-hero h1 { font-size: clamp(38px,4.1vw,57px); }
    .maintenance-promise { color: var(--gold); font-size: 16px; font-weight: 750; line-height: 1.65; margin: 0 0 18px; }
    .maintenance-start .fire-choice { width: 100%; text-align: left; font: inherit; font-size: 14px; font-weight: 720; cursor: pointer; line-height: 1.6; }
    .maintenance-start .maintenance-start-note { color: #c6d7ee; margin: 20px 0 0; font-size: 12px; line-height: 1.8; }
    .maintenance-service h3 { font-size: 21px; }
    .maintenance-service[hidden] { display: none !important; }
    .maintenance-toolbar { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: end; padding: 21px 24px; margin-bottom: 23px; border: 1px solid #dce4ef; border-radius: 13px; background: #f5f7fb; }
    .maintenance-filter-field { flex: 1 1 280px; min-width: 0; max-width: 510px; }
    .maintenance-filter-field label { display: block; margin-bottom: 8px; color: var(--navy); font-size: 13px; font-weight: 750; }
    .maintenance-filter-field select { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #cdd7e6; border-radius: 9px; color: var(--navy); background: #fff; font: inherit; font-size: 14px; }
    .maintenance-filter-status { color: #536780; font-size: 12px; margin: 0 0 11px; }
    .maintenance-service-grid.is-filtered { grid-template-columns: minmax(0,760px); }
    .maintenance-page button.fire-text-link { background: transparent; border: 0; padding: 0; text-align: left; cursor: pointer; }
    .maintenance-water-note { margin: 20px 0; padding: 17px 19px; border-left: 3px solid var(--gold); background: #ffffff09; color: #d3e0f2; font-size: 13px; line-height: 1.8; }
    .maintenance-request { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 27px 30px; margin-top: 25px; background: #fff7df; border: 1px solid #ecdaa0; border-radius: 15px; }
    .maintenance-request h3 { margin: 0 0 9px; font-size: 24px; line-height: 1.3; color: var(--navy-deep); }
    .maintenance-request p { margin: 0; font-size: 14px; line-height: 1.85; color: #52627b; }
    .maintenance-plan { display: flex; flex-direction: column; padding: 29px; border: 1px solid #dce4ef; border-top: 4px solid var(--gold); border-radius: 15px; background: #fff; }
    .maintenance-plan-label { color: #8a6100; font-size: 11px; letter-spacing: .07em; font-weight: 800; text-transform: uppercase; }
    .maintenance-plan h3 { color: var(--navy-deep); font-size: 26px; line-height: 1.25; margin: 14px 0 12px; }
    .maintenance-plan p { color: #52627b; font-size: 14px; line-height: 1.85; margin: 0; }
    .maintenance-plan .button { margin-top: auto; align-self: start; }
    .maintenance-related { display: flex; flex-wrap: wrap; gap: 7px 25px; margin-top: 18px; }
    .maintenance-page textarea { resize: vertical; }
    .maintenance-form .maintenance-form-help { font-size: 11px; color: #61728a; line-height: 1.65; margin: 0; }
    @media (max-width: 760px) {
      .maintenance-page .fire-hero h1 { font-size: clamp(37px,7vw,52px); }
      .maintenance-request { grid-template-columns: 1fr; gap: 20px; }
      .maintenance-request .button { justify-self: start; }
    }
    @media (max-width: 480px) {
      .maintenance-plan, .maintenance-request { padding: 23px; }
      .maintenance-promise { font-size: 15px; }
      .maintenance-plan .button, .maintenance-request .button { width: 100%; }
    }

    /* Treinamentos: catálogo, referências normativas e orçamento. */
    #training-catalog[hidden], #training-catalog [hidden] { display: none !important; }
    .is-training-catalog #detail-title span { color: var(--gold); }
    .is-training-catalog .detail-aside p { font-size: 13px; }
    .is-training-catalog .detail-aside-list li { font-size: 12px; }
    .is-training-catalog .detail-note { font-size: 12px; }
    .training-intro-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin: 26px 0 36px; }
    .training-intro-grid article { padding: 23px; border: 1px solid var(--line); background: var(--soft); border-radius: 13px; }
    .training-intro-grid span { font-size: 11px; font-weight: 750; color: var(--blue); }
    .training-intro-grid h3, .training-intro-grid h4 { margin: 10px 0; color: var(--navy-deep); font-size: 19px; line-height: 1.4; }
    .training-intro-grid p { font-size: 13px; color: var(--muted); line-height: 1.8; margin: 0; }
    .training-search-row { display: grid; grid-template-columns: minmax(0,1.7fr) minmax(0,1fr); gap: 18px; }
    .training-search-row > div { min-width: 0; }
    #training-nr { text-overflow: ellipsis; padding-right: 30px; }
    .training-nr-note { padding: 20px 23px; margin: 0 0 22px; background: #fff8df; border-left: 4px solid var(--gold); border-radius: 8px; }
    .training-nr-note strong { font-size: 16px; color: var(--navy-deep); }
    .training-nr-note p { margin: 8px 0; font-size: 13px; line-height: 1.8; color: #526079; }
    .training-nr-note a, .training-details a { font-size: 12px; color: var(--navy); text-underline-offset: 3px; }
    .training-grid { align-items: start; }
    .training-card { display: flex; flex-direction: column; min-width: 0; padding: 26px; border: 1px solid #dce4ef; border-top: 3px solid var(--gold); border-radius: 14px; background: #fff; }
    .training-card:focus, .training-card summary:focus-visible, #training-catalog button:focus-visible { outline: 3px solid #87aadd; outline-offset: 4px; }
    .training-card-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
    .training-kind { color: var(--muted); font-size: 10px; font-weight: 650; }
    .training-card h3 { color: var(--navy-deep); font-size: 23px; line-height: 1.3; letter-spacing: -.025em; margin: 0 0 12px; overflow-wrap: break-word; }
    .training-card > p { font-size: 14px; line-height: 1.8; color: #53637b; margin: 0 0 17px; }
    .training-hours { padding: 12px 15px; background: #fff7da; border-radius: 8px; margin: 0 0 16px; }
    .training-hours dt { color: #6e571d; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; font-weight: 750; margin-bottom: 4px; }
    .training-hours dd { color: var(--navy-deep); font-size: 14px; line-height: 1.6; margin: 0; font-weight: 750; }
    .training-card .button { min-height: 44px; padding: 11px 18px; font-size: 13px; align-self: flex-start; box-shadow: none; }
    .training-details { border-top: 1px solid var(--line); padding: 14px 0 0; margin: 0 0 18px; }
    .training-details summary { cursor: pointer; color: var(--navy); font-size: 13px; font-weight: 750; line-height: 1.6; padding: 5px 0; }
    .training-details dl { margin: 16px 0; }
    .training-details dt { font-size: 12px; color: var(--navy-deep); font-weight: 750; margin-top: 16px; }
    .training-details dd { margin: 5px 0 0; font-size: 13px; line-height: 1.8; color: #53637b; }
    .training-sources { display: flex; flex-wrap: wrap; gap: 8px 14px; }
    .training-reference { font-size: 11px; color: var(--muted); line-height: 1.7; margin-top: 15px; }
    .training-explain { margin-top: 56px; }
    .training-explain > h3, .training-quote-copy > h3 { color: var(--navy-deep); font-size: 30px; line-height: 1.25; margin: 12px 0 18px; max-width: 760px; }
    .training-small { font-size: 12px; line-height: 1.8; color: var(--muted); }
    .training-comparison { border: 1px solid var(--line); border-radius: 14px; padding: 22px; margin: 32px 0; }
    .training-comparison summary { color: var(--navy); font-size: 17px; font-weight: 750; cursor: pointer; line-height: 1.6; }
    .training-comparison p { font-size: 13px; line-height: 1.8; color: var(--muted); }
    .training-table-wrap { overflow-x: auto; margin-top: 20px; }
    .training-table-wrap table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 13px; line-height: 1.6; }
    .training-table-wrap caption { text-align: left; padding-bottom: 12px; color: var(--navy); font-weight: 750; }
    .training-table-wrap th, .training-table-wrap td { padding: 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
    .training-table-wrap thead { color: white; background: var(--navy); }
    .training-table-wrap tbody th { color: var(--navy-deep); }
    .training-table-wrap tbody tr:nth-child(even) { background: var(--soft); }
    .training-quote { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.2fr); gap: 40px; align-items: start; margin-top: 54px; padding: 38px 0; scroll-margin-top: 100px; }
    .training-quote-copy > p, .training-quote-copy li { font-size: 14px; color: var(--muted); line-height: 1.9; }
    .training-quote-copy ul { padding-left: 20px; }
    .training-quote-copy li { margin-bottom: 9px; }
    .training-fit { border-left: 3px solid var(--gold); background: var(--soft); padding: 19px; margin-top: 26px; border-radius: 0 8px 8px 0; }
    .training-fit strong { font-size: 14px; color: var(--navy-deep); }
    .training-fit p { font-size: 13px; color: var(--muted); line-height: 1.8; margin: 6px 0 0; }
    #training-quote-form select { text-overflow: ellipsis; }
    #training-quote-form .field { min-width: 0; }
    #training-quote-form textarea { resize: vertical; }
    .training-nr-guide { margin-top: 20px; }
    .training-nr-guide article { padding: 15px 0; border-top: 1px solid var(--line); }
    .training-nr-guide h4 { font-size: 14px; color: var(--navy); margin: 0; }
    .training-nr-guide p { margin: 8px 0; font-size: 13px; }
    .training-nr-guide a { font-size: 12px; }
    @media(max-width:900px) {
      .training-intro-grid { grid-template-columns: 1fr; gap: 12px; }
      .training-quote { grid-template-columns: 1fr; gap: 22px; }
    }
    @media(max-width:700px) {
      .training-search-row { grid-template-columns: 1fr; gap: 14px; }
      .training-card { padding: 22px; }
      .training-card h3 { font-size: 22px; }
      .training-comparison { padding: 18px; }
      .training-quote-copy > h3, .training-explain > h3 { font-size: 26px; }
    }

  
    /* Engenharia civil: projetos, reparos e documentação por especialidade. */
    #civil-page[hidden], #civil-page [hidden] { display: none !important; }
    .civil-page .fire-hero h1 { font-size: clamp(39px,4.1vw,57px); }
    .civil-promise { color: var(--gold); font-size: 17px; font-weight: 750; line-height: 1.6; margin: 0 0 17px; }
    .civil-start .fire-choice { width: 100%; text-align: left; font: inherit; font-size: 14px; font-weight: 720; cursor: pointer; line-height: 1.6; }
    .civil-start .civil-start-note { margin: 20px 0 0; color: #bed0eb; font-size: 12px; line-height: 1.8; }
    .civil-page .fire-quicknav svg { display: none; }
    .civil-page button.fire-text-link { padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
    .civil-toolbar { display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 16px; align-items: end; padding: 23px; border: 1px solid #dce4ef; background: #f5f7fb; border-radius: 14px; }
    .civil-filter-field { display: grid; gap: 8px; min-width: 0; }
    .civil-filter-field label { color: #304769; font-size: 12px; font-weight: 750; }
    .civil-filter-field input, .civil-filter-field select { width: 100%; min-width: 0; height: 48px; padding: 10px 12px; border: 1px solid #cbd7e6; border-radius: 9px; background: white; color: #304769; font: inherit; font-size: 14px; }
    .civil-filter-field input:focus, .civil-filter-field select:focus { outline: 2px solid #1d559c; outline-offset: 2px; }
    .civil-reset { min-height: 48px; padding: 10px 13px; border: 1px solid #cbd7e6; border-radius: 9px; color: var(--navy); background: white; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
    .civil-reset:hover { border-color: #8b9eb8; background: #edf2f8; }
    .civil-result-count { margin: 15px 0 23px; color: #61718a; font-size: 12px; }
    .civil-service-grid { align-items: start; }
    .civil-service { min-width: 0; }
    .civil-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .civil-card-number { font-size: 12px; font-weight: 800; color: #8997ac; letter-spacing: .08em; }
    .civil-service h3 { font-size: 23px; line-height: 1.25; }
    .civil-service > p { min-height: 76px; }
    .civil-service .fire-list { margin-bottom: 18px; }
    .civil-scope { border-top: 1px solid #e0e7ef; }
    .civil-scope > summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 46px; padding-top: 10px; cursor: pointer; list-style: none; color: var(--navy); font-size: 13px; font-weight: 780; }
    .civil-scope > summary::-webkit-details-marker { display: none; }
    .civil-scope > summary > span { color: #8e6500; font-size: 24px; font-weight: 500; transition: transform .15s; }
    .civil-scope[open] > summary > span { transform: rotate(45deg); }
    .civil-service-item { padding: 20px 0 17px; border-bottom: 1px solid #e0e7ef; }
    .civil-service-item:last-child { padding-bottom: 0; border-bottom: 0; }
    .civil-service-item h4 { margin: 0 0 9px; color: #15345f; font-size: 16px; line-height: 1.45; }
    .civil-service-item p { font-size: 13px; line-height: 1.8; }
    .civil-service-item .fire-text-link { font-size: 12px; margin-top: 8px; min-height: 40px; }
    .civil-service-grid.is-filtered { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .civil-service-grid.is-single { grid-template-columns: minmax(0,900px); }
    .civil-service-grid.is-single .civil-service-items { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; }
    .civil-service-grid.is-single .civil-service > p { min-height: 0; }
    .civil-empty { padding: 34px; background: #f5f7fb; border: 1px dashed #bdcce0; border-radius: 14px; text-align: center; }
    .civil-empty h3 { color: var(--navy); margin: 0 0 10px; }
    .civil-empty p { color: #52627b; font-size: 14px; line-height: 1.8; margin: 0 0 21px; }
    .civil-combined { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 29px; padding: 27px; border: 1px solid #ecdca7; border-radius: 14px; background: #fff9e9; }
    .civil-combined h3 { color: var(--navy-deep); margin: 0 0 8px; font-size: 21px; }
    .civil-combined p { color: #57647a; margin: 0; font-size: 14px; line-height: 1.8; max-width: 670px; }
    .civil-combined .button { flex-shrink: 0; }
    .civil-project-points { list-style: none; display: grid; gap: 14px; padding: 0; margin: 26px 0; }
    .civil-project-points li { display: flex; align-items: flex-start; gap: 11px; color: #d3e0f2; font-size: 14px; line-height: 1.75; }
    .civil-project-points svg { color: var(--gold); width: 14px; height: 14px; margin-top: 5px; flex-shrink: 0; }
    .civil-land-types { display: grid; gap: 21px; margin-bottom: 29px; }
    .civil-land-types h3 { color: var(--navy); font-size: 17px; margin: 0 0 6px; }
    .civil-land-types p { color: #52627b; font-size: 14px; line-height: 1.8; margin: 0; }
    .civil-land-steps { list-style: none; counter-reset: civil-step; padding: 0; margin: 0; }
    .civil-land-steps li { counter-increment: civil-step; position: relative; padding: 0 0 23px 42px; }
    .civil-land-steps li::before { content: counter(civil-step); display: grid; place-items: center; position: absolute; left: 0; top: 0; width: 27px; height: 27px; color: #6e4e00; background: #fbe9ac; border-radius: 50%; font-size: 12px; font-weight: 800; }
    .civil-land-steps strong { display: block; color: #193960; font-size: 14px; margin-bottom: 7px; }
    .civil-land-steps span { display: block; color: #52627b; font-size: 13px; line-height: 1.8; }
    .civil-land-note { margin: 0; border-top: 1px solid #dce4ef; padding-top: 20px; color: #52627b; font-size: 12px; line-height: 1.85; }
    .civil-business-note { display: flex; align-items: flex-start; gap: 20px; margin-top: 35px; padding: 26px; background: white; border: 1px solid #dce4ef; border-radius: 14px; }
    .civil-business-note .fire-small-icon { flex-shrink: 0; }
    .civil-business-note h3 { margin: 0 0 8px; color: #15345f; font-size: 20px; line-height: 1.4; }
    .civil-business-note p { margin: 0; color: #52627b; font-size: 14px; line-height: 1.8; }
    .civil-form .field { min-width: 0; }
    .civil-form select { text-overflow: ellipsis; }
    .civil-form .civil-form-help { color: #60728c; font-size: 11px; line-height: 1.7; margin: 0; }
    .civil-related { display: grid; justify-items: start; gap: 3px; margin-top: 23px; }
    .civil-references { margin-top: 29px; border-top: 1px solid #dce4ef; padding-top: 17px; color: #53657e; font-size: 12px; line-height: 1.8; }
    .civil-references summary { cursor: pointer; color: #294668; font-weight: 700; }
    .civil-references ul { padding-left: 18px; }
    .civil-references li { margin: 8px 0; }
    .civil-references a { color: #265289; text-underline-offset: 3px; }
    .civil-report-feature { display: flex; flex-direction: column; }
    .civil-report-feature h3 { font-size: 23px; line-height: 1.3; }
    .civil-report-feature .fire-text-link { margin-top: auto; }
    .civil-standards { margin-top: 25px; padding: 22px 25px; border: 1px solid #dce4ef; border-radius: 13px; background: white; }
    .civil-standards > summary { color: #244365; cursor: pointer; font-size: 14px; font-weight: 750; line-height: 1.6; }
    .civil-table-scroll { overflow-x: auto; margin-top: 22px; }
    .civil-standards table { width: 100%; min-width: 460px; border-collapse: collapse; text-align: left; font-size: 13px; line-height: 1.75; }
    .civil-standards th { color: #17375f; background: #f2f5fa; font-weight: 750; }
    .civil-standards td, .civil-standards th { padding: 12px 14px; border-bottom: 1px solid #e0e7ef; }
    .civil-standards td { color: #52627b; }
    .civil-standards > p { color: #61718a; font-size: 12px; line-height: 1.8; margin: 20px 0 0; }
    @media (max-width: 960px) {
      .civil-service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .civil-combined { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 760px) {
      .civil-page .fire-hero h1 { font-size: clamp(37px,7vw,52px); }
      .civil-toolbar { grid-template-columns: 1fr auto; padding: 20px; }
      .civil-toolbar .civil-filter-field:first-child { grid-column: 1 / -1; }
      .civil-service-grid, .civil-service-grid.is-filtered { grid-template-columns: 1fr; }
      .civil-service > p { min-height: 0; }
      .civil-service-grid.is-single .civil-service-items { grid-template-columns: 1fr; }
      .civil-land-card { padding: 25px; }
    }
    @media (max-width: 480px) {
      .civil-toolbar { grid-template-columns: 1fr; }
      .civil-toolbar .civil-filter-field:first-child { grid-column: auto; }
      .civil-combined { padding: 23px; }
      .civil-combined .button { width: 100%; font-size: 12px; }
      .civil-business-note { flex-direction: column; padding: 23px; }
    }

  
    /* Catálogo civil: os mesmos cartões e medidas do catálogo de laudos. */
    #civil-service-list .report-card { min-width: 0; }
    #detail-civil-crumb { display: inline-flex; gap: 9px; }
    #detail-civil-crumb[hidden], #detail-technical-references[hidden] { display: none !important; }
    .civil-detail-references { padding: 26px; margin-top: 28px; border: 1px solid #dce4ef; border-radius: 14px; background: #f5f7fb; }
    .civil-detail-references h3 { margin: 0 0 20px; color: var(--navy-deep); font-size: 21px; }
    .civil-detail-references ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 20px; }
    .civil-detail-references strong { color: var(--navy); font-size: 14px; }
    .civil-detail-references p { color: #52627b; font-size: 13px; line-height: 1.8; margin: 7px 0; }
    .civil-detail-references a { color: var(--blue); font-size: 12px; text-underline-offset: 3px; }
    .civil-detail-references > p { margin-top: 23px; }


    /* eSocial, privacidade e navegação de retorno. */
    #esocial-page[hidden], #privacy-page[hidden], .back-to-top[hidden] { display: none !important; }
    .esocial-page .fire-hero h1 { font-size: clamp(39px,4.15vw,58px); }
    .esocial-events { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .esocial-event { border-top: 3px solid var(--gold); }
    .esocial-event-code { color: var(--blue); font-weight: 850; font-size: 16px; }
    .esocial-event h3 { margin-top: 15px; font-size: 23px; }
    .esocial-event .esocial-event-source { margin-top: 16px; font-size: 12px; color: #61738d; }
    .esocial-deadline { margin-top: auto; padding-top: 20px; }
    .esocial-deadline strong { display: block; margin-bottom: 7px; color: var(--navy); font-size: 13px; }
    .esocial-deadline p { font-size: 13px; }
    .esocial-integration { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
    .esocial-penalty h3 { font-size: 21px; }
    .esocial-amount { display: block; margin: 0 0 14px; color: var(--navy); font-size: clamp(22px,2.5vw,29px); font-weight: 850; line-height: 1.3; }
    .esocial-amount small { display: block; font-size: 12px; font-weight: 650; color: #68788f; margin-bottom: 6px; }
    .esocial-penalty .esocial-legal { font-size: 12px; margin-top: 17px; color: #63748a; }
    .esocial-sources { margin-top: 30px; padding: 21px 25px; border: 1px solid #dce4ef; border-radius: 13px; background: white; }
    .esocial-sources summary { color: var(--navy); font-size: 14px; font-weight: 750; cursor: pointer; }
    .esocial-sources li { margin: 12px 0; font-size: 13px; line-height: 1.7; }
    .esocial-sources a, .privacy-body a, .privacy-form-note a { color: var(--blue); text-underline-offset: 3px; }
    .privacy-hero { padding: 0 0 45px; color: #fff; background: linear-gradient(115deg,#071a42,#0b2864); }
    .privacy-hero h1 { margin: 18px 0; font-size: clamp(34px,5vw,52px); letter-spacing: -.035em; line-height: 1.15; }
    .privacy-hero p { max-width: 760px; color: #d3e0f2; font-size: 15px; line-height: 1.8; }
    .privacy-body { max-width: 900px; padding-block: 46px 65px; }
    .privacy-body section { padding-block: 8px 20px; border-bottom: 1px solid #e0e7f0; }
    .privacy-body h2 { color: var(--navy-deep); font-size: 23px; line-height: 1.4; margin: 23px 0 12px; }
    .privacy-body p, .privacy-body li { color: #52627b; font-size: 14px; line-height: 1.85; }
    .privacy-body li { margin-block: 9px; }
    .privacy-body address { color: #52627b; font-size: 14px; line-height: 1.9; font-style: normal; overflow-wrap: anywhere; }
    .privacy-back { margin-top: 28px; }
    .contact-form .privacy-form-note, .labor-form .privacy-form-note { margin: 15px 0 0; color: #62738b; font-size: 11px; line-height: 1.75; }
    .back-to-top { position: fixed; z-index: 49; right: 28px; bottom: 98px; display: grid; place-items: center; width: 48px; height: 48px; color: var(--navy); background: #fff; border: 1px solid #dbe4ef; border-radius: 50%; box-shadow: 0 8px 24px #06193725; cursor: pointer; }
    .back-to-top svg { width: 22px; height: 22px; transform: rotate(-90deg); }
    .back-to-top:hover { background: #fff4cd; border-color: var(--gold); }
    .back-to-top:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
    @media (max-width: 900px) { .esocial-integration { grid-template-columns: 1fr; } }
    @media (max-width: 760px) {
      .esocial-events { grid-template-columns: 1fr; }
      .esocial-amount { font-size: 27px; }
      .privacy-body { padding-block: 28px 45px; }
    }
    @media (max-width: 700px) {
      .back-to-top { right: 16px; bottom: 78px; width: 45px; height: 45px; }
    }

    .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
    #client-count { font: inherit; color: inherit; line-height: inherit; text-align: inherit; max-width: none; font-variant-numeric: tabular-nums; display: inline-block; min-width: 4.5ch; }
      /* Moldura azul compartilhada pelos cartões de serviços e catálogos. */
    .service-card, .report-card, .training-card,
    .fire-service, .fire-document, .fire-license,
    .fire-project-card, .training-intro-grid article {
      --muted: #53647b;
      background: linear-gradient(135deg, #e9f2ff 0%, #f7fbff 62%, #edf4ff 100%);
      border: 2px solid #2c60a4;
      border-top: 5px solid #0b2864;
      box-shadow: 0 8px 23px rgba(11, 40, 100, .08);
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .service-card:hover, .report-card:focus-within, .training-card:focus-within,
    .fire-service:focus-within, .fire-document:focus-within, .fire-license:focus-within {
      border-color: #0b2864;
      box-shadow: 0 12px 28px rgba(11, 40, 100, .16);
    }
    .service-card .service-icon, .report-card .service-icon {
      color: #0b2864;
      background: #dae8ff;
      border: 1px solid #a7c3ed;
    }
    .report-card .report-audience, .training-card .training-details {
      border-top-color: #b7cce7;
    }
    .fire-training-topic {
      border-color: #6d9fdc;
      background: rgba(36, 87, 158, .22);
    }
    @media (prefers-reduced-motion: reduce) {
      .service-card, .report-card, .training-card, .fire-service,
      .fire-document, .fire-license, .fire-project-card { transition: none; }
    }

  
    /* Categorias alinhadas: duas colunas no celular, sem lacunas entre os botões. */
    #report-filters, #civil-filters {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
    }
    #report-filters .report-filter, #civil-filters .report-filter {
      width: 100%; min-width: 0; min-height: 56px; margin: 0;
      padding: 11px 12px; text-align: left; white-space: normal;
      overflow-wrap: break-word; line-height: 1.45;
    }
    #client-count { display: inline-block; min-width: 5ch; font-variant-numeric: tabular-nums; }
    @media (max-width: 700px) {
      #report-filters, #civil-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
      #report-filters .report-filter, #civil-filters .report-filter { padding: 10px 9px; font-size: 11px; }
    }

  
/* Integração com o template WordPress e a barra administrativa. */
body.fj-site-template { padding: 0; }
body.fj-site-template.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.fj-site-template.admin-bar .site-header { top: 46px; } }
@media (max-width: 600px) { body.fj-site-template.admin-bar .site-header { top: 0; } }
.fj-institutional-title { font-size: clamp(30px, 3.6vw, 43px); line-height: 1.13; letter-spacing: -1.1px; margin: 12px 0 18px; color: var(--navy); }
.fj-noscript { padding: 20px; background: #fff4cc; color: #13213a; text-align: center; }
