/**
 * Margem lateral no conteúdo em viewports estreitas (≤900px).
 * Não afeta .hero, header nem footer: só main (exc. main.hero) e secções
 * diretas do body após o hero.
 *
 * Scroll horizontal em mobile: muitas páginas usam
 * `.site-header.is-scrolled .site-lang-bar::before { width: 100vw }`.
 * `100vw` é a largura do *layout viewport* incluindo a faixa da scrollbar
 * vertical, e pode ser > 100% do corpo — daí overflow de poucos px.
 * Ao rodar o telefone no DevTools, o resize força novo cálculo e o sintoma
 * some. Corrigimos com faixa a 100% do pai + barra em largura total no
 * mobile, e `overflow-x: hidden` em html/body como rede de segurança.
 */
html {
  scrollbar-gutter: stable;
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  /* Vence os <style> inline que ainda definem width: 100vw no ::before */
  .site-header.is-scrolled .site-lang-bar {
    width: 100% !important;
    max-width: none !important;
  }

  .site-header.is-scrolled .site-lang-bar::before {
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
  }

  main:not(.hero) {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    max-width: 100%;
    box-sizing: border-box;
  }

  body > section:not(.hero) {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  body > .transparency-page-shell {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
    max-width: 100%;
  }

  body > .transparency-page-shell .conformity-inner {
    padding-left: 0;
    padding-right: 0;
  }

  main:not(.hero) .conformity-inner {
    padding-left: 0;
    padding-right: 0;
  }

  /* Home — “Por que nos escolher”: gutter só na section; container sem padding horizontal extra */
  body > section.why-section .why-container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Redes sociais — bloco abaixo dos parágrafos da marca no rodapé */
.footer-social {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  padding: 0;
}
.footer-social li {
  margin: 0;
  padding: 0;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(100, 168, 203, 0.14);
  color: rgba(230, 242, 255, 0.96);
  border: 1px solid rgba(100, 168, 203, 0.32);
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.footer-social-link:hover {
  color: #fff;
  background: rgba(100, 168, 203, 0.38);
  border-color: rgba(100, 168, 203, 0.58);
  transform: translateY(-2px);
}
.footer-social-link:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}
.footer-social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
  fill: currentColor;
}

:root {
      --bg: #0c0f14;
      --txt: #ffffff;
      --brand-900: #033d5c;
      --brand-700: #236996;
      --brand-500: #64a8cb;
    }

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

    body {
      font-family: "Zurich BT", "Inter", "Segoe UI", Arial, sans-serif;
      background: var(--bg);
      color: var(--txt);
    }
    section:not(.hero) [class*="badge"],
    section:not(.hero) [class*="kicker"],
    section:not(.hero) [class*="tag"],
    section:not(.hero) [class*="__badge"] {
      display: none !important;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      width: 100%;
      color: #fff;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .site-header.is-scrolled {
      color: #0e3248;
    }

    .site-header-surface {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background: transparent;
      box-shadow: none;
      transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    }

    .site-header.is-scrolled .site-header-surface {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 10px 28px rgba(5, 23, 36, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .site-header-inner {
      position: relative;
      z-index: 52;
      width: min(1240px, 100%);
      margin: 0 auto;
      min-height: 84px;
      padding: 0 1.6rem;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 1rem;
    }

    .site-lang-bar {
      position: relative;
      z-index: 52;
      width: min(1240px, 100%);
      margin: 0 auto;
      padding: 0.4rem 1.6rem 0.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .site-lang-switch {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 0.6rem;
    }

    .site-lang-link,
    .site-lang-btn {
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      border: none;
      background: transparent;
      font: inherit;
      cursor: pointer;
      transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    }

    .site-lang-link:hover,
    .site-lang-btn:hover {
      color: #fff;
    }

    .site-lang-link.is-active,
    .site-lang-btn.is-active {
      color: #0e3248;
      background: #fff;
    }

    .site-lang-link:focus-visible,
    .site-lang-btn:focus-visible {
      outline: 2px solid rgba(255, 255, 255, 0.75);
      outline-offset: 2px;
      border-radius: 50%;
    }

    .site-header.is-scrolled .site-lang-link,
    .site-header.is-scrolled .site-lang-btn {
      color: rgba(14, 50, 72, 0.72);
    }

    .site-header.is-scrolled .site-lang-link:hover,
    .site-header.is-scrolled .site-lang-link.is-active,
    .site-header.is-scrolled .site-lang-btn:hover,
    .site-header.is-scrolled .site-lang-btn.is-active {
      color: #0e3248;
    }

    .site-header.is-scrolled .site-lang-link.is-active,
    .site-header.is-scrolled .site-lang-btn.is-active {
      background: #fff;
      box-shadow: 0 6px 12px rgba(14, 50, 72, 0.16);
    }

    .site-lang-sep {
      color: rgba(255, 255, 255, 0.6);
    }

    .site-header.is-scrolled .site-lang-sep {
      color: rgba(14, 50, 72, 0.45);
    }

    .site-logo-link {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .site-logo {
      width: clamp(116px, 14vw, 168px);
      height: auto;
      object-fit: contain;
      display: block;
    }

    .site-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(1rem, 3vw, 2rem);
    }

    .site-nav-link {
      color: #fff;
      text-decoration: none;
      font-size: 0.93rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
      transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
    }

    .site-header.is-scrolled .site-nav-link {
      color: #0e3248;
    }

    .site-nav-link:hover {
      color: #fff;
      text-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 4px 18px rgba(10, 45, 68, 0.55);
      transform: translateY(-1px);
    }

    .site-header.is-scrolled .site-nav-link:hover {
      color: var(--brand-700);
      text-shadow: none;
    }

    .site-header-cta {
      border: 1px solid rgba(255, 255, 255, 0.6);
      background: rgba(6, 27, 40, 0.36);
      color: #fff;
      padding: 0.7rem 1.2rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: all 0.2s ease;
    }

    .site-header-cta:hover {
      border-color: #d5efff;
      background: rgba(7, 49, 74, 0.62);
      box-shadow: 0 10px 24px rgba(2, 19, 30, 0.35);
      transform: translateY(-1px);
    }

    .site-header.is-scrolled .site-header-cta {
      color: #0e3248;
      background: rgba(14, 50, 72, 0.08);
      border-color: rgba(14, 50, 72, 0.3);
      position: relative;
      overflow: hidden;
      z-index: 1;
      transition: all 0.3s ease-out;
    }

    .site-header.is-scrolled .site-header-cta::before {
      content: "";
      position: absolute;
      transition-duration: 800ms;
      width: 200%;
      height: 200%;
      top: 110%;
      left: 50%;
      background: var(--brand-900);
      transform: translateX(-50%);
      border-radius: 50%;
      z-index: -1;
    }

    .site-header.is-scrolled .site-header-cta:hover,
    .site-header.is-scrolled .site-header-cta:focus,
    .site-header.is-scrolled .site-header-cta:focus-visible,
    .site-header.is-scrolled .site-header-cta:active {
      color: #fff;
      background: var(--brand-700);
      border-color: transparent;
      box-shadow: 0 10px 22px rgba(35, 105, 150, 0.35);
      transform: translateY(-1px);
    }

    .site-header.is-scrolled .site-header-cta:hover::before,
    .site-header.is-scrolled .site-header-cta:focus::before,
    .site-header.is-scrolled .site-header-cta:focus-visible::before,
    .site-header.is-scrolled .site-header-cta:active::before {
      top: -40%;
    }

    body.site-nav-open {
      overflow: hidden;
    }

    .site-header.is-nav-open:not(.is-scrolled) {
      background: rgba(6, 27, 40, 0.94);
      box-shadow: 0 10px 28px rgba(5, 23, 36, 0.2);
    }

    .site-nav-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 48;
      background: rgba(6, 18, 30, 0.48);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .site-header.is-nav-open .site-nav-backdrop {
      display: block;
      opacity: 1;
    }

    .site-nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      background: rgba(6, 27, 40, 0.36);
      color: #fff;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .site-nav-toggle:hover {
      border-color: #d5efff;
      background: rgba(7, 49, 74, 0.62);
      box-shadow: 0 8px 20px rgba(2, 19, 30, 0.28);
    }

    .site-header.is-scrolled .site-nav-toggle {
      color: #0e3248;
      border-color: rgba(14, 50, 72, 0.3);
      background: rgba(14, 50, 72, 0.08);
    }

    .site-header.is-scrolled .site-nav-toggle:hover {
      color: #fff;
      background: var(--brand-700);
      border-color: var(--brand-700);
    }

    .site-nav-toggle-lines {
      display: grid;
      gap: 5px;
      width: 20px;
    }

    .site-nav-toggle-lines span {
      display: block;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .site-header.is-nav-open .site-nav-toggle-lines span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-nav-open .site-nav-toggle-lines span:nth-child(2) {
      opacity: 0;
    }

    .site-header.is-nav-open .site-nav-toggle-lines span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav-toggle .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .site-nav-shell {
      position: relative;
      min-width: 0;
      display: flex;
      justify-content: center;
    }

    .site-nav-item {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.1rem;
    }

    .site-nav-sub-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 10px;
      background: transparent;
      color: inherit;
      cursor: pointer;
      flex-shrink: 0;
    }

    .site-nav-sub-toggle svg {
      width: 18px;
      height: 18px;
    }

    .site-header.is-scrolled .site-nav-sub-toggle {
      color: #0e3248;
    }

    .site-nav-sub {
      position: absolute;
      top: calc(100% + 0.4rem);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      min-width: 16.5rem;
      padding: 0.4rem 0;
      margin: 0;
      list-style: none;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(11, 48, 74, 0.12);
      border-radius: 12px;
      box-shadow: 0 14px 34px rgba(5, 23, 36, 0.18);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
      z-index: 60;
    }

    .site-nav-sublink {
      display: block;
      padding: 0.55rem 1.05rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #0e3248;
      text-decoration: none;
      text-shadow: none;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .site-nav-sublink:hover {
      background: rgba(100, 168, 203, 0.16);
      color: var(--brand-700);
    }

    .site-nav-sublink:focus-visible {
      outline: 2px solid var(--brand-500);
      outline-offset: 2px;
      border-radius: 4px;
    }

    .hero {
      position: relative;
      color: #fff;
      min-height: clamp(390px, 56vw, 520px);
      display: flex;
      align-items: flex-end;
      padding: 7.4rem 1.6rem clamp(2.6rem, 5.5vw, 3.8rem);
      background-image:
        linear-gradient(100deg, rgba(4, 12, 18, 0.84) 0%, rgba(4, 12, 18, 0.64) 48%, rgba(4, 12, 18, 0.8) 100%),
        url("../img/Imagem%20-%20SSE%20GROUP%20(5).webp");
      background-size: cover;
      background-position: center;
      overflow: hidden;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.48) 100%);
      z-index: -1;
    }

    .hero-inner {
      width: min(1240px, 100%);
      margin: 0 auto;
      display: grid;
      gap: 1.45rem;
    }

    .hero-kicker-wrap {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      color: rgba(226, 240, 253, 0.95);
      animation: heroFadeUp 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
    }

    .hero-kicker {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
      white-space: nowrap;
    }

    .hero-kicker-line {
      flex: 1;
      min-width: 0;
      width: auto;
      max-width: min(420px, 100%);
      height: 1px;
      background: rgba(255, 255, 255, 0.3);
      transform-origin: left center;
      animation: heroLineGrow 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
    }

    .hero-main {
      display: grid;
      grid-template-columns: minmax(280px, 1fr) minmax(280px, 430px);
      gap: clamp(1.2rem, 3.8vw, 3rem);
      align-items: end;
    }

    .hero h1 {
      font-size: clamp(2.3rem, 6vw, 4.9rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      max-width: 760px;
      animation: heroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
    }

    .hero-copy {
      font-size: clamp(1rem, 1.9vw, 1.2rem);
      line-height: 1.42;
      color: rgba(230, 242, 255, 0.93);
      border-left: 2px solid rgba(255, 255, 255, 0.38);
      padding-left: 0.95rem;
      max-width: 420px;
      animation: heroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
    }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(1.15rem);
        filter: blur(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    @keyframes heroLineGrow {
      from {
        opacity: 0;
        transform: scaleX(0);
      }
      to {
        opacity: 1;
        transform: scaleX(1);
      }
    }

    .conformity-main {
      background: linear-gradient(180deg, #eef2f6 0%, #e7edf3 100%);
      color: #0f2232;
      padding: clamp(3rem, 5.8vw, 5rem) 0 0;
    }

    .conformity-inner {
      width: min(1240px, 100%);
      min-width: 0;
      margin: 0 auto;
      padding: 0 1.6rem;
      display: grid;
      gap: clamp(2.2rem, 4vw, 3.3rem);
    }

    .sec-head {
      text-align: center;
      max-width: 78ch;
      margin: 0 auto;
    }

    .sec-kicker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.35rem 0.85rem;
      border: 1px solid var(--brand-700);
      border-radius: 999px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand-900);
      background: rgba(100, 168, 203, 0.12);
      margin-bottom: 0.85rem;
    }

    .cha-sec-lead,
    .qhse-pol-lead {
      color: #304a5d;
      line-height: 1.62;
      font-size: clamp(0.98rem, 1.25vw, 1.08rem);
      font-weight: 600;
      margin: 0;
    }

    .qhse-policies-section .sec-head {
      margin-bottom: clamp(1rem, 2vw, 1.35rem);
      text-align: center;
    }

    .qhse-policies-section .qhse-pol-lead {
      max-width: 46rem;
      margin-left: auto;
      margin-right: auto;
      font-weight: 500;
    }

    .qhse-pol-closing {
      display: flex;
      align-items: flex-start;
      gap: clamp(0.85rem, 2vw, 1.15rem);
      max-width: 920px;
      margin-top: clamp(0.35rem, 1.5vw, 0.75rem);
      margin-left: auto;
      margin-right: auto;
      padding: clamp(1.2rem, 2.4vw, 1.65rem) clamp(1.2rem, 2.4vw, 1.75rem);
      border-radius: clamp(14px, 2vw, 18px);
      background: linear-gradient(125deg, #0f2f48 0%, #153d5c 42%, #1a4a6e 100%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 4px 12px rgba(6, 28, 46, 0.12),
        0 20px 44px rgba(6, 28, 46, 0.18);
    }

    .qhse-pol-closing__mark {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.95);
    }

    .qhse-pol-closing__mark svg {
      width: 26px;
      height: 26px;
    }

    .qhse-pol-closing p {
      margin: 0;
      color: rgba(232, 242, 250, 0.95);
      font-size: clamp(0.94rem, 1.12vw, 1.04rem);
      line-height: 1.65;
      font-weight: 500;
    }

    .qhse-policies-section {
      position: relative;
      margin: clamp(0.5rem, 2vw, 1rem) -1.6rem clamp(1.5rem, 3vw, 2.5rem);
      padding: clamp(2.2rem, 5vw, 3.5rem) 1.6rem;
      background: transparent;
      border: none;
      box-shadow: none;
      overflow: visible;
    }

    /* —— Metodologia CHA (layout dedicado) —— */
    .cha-section {
      position: relative;
      overflow: hidden;
      margin: clamp(0.5rem, 2vw, 1rem) -1.6rem clamp(1.5rem, 3vw, 2.5rem);
      padding: clamp(2.2rem, 5vw, 3.5rem) 1.6rem;
      border-radius: clamp(18px, 3vw, 26px);
      background:
        radial-gradient(120% 80% at 100% 0%, rgba(100, 168, 203, 0.22) 0%, transparent 52%),
        radial-gradient(90% 70% at 0% 100%, rgba(35, 105, 150, 0.12) 0%, transparent 50%),
        linear-gradient(165deg, #f0f5fa 0%, #e4edf6 48%, #dfe8f2 100%);
      border: 1px solid rgba(18, 50, 75, 0.1);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    }

    .cha-section::after {
      content: "";
      position: absolute;
      inset: auto -20% -35% auto;
      width: min(420px, 70vw);
      height: min(420px, 70vw);
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45), transparent 62%);
      pointer-events: none;
      z-index: 0;
    }

    .cha-shell {
      position: relative;
      z-index: 1;
      width: min(960px, 100%);
      min-width: 0;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: clamp(1.1rem, 2.2vw, 1.45rem);
    }

    .cha-head {
      text-align: center;
      margin-bottom: clamp(0.85rem, 2.2vw, 1.35rem);
    }

    .cha-head .sec-title {
      margin-bottom: 0.45rem;
    }

    .cha-head .cha-sec-lead {
      max-width: 44rem;
      margin-left: auto;
      margin-right: auto;
      font-weight: 500;
    }

    .cha-panel {
      min-width: 0;
      background: #ffffff;
      border: 1px solid rgba(18, 50, 75, 0.1);
      border-radius: clamp(14px, 2vw, 18px);
      box-shadow:
        0 2px 6px rgba(6, 28, 46, 0.04),
        0 16px 40px rgba(6, 28, 46, 0.08);
      padding: clamp(1.2rem, 2.4vw, 1.65rem) clamp(1.15rem, 2.2vw, 1.5rem);
    }

    .cha-panel p {
      color: #304a5d;
      line-height: 1.68;
      font-size: clamp(0.94rem, 1.15vw, 1.02rem);
      margin: 0 0 0.85rem;
    }

    .cha-panel p:last-child {
      margin-bottom: 0;
    }

    /* Painéis CHA com foto + texto (intro / fecho) */
    .cha-split {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.12fr);
      gap: 0;
      padding: 0;
      overflow: hidden;
      align-items: stretch;
    }

    .cha-split--flip {
      grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.02fr);
    }

    .cha-split--flip .cha-split__fig {
      order: 2;
    }

    .cha-split__fig {
      margin: 0;
      position: relative;
      min-height: clamp(200px, 32vw, 280px);
      background: #0b2438;
    }

    .cha-split__fig img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: clamp(200px, 32vw, 280px);
    }

    .cha-split__fig::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(105deg, rgba(11, 36, 56, 0.45) 0%, transparent 42%);
    }

    .cha-split--flip .cha-split__fig::after {
      background: linear-gradient(-105deg, rgba(11, 36, 56, 0.4) 0%, transparent 45%);
    }

    .cha-split__body {
      padding: clamp(1.2rem, 2.4vw, 1.75rem) clamp(1.15rem, 2.2vw, 1.55rem);
      align-self: center;
    }

    .cha-grid {
      gap: clamp(0.85rem, 2vw, 1.15rem);
    }

    .cha-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 0;
      padding: 0;
      overflow: hidden;
      border-radius: clamp(14px, 2vw, 18px);
      border: 1px solid rgba(18, 50, 75, 0.12);
      background: #ffffff;
      box-shadow:
        0 2px 6px rgba(6, 28, 46, 0.05),
        0 14px 34px rgba(6, 28, 46, 0.08);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .cha-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      border-radius: 18px 0 0 18px;
      background: linear-gradient(180deg, var(--brand-500), var(--brand-700));
      opacity: 0.95;
      z-index: 3;
    }

    .cha-card:hover {
      transform: translateY(-4px);
      border-color: rgba(35, 105, 150, 0.28);
      box-shadow:
        0 8px 24px rgba(6, 28, 46, 0.1),
        0 26px 52px rgba(6, 28, 46, 0.14);
    }

    .cha-card__media {
      position: relative;
      height: clamp(108px, 20vw, 148px);
      flex-shrink: 0;
      background-color: #0e3048;
      background-size: cover;
      background-position: center;
      z-index: 1;
    }

    .cha-card__media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(6, 22, 36, 0.55) 100%);
      pointer-events: none;
    }

    .cha-card--c .cha-card__media {
      background-image: url("../img/Imagens%20-%20SSE%20GROUP%20(12).webp");
    }

    .cha-card--a .cha-card__media {
      background-image: url("../img/Imagens%20-%20SSE%20GROUP%20(14).webp");
    }

    .cha-card--h .cha-card__media {
      background-image: url("../img/Imagem%20-%20SSE%20GROUP%20(2).webp");
    }

    .cha-letter {
      position: absolute;
      right: clamp(0.35rem, 1.5vw, 0.75rem);
      bottom: clamp(0.1rem, 1.2vw, 0.45rem);
      font-size: clamp(3rem, 12vw, 4.75rem);
      font-weight: 800;
      line-height: 0.85;
      letter-spacing: -0.04em;
      color: rgba(18, 50, 75, 0.13);
      user-select: none;
      pointer-events: none;
      z-index: 0;
    }

    .cha-card__body {
      position: relative;
      z-index: 2;
      padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.35rem) clamp(1.35rem, 2.4vw, 1.6rem);
      padding-left: calc(0.85rem + 10px);
      flex: 1;
      min-height: clamp(7.5rem, 22vw, 8.5rem);
    }

    .cha-card__head {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 1;
    }

    .cha-card__icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, rgba(100, 168, 203, 0.22), rgba(35, 105, 150, 0.1));
      border: 1px solid rgba(35, 105, 150, 0.18);
      color: var(--brand-700);
    }

    .cha-card__icon svg {
      width: 22px;
      height: 22px;
    }

    .cha-card h3 {
      position: relative;
      z-index: 1;
      margin: 0;
      padding-top: 0.12rem;
      font-size: clamp(0.82rem, 1.1vw, 0.92rem);
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #12324b;
      line-height: 1.2;
    }

    .cha-card p {
      position: relative;
      z-index: 1;
      margin: 0;
      max-width: 20rem;
      font-size: clamp(0.88rem, 1.05vw, 0.95rem);
      line-height: 1.55;
      color: #3a556d;
    }

    .qhse-pol-cta-wrap {
      display: flex;
      justify-content: center;
      margin-top: clamp(1.1rem, 2vw, 1.5rem);
    }

    .sec-title {
      font-size: clamp(1.75rem, 4vw, 2.85rem);
      line-height: 1.06;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      color: #12324b;
      margin-bottom: 0.7rem;
    }

    .sec-lead {
      color: #304a5d;
      line-height: 1.62;
      font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    }

    .iso-grid {
      display: grid;
      gap: 0.95rem;
      align-items: stretch;
    }

    .iso-grid {
      grid-template-columns: 1fr;
    }

    .iso-cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.8rem;
      align-content: start;
    }

    .iso-card {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.72rem;
      border-radius: 14px;
      border: 1px solid #dfe7ef;
      background: #eef3f8;
      box-shadow: 0 8px 18px rgba(6, 28, 46, 0.06);
    }

    .iso-card-icon {
      width: 58px;
      height: 58px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: #f7f9fc;
      border: 1px solid #dce4ee;
      color: #12324b;
      flex-shrink: 0;
    }

    .iso-card-icon svg {
      width: 24px;
      height: 24px;
      display: block;
    }

    .iso-card-icon img {
      width: 46px;
      height: 46px;
      object-fit: contain;
      display: block;
    }

    .iso-card h3 {
      font-size: 0.98rem;
      color: #171f27;
      line-height: 1.2;
      margin-bottom: 0.24rem;
    }

    .iso-card p {
      margin: 0;
      color: #5a6470;
      line-height: 1.35;
      font-size: 0.82rem;
      max-width: 28ch;
    }

    .commitment-about {
      display: grid;
      grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
      gap: clamp(1.1rem, 2.5vw, 2rem);
      align-items: start;
    }

    .commitment-visual-frame {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 24px 54px rgba(3, 61, 92, 0.18);
      border: 1px solid rgba(3, 61, 92, 0.18);
      background: #dbe7ef;
    }

    .commitment-visual-frame img {
      width: 100%;
      height: clamp(340px, 50vw, 540px);
      object-fit: cover;
      display: block;
    }

    .commitment-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.5rem;
      width: 100%;
      margin-top: 0.9rem;
    }

    .commitment-metric {
      background: rgba(8, 31, 49, 0.76);
      border: 1px solid rgba(210, 233, 248, 0.38);
      border-radius: 12px;
      padding: 0.55rem 0.52rem;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .commitment-metric strong {
      display: block;
      color: #dff3ff;
      font-size: clamp(1.08rem, 2vw, 1.32rem);
      line-height: 1.02;
      margin-bottom: 0.22rem;
      letter-spacing: -0.02em;
      font-weight: 700;
    }

    .commitment-metric span {
      display: block;
      color: rgba(226, 243, 255, 0.9);
      font-size: 0.7rem;
      line-height: 1.28;
    }

    .commitment-content {
      padding-top: 0.3rem;
      background: transparent;
      border: none;
      box-shadow: none;
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 0;
    }

    .commitment-content h3 {
      color: #12324b;
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      line-height: 1.2;
      margin: 0.95rem 0 0.55rem;
    }

    .info-card {
      background: #f8fbff;
      border: 1px solid rgba(18, 50, 75, 0.12);
      border-radius: 16px;
      padding: clamp(1.05rem, 2vw, 1.35rem);
      box-shadow: 0 12px 30px rgba(6, 28, 46, 0.08);
    }

    .info-card p {
      color: #304a5d;
      line-height: 1.62;
      font-size: 0.96rem;
      margin-bottom: 0.7rem;
    }

    .iso-badge {
      border-radius: 16px;
      background: linear-gradient(170deg, var(--brand-900), #0c547c);
      color: #dff3ff;
      padding: clamp(1rem, 1.8vw, 1.3rem);
      border: 1px solid rgba(255, 255, 255, 0.24);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
      display: grid;
      align-content: space-between;
      gap: 1rem;
    }

    .iso-badge-mark {
      width: clamp(120px, 18vw, 170px);
      height: auto;
      display: block;
      border-radius: 10px;
      border: 1px solid rgba(210, 233, 248, 0.55);
      background: rgba(255, 255, 255, 0.92);
      padding: 0.35rem;
    }

    .iso-badge h3 {
      font-size: 1.34rem;
      line-height: 1.1;
      letter-spacing: -0.01em;
    }

    .iso-badge p {
      font-size: 0.9rem;
      line-height: 1.5;
      color: rgba(220, 239, 250, 0.9);
    }

    .bullets {
      list-style: none;
      display: grid;
      gap: 0.55rem;
    }

    .bullets li {
      display: grid;
      grid-template-columns: 12px 1fr;
      gap: 0.52rem;
      color: #355166;
      font-size: 0.92rem;
      line-height: 1.5;
    }

    .bullets li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 0.42rem;
      border-radius: 50%;
      background: var(--brand-700);
      box-shadow: 0 0 0 4px rgba(100, 168, 203, 0.2);
    }

    .cha-grid,
    .qhse-grid,
    .workflow {
      display: grid;
      gap: 0.7rem;
    }

    .cha-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .qhse-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .qhse-policies-section .qhse-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: clamp(0.75rem, 1.8vw, 1.05rem);
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
    }

    .qhse-policies-section .qhse-item:nth-child(-n + 3) {
      grid-column: span 2;
    }

    .qhse-policies-section .qhse-item:nth-child(4) {
      grid-column: 2 / 4;
    }

    .qhse-policies-section .qhse-item:nth-child(5) {
      grid-column: 4 / 6;
    }

    .workflow {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.62rem;
    }

    .workflow-step {
      border: 1px solid rgba(18, 50, 75, 0.14);
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 22px rgba(6, 28, 46, 0.07);
      padding: 0.85rem;
    }

    .qhse-policies-section .qhse-item {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 0;
      overflow: hidden;
      border: 1px solid rgba(18, 50, 75, 0.11);
      background: #fff;
      border-radius: clamp(14px, 2vw, 18px);
      box-shadow:
        0 2px 8px rgba(6, 28, 46, 0.05),
        0 16px 36px rgba(6, 28, 46, 0.08);
      color: #355166;
      font-size: 0.92rem;
      line-height: 1.55;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .qhse-policies-section .qhse-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      border-radius: 18px 0 0 18px;
      background: linear-gradient(180deg, var(--brand-500), var(--brand-700));
      z-index: 2;
    }

    .qhse-policies-section .qhse-item:hover {
      transform: translateY(-3px);
      border-color: rgba(35, 105, 150, 0.24);
      box-shadow:
        0 8px 22px rgba(6, 28, 46, 0.09),
        0 24px 48px rgba(6, 28, 46, 0.12);
    }

    .qhse-policies-section .qhse-item__top {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: clamp(0.95rem, 2vw, 1.15rem) clamp(0.95rem, 2vw, 1.15rem) 0.5rem;
      padding-left: calc(0.95rem + 10px);
      background: linear-gradient(180deg, rgba(100, 168, 203, 0.12) 0%, rgba(255, 255, 255, 0.96) 100%);
    }

    .qhse-policies-section .qhse-item__top h3 {
      margin: 0;
      flex: 1;
      min-width: 0;
      padding-top: 0.15rem;
      font-size: clamp(0.92rem, 1.15vw, 1.02rem);
      font-weight: 700;
      color: #12324b;
      line-height: 1.28;
    }

    .qhse-policies-section .qhse-item__icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, rgba(100, 168, 203, 0.28), rgba(35, 105, 150, 0.12));
      border: 1px solid rgba(35, 105, 150, 0.2);
      color: var(--brand-800);
    }

    .qhse-policies-section .qhse-item__icon svg {
      width: 24px;
      height: 24px;
    }

    .qhse-policies-section .qhse-item__body {
      padding: 0 clamp(0.95rem, 2vw, 1.15rem) clamp(1rem, 2vw, 1.2rem);
      padding-left: calc(0.95rem + 10px);
    }

    .qhse-policies-section .qhse-item p {
      margin: 0;
      font-size: clamp(0.86rem, 1.05vw, 0.94rem);
      line-height: 1.55;
      color: #3a556d;
    }

    .workflow-step strong {
      display: block;
      color: var(--brand-700);
      font-size: 0.8rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      margin-bottom: 0.35rem;
    }

    .workflow-step h4 {
      font-size: 1rem;
      color: #12324b;
      margin-bottom: 0.33rem;
    }

    .workflow-step p {
      color: #375167;
      font-size: 0.86rem;
      line-height: 1.45;
    }

    .padrao-timeline {
      --tl-blue: var(--brand-700);
      --tl-num-muted: #ccd6e0;
      --tl-num-passed: #5a6b82;
      --tl-track: #dde6ef;
      --tl-aside: clamp(96px, 14vw, 140px);
      --padrao-bg: #e7edf3;
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 0;
    }

    .padrao-intro {
      text-align: center;
      max-width: 920px;
      margin: 0 auto;
      padding: 0 0 clamp(1.8rem, 3.2vw, 2.8rem);
    }

    .timeline-flow {
      position: relative;
      isolation: isolate;
      padding-bottom: 24px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      --tl-pad-l: clamp(16px, 3vw, 30px);
      padding-left: var(--tl-pad-l);
      padding-right: clamp(8px, 2vw, 20px);
    }

    .timeline-flow__lines {
      position: absolute;
      left: calc(var(--tl-pad-l) + var(--tl-aside) / 2);
      top: 0;
      bottom: 0;
      width: 2px;
      transform: translateX(-50%);
      z-index: 0;
      pointer-events: none;
    }

    .timeline-flow__track {
      position: absolute;
      inset: 0;
      border-radius: 1px;
      background: var(--tl-track);
      z-index: 0;
    }

    .timeline-flow__fill {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      border-radius: 1px;
      background: var(--tl-blue);
      z-index: 0;
      transition: height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    .timeline-step-row {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: var(--tl-aside) minmax(0, 1fr);
      gap: clamp(20px, 4vw, 42px);
      align-items: start;
      padding-bottom: clamp(1.4rem, 3.2vw, 2.2rem);
    }

    .timeline-step-row:last-child {
      padding-bottom: 0;
    }

    .timeline-step-row__marker {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      text-align: center;
    }

    .timeline-step-num {
      position: relative;
      z-index: 1;
      display: inline-block;
      margin: 0;
      padding: 0 10px;
      font-size: clamp(3rem, 5vw + 1rem, 5.6rem);
      font-weight: 800;
      line-height: 0.92;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.06em;
      color: var(--tl-num-muted);
      background: var(--padrao-bg);
      transition: color 0.35s ease;
    }

    .timeline-step-num.is-past {
      color: var(--tl-num-passed);
    }

    .timeline-step-num.is-current {
      color: var(--tl-blue);
    }

    .timeline-step-num.is-future {
      color: var(--tl-num-muted);
    }

    .timeline-step-row__content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      max-width: 720px;
      visibility: hidden;
      pointer-events: none;
      transition: visibility 0s linear 0.4s;
    }

    .timeline-step-row.is-active .timeline-step-row__content {
      visibility: visible;
      pointer-events: auto;
      transition: visibility 0s;
    }

    .timeline-step-row__content > .timeline-panel__badge,
    .timeline-step-row__content > .timeline-panel__head,
    .timeline-step-row__content > .timeline-panel__block {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .timeline-step-row.is-active .timeline-step-row__content > .timeline-panel__badge {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0s, transform 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0s;
    }

    .timeline-step-row.is-active .timeline-step-row__content > .timeline-panel__head {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1) 0.08s, transform 0.56s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
    }

    .timeline-step-row.is-active .timeline-step-row__content > .timeline-panel__block {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1) 0.16s, transform 0.56s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
    }

    .timeline-panel__badge {
      display: inline-flex;
      align-items: center;
      gap: 0;
      margin: 0 0 12px;
      color: var(--brand-900);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      border: 1px solid var(--brand-700);
      background: rgba(100, 168, 203, 0.12);
    }

    .timeline-panel__head {
      width: 100%;
      font-size: clamp(1.06rem, 1.9vw, 1.36rem);
      line-height: 1.22;
      font-weight: 700;
      color: var(--brand-900);
      margin: 0 0 12px;
      letter-spacing: -0.02em;
    }

    .timeline-panel__block {
      width: 100%;
      margin: 0;
      max-width: 660px;
      border: none;
      border-left: 2px solid var(--brand-700);
      border-radius: 6px;
      background: #f2f4f6;
      padding: 0.78rem 0.9rem;
    }

    .timeline-panel__block p {
      margin: 0;
      font-size: 0.92rem;
      color: #35556f;
      line-height: 1.5;
    }

    .transparency-section {
      background: linear-gradient(135deg, var(--brand-900) 0%, #062f47 48%, var(--brand-700) 100%);
      border: 1px solid rgba(100, 168, 203, 0.28);
      border-radius: clamp(20px, 3vw, 28px);
      padding: clamp(2rem, 5vw, 3.75rem);
      box-shadow: 0 16px 48px rgba(3, 61, 92, 0.35);
    }

    .transparency-promo {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(1.5rem, 4vw, 3rem);
    }

    .transparency-promo__copy {
      flex: 1 1 58%;
      min-width: min(100%, 260px);
      text-align: left;
    }

    .transparency-promo__tag {
      display: inline-flex;
      align-items: center;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.95);
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.28);
      padding: 0.38rem 0.9rem;
      border-radius: 999px;
      margin-bottom: 1.05rem;
    }

    .transparency-promo__title {
      font-size: clamp(1.55rem, 2.9vw, 2.45rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: #fff;
      margin: 0 0 1rem;
      text-transform: none;
    }

    .transparency-promo__lead {
      font-size: clamp(0.94rem, 1.2vw, 1.06rem);
      line-height: 1.55;
      color: rgba(230, 242, 255, 0.92);
      margin: 0 0 1.45rem;
      max-width: 46ch;
    }

    .transparency-promo__gallery {
      flex: 0 1 34%;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
      max-width: min(360px, 100%);
    }

    .transparency-promo__figure {
      flex: 1;
      margin: 0;
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .transparency-promo__figure img {
      width: 100%;
      height: auto;
      min-height: clamp(200px, 24vw, 280px);
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .promo-section {
      position: relative;
      min-height: clamp(300px, 42vw, 440px);
      display: flex;
      align-items: flex-end;
      padding: clamp(2.8rem, 5vw, 4rem) 0 0;
      overflow: visible;
      background: #061225;
      isolation: isolate;
      margin-top: 20px;
      margin-bottom: 0;
    }

    .promo-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -3;
      filter: saturate(0.95) contrast(1.04);
    }

    .promo-section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: linear-gradient(
        90deg,
        rgba(4, 14, 30, 0.88) 0%,
        rgba(6, 20, 42, 0.76) 38%,
        rgba(7, 22, 46, 0.48) 68%,
        rgba(7, 22, 46, 0.72) 100%
      );
    }

    .promo-section::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(3, 61, 92, 0.26) 0%, rgba(3, 61, 92, 0.34) 100%);
      pointer-events: none;
    }

    .promo-inner {
      width: min(1240px, 100%);
      margin: 0 auto;
      padding: 0 2rem clamp(1.5rem, 2.8vw, 2.3rem);
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: min(860px, 100%);
    }

    .promo-kicker {
      display: inline-flex;
      align-items: center;
      padding: 0.33rem 0.74rem;
      border-radius: 999px;
      border: 1px solid rgba(100, 168, 203, 0.46);
      background: rgba(100, 168, 203, 0.14);
      color: rgba(222, 239, 252, 0.95);
      text-transform: uppercase;
      letter-spacing: 0.11em;
      font-size: 0.67rem;
      font-weight: 700;
      margin-bottom: 0.9rem;
    }

    .promo-title {
      font-size: clamp(1.75rem, 3.5vw, 3rem);
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.8rem;
      max-width: min(21ch, 100%);
    }

    .promo-title-line {
      display: block;
      white-space: nowrap;
    }

    .promo-text {
      font-size: clamp(0.98rem, 1.3vw, 1.12rem);
      line-height: 1.58;
      color: rgba(219, 235, 249, 0.92);
      max-width: 60ch;
      margin-bottom: 1.3rem;
      margin-left: auto;
      margin-right: auto;
    }

    .promo-anim {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .promo-anim.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Entrada ao scroll — conteúdo principal (exceto hero e banner promo já animados) */
    .conformity-inner .conform-reveal {
      opacity: 0;
      transform: translate3d(0, 22px, 0);
      filter: blur(5px);
      transition:
        opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
      transition-delay: var(--conform-delay, 0s);
      will-change: opacity, transform, filter;
    }
    .conformity-inner .conform-reveal.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      filter: blur(0);
      will-change: auto;
    }
    .iso-cards > .conform-reveal:nth-child(1) { --conform-delay: 0.02s; }
    .iso-cards > .conform-reveal:nth-child(2) { --conform-delay: 0.07s; }
    .iso-cards > .conform-reveal:nth-child(3) { --conform-delay: 0.12s; }
    .iso-cards > .conform-reveal:nth-child(4) { --conform-delay: 0.17s; }
    .iso-cards > .conform-reveal:nth-child(5) { --conform-delay: 0.22s; }
    .iso-cards > .conform-reveal:nth-child(6) { --conform-delay: 0.27s; }
    .cha-grid > .conform-reveal:nth-child(1) { --conform-delay: 0.04s; }
    .cha-grid > .conform-reveal:nth-child(2) { --conform-delay: 0.1s; }
    .cha-grid > .conform-reveal:nth-child(3) { --conform-delay: 0.16s; }
    .qhse-grid > .conform-reveal:nth-child(1) { --conform-delay: 0.03s; }
    .qhse-grid > .conform-reveal:nth-child(2) { --conform-delay: 0.08s; }
    .qhse-grid > .conform-reveal:nth-child(3) { --conform-delay: 0.13s; }
    .qhse-grid > .conform-reveal:nth-child(4) { --conform-delay: 0.18s; }
    .qhse-grid > .conform-reveal:nth-child(5) { --conform-delay: 0.23s; }
    .why-points > .conform-reveal:nth-child(1) { --conform-delay: 0.03s; }
    .why-points > .conform-reveal:nth-child(2) { --conform-delay: 0.07s; }
    .why-points > .conform-reveal:nth-child(3) { --conform-delay: 0.11s; }
    .why-points > .conform-reveal:nth-child(4) { --conform-delay: 0.15s; }
    .why-points > .conform-reveal:nth-child(5) { --conform-delay: 0.19s; }
    .why-points > .conform-reveal:nth-child(6) { --conform-delay: 0.23s; }
    .timeline-flow article.timeline-step-row.conform-reveal:nth-of-type(1) { --conform-delay: 0.04s; }
    .timeline-flow article.timeline-step-row.conform-reveal:nth-of-type(2) { --conform-delay: 0.1s; }
    .timeline-flow article.timeline-step-row.conform-reveal:nth-of-type(3) { --conform-delay: 0.16s; }
    .timeline-flow article.timeline-step-row.conform-reveal:nth-of-type(4) { --conform-delay: 0.22s; }

    .cta-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.85rem 1.65rem;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: inherit;
      text-decoration: none;
      cursor: pointer;
      color: var(--brand-900);
      background: var(--brand-500);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 10px 28px rgba(3, 61, 92, 0.35);
      transition: all 0.2s ease;
    }

    .cta-pill:hover {
      background: var(--brand-700);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(3, 61, 92, 0.45);
    }

    .cta-pill.cta-wave {
      --tg-theme-primary: var(--brand-700);
      --tg-color-white-default: var(--brand-900);
      --tg-heading-color: #ffffff;
      user-select: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      z-index: 1;
      border: none;
      box-shadow: none;
      background: var(--tg-theme-primary);
      color: var(--tg-heading-color);
      padding: 0.95rem 1.85rem;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-transform: none;
      text-decoration: none;
      gap: 0.45rem;
      transition:
        opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease-out,
        color 0.3s ease-out,
        border-color 0.3s ease-out,
        box-shadow 0.3s ease-out;
    }

    .cta-pill.cta-wave::before {
      content: "";
      position: absolute;
      transition-duration: 800ms;
      width: 200%;
      height: 200%;
      top: 110%;
      left: 50%;
      background: var(--tg-color-white-default);
      transform: translateX(-50%);
      border-radius: 50%;
      z-index: -1;
    }

    .cta-pill.cta-wave:visited,
    .cta-pill.cta-wave:hover,
    .cta-pill.cta-wave:focus,
    .cta-pill.cta-wave:focus-visible,
    .cta-pill.cta-wave:active {
      background: var(--tg-theme-primary);
      color: #ffffff;
      text-decoration: none;
      box-shadow: none;
      transform: none;
    }

    .cta-pill.cta-wave:hover::before,
    .cta-pill.cta-wave:focus::before,
    .cta-pill.cta-wave:focus-visible::before,
    .cta-pill.cta-wave:active::before {
      top: -40%;
    }

    .cta-pill.cta-wave .why-btn-icon {
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
    }

    /* CTA transparência: branco + onda azul (mesmo movimento do cta-wave) */
    #relatorio-transparencia .cta-pill.cta-wave {
      background: transparent;
      color: var(--brand-900);
      border: none;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
      isolation: isolate;
    }

    #relatorio-transparencia .cta-pill.cta-wave::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: #fff;
      border: 1px solid rgba(255, 255, 255, 0.55);
      box-sizing: border-box;
      z-index: 0;
      pointer-events: none;
    }

    #relatorio-transparencia .cta-pill.cta-wave::before {
      background: var(--brand-700);
      z-index: 1;
    }

    #relatorio-transparencia .cta-pill.cta-wave .cta-wave-label {
      position: relative;
      z-index: 2;
    }

    #relatorio-transparencia .cta-pill.cta-wave:hover,
    #relatorio-transparencia .cta-pill.cta-wave:focus,
    #relatorio-transparencia .cta-pill.cta-wave:focus-visible,
    #relatorio-transparencia .cta-pill.cta-wave:active {
      background: transparent;
      color: #fff;
      box-shadow: 0 12px 28px rgba(35, 105, 150, 0.4);
      text-decoration: none;
      transform: none;
    }

    #relatorio-transparencia .cta-pill.cta-wave:hover::before,
    #relatorio-transparencia .cta-pill.cta-wave:focus::before,
    #relatorio-transparencia .cta-pill.cta-wave:focus-visible::before,
    #relatorio-transparencia .cta-pill.cta-wave:active::before {
      top: -40%;
    }

    .why-section {
      background: var(--brand-900);
      color: #e8f4fc;
      padding: clamp(3.6rem, 6.5vw, 5.2rem) 0;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    #selos-institucionais.why-section {
      margin-left: -0.75rem;
      margin-right: -0.75rem;
      width: calc(100% + 1.5rem);
      max-width: none;
    }

    .why-container {
      width: min(1240px, 100%);
      margin: 0 auto;
      padding: 0 clamp(0.85rem, 2.2vw, 1.1rem);
      display: block;
    }

    .why-content {
      max-width: min(1100px, 100%);
      margin: 0 auto;
    }

    .why-badge {
      display: inline-flex;
      align-items: center;
      padding: 0.38rem 0.88rem;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 999px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 0.95rem;
      background: rgba(255, 255, 255, 0.12);
    }

    .why-title {
      font-size: clamp(1.85rem, 4.2vw, 3rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 1.4rem;
      max-width: min(36ch, 100%);
    }

    .why-lead {
      font-size: clamp(0.95rem, 1.35vw, 1.05rem);
      line-height: 1.55;
      color: rgba(222, 239, 252, 0.9);
      margin: -0.65rem 0 1.25rem;
      max-width: 52ch;
    }

    .why-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
      margin-bottom: 1.55rem;
    }

    .why-point {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.72rem;
      align-items: flex-start;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 0.86rem 0.95rem;
    }

    .why-icon {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
      flex-shrink: 0;
      margin-top: 0.15rem;
    }

    .why-icon svg {
      width: 24px;
      height: 24px;
      display: block;
      color: var(--brand-900);
    }

    .why-point-title {
      font-size: clamp(1rem, 1.45vw, 1.25rem);
      line-height: 1.22;
      color: #ffffff;
      margin-bottom: 0.33rem;
      letter-spacing: -0.01em;
    }

    .why-point-text {
      font-size: 0.95rem;
      line-height: 1.46;
      color: rgba(220, 236, 248, 0.9);
      max-width: none;
    }

    .why-btn {
      --tg-theme-primary: var(--brand-700);
      --tg-color-white-default: var(--brand-900);
      --tg-heading-color: #ffffff;
      user-select: none;
      background: var(--tg-theme-primary);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      line-height: 1;
      padding: 16px 36px;
      text-align: center;
      text-transform: uppercase;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
      z-index: 1;
      color: var(--tg-heading-color);
      text-decoration: none;
      transition: all 0.3s ease-out;
    }

    .why-btn::before {
      content: "";
      position: absolute;
      transition-duration: 800ms;
      width: 200%;
      height: 200%;
      top: 110%;
      left: 50%;
      background: var(--tg-color-white-default);
      transform: translateX(-50%);
      border-radius: 50%;
      z-index: -1;
    }

    .why-btn:visited,
    .why-btn:hover,
    .why-btn:focus,
    .why-btn:focus-visible,
    .why-btn:active {
      background: var(--tg-theme-primary);
      color: #ffffff;
      text-decoration: none;
    }

    .why-btn:hover::before,
    .why-btn:focus::before,
    .why-btn:focus-visible::before,
    .why-btn:active::before {
      top: -40%;
    }

    .why-btn-icon {
      width: 14px;
      height: 14px;
      display: inline-block;
      flex: 0 0 14px;
    }

    .why-btn-icon svg {
      width: 100%;
      height: 100%;
      display: block;
      fill: currentColor;
    }

    .site-footer {
      background: #08162c;
      color: rgba(223, 237, 250, 0.92);
      padding: clamp(3rem, 5vw, 3.8rem) 0 1.1rem;
      margin-top: 0;
      border-top: 1px solid rgba(100, 168, 203, 0.2);
    }

    .footer-inner {
      width: min(1240px, 100%);
      margin: 0 auto;
      padding: 0 1.6rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(160px, 1fr));
      gap: clamp(1.1rem, 2.4vw, 2rem);
      align-items: start;
      margin-bottom: 1.7rem;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100%;
    }

    .footer-brand {
      max-width: 46ch;
    }

    .footer-brand-logo {
      width: clamp(130px, 17vw, 190px);
      height: auto;
      display: block;
      margin-bottom: 0.95rem;
    }

    .footer-brand p {
      line-height: 1.5;
      color: rgba(211, 229, 245, 0.9);
      margin-bottom: 0.75rem;
      font-size: 0.95rem;
    }

    .footer-col h4 {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(177, 207, 233, 0.9);
      margin: 0 0 0.72rem;
      font-weight: 700;
    }

    .footer-list + h4 {
      margin-top: 1.35rem;
    }

    .footer-list {
      list-style: none;
      display: grid;
      gap: 0.45rem;
      margin: 0;
      padding: 0;
    }

    .footer-list li,
    .footer-list a {
      color: rgba(223, 237, 250, 0.92);
      text-decoration: none;
      font-size: 0.93rem;
      line-height: 1.42;
      transition: color 0.2s ease;
    }

    .footer-list a:hover {
      color: var(--brand-500);
    }

    .footer-bottom {
      border-top: 1px solid rgba(100, 168, 203, 0.2);
      padding-top: 0.9rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1rem;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: rgba(177, 207, 233, 0.86);
    }

    @media (min-width: 901px) {
      .site-nav-item--has-sub::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 1rem;
        z-index: 55;
      }

      .site-nav-item--has-sub:hover .site-nav-sub,
      .site-nav-item--has-sub:focus-within .site-nav-sub {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
      }
    }

    @media (max-width: 900px) {
      .transparency-promo {
        flex-direction: column;
        align-items: stretch;
      }

      .transparency-promo__gallery {
        flex: none;
        width: 100%;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
        order: 2;
      }

      .transparency-promo__copy {
        order: 1;
      }

      .why-points {
        grid-template-columns: 1fr;
      }
      .site-header-inner {
        display: flex;
        min-height: 74px;
        justify-content: space-between;
        align-items: center;
        gap: 0.85rem;
      }

      .site-header {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
      }

      .site-header.is-scrolled {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
      }

      .site-header:not(.is-scrolled) .site-header-inner {
        padding-top: 1.15rem;
        padding-bottom: 0.95rem;
      }

      .site-header:not(.is-scrolled) .site-nav-shell {
        top: 5.75rem;
      }

      .site-header.is-scrolled .site-header-inner {
        padding-top: 1.75rem;
        padding-bottom: 1.05rem;
      }

      .site-header.is-scrolled .site-nav-shell {
        top: 6.05rem;
      }

      .site-header-cta {
        display: none !important;
      }

      .site-nav-toggle {
        display: inline-flex;
        flex-shrink: 0;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
        margin-left: 0.35rem;
        margin-right: 0.5rem;
      }

      .site-nav-shell {
        position: fixed;
        top: 74px;
        right: 0;
        bottom: 0;
        width: min(20rem, 92vw);
        padding: 1rem 1rem 2.5rem;
        background: #f6f8fb;
        border-left: 1px solid rgba(11, 48, 74, 0.1);
        box-shadow: -12px 0 36px rgba(5, 23, 36, 0.18);
        transform: translateX(105%);
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
        justify-content: flex-start;
        align-items: stretch;
        overflow-y: auto;
        z-index: 50;
      }

      .site-header.is-nav-open .site-nav-shell {
        transform: translateX(0);
      }

      .site-nav {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.55rem;
        width: 100%;
      }

      .site-nav-shell .site-nav-link {
        color: #0e3248;
        text-shadow: none;
      }

      .site-nav-shell .site-nav-link:hover {
        color: var(--brand-700);
        text-shadow: none;
        transform: none;
      }

      .site-nav-shell .site-nav > .site-nav-link {
        display: block;
        padding: 1.15rem 0.5rem;
        border-bottom: 1px solid rgba(11, 48, 74, 0.1);
      }

      .site-nav-item {
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(11, 48, 74, 0.1);
        padding-bottom: 0.15rem;
      }

      .site-nav-item > .site-nav-link {
        flex: 1;
        padding: 1.15rem 0.35rem;
        text-shadow: none;
        color: #0e3248;
      }

      .site-nav-sub-toggle {
        display: inline-flex;
        color: #0e3248;
      }

      .site-nav-sub {
        position: static;
        flex: 1 0 100%;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.72);
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 0;
        transition: max-height 0.35s ease;
      }

      .site-nav-item--has-sub.is-sub-open .site-nav-sub {
        max-height: 24rem;
        padding: 0.25rem 0 0.6rem;
      }

      .site-nav-sublink {
        padding: 0.65rem 0.85rem 0.65rem 1.15rem;
        font-size: 0.76rem;
      }

      .hero {
        min-height: min(100vh, 560px);
        align-items: flex-start;
        padding-top: max(8.5rem, 30vw);
        padding-right: 1.6rem;
        padding-bottom: clamp(2.6rem, 5.5vw, 3.8rem);
        padding-left: 1.6rem;
      }

      .hero-inner {
        width: 100%;
        padding-top: 0.35rem;
      }

      .hero-main {
        grid-template-columns: 1fr;
        gap: 0.95rem;
      }

      .hero-copy {
        border-left: none;
        padding-left: 0;
      }

      .commitment-about,
      .iso-grid,
      .cha-grid,
      .workflow {
        grid-template-columns: 1fr;
      }

      .cha-section {
        margin-left: 0;
        margin-right: 0;
        border-radius: clamp(14px, 3vw, 22px);
      }

      .qhse-policies-section {
        margin-left: 0;
        margin-right: 0;
        border-radius: clamp(14px, 3vw, 22px);
      }

      .cha-split,
      .cha-split--flip {
        grid-template-columns: 1fr;
      }

      .cha-split--flip .cha-split__fig {
        order: -1;
      }

      .cha-split__fig {
        min-height: 0;
        max-height: min(240px, 42vw);
        aspect-ratio: 16 / 9;
      }

      .cha-split__fig img {
        min-height: 0;
        height: 100%;
        max-height: min(240px, 42vw);
        object-fit: cover;
      }

      .qhse-policies-section .qhse-item__top h3 {
        font-size: clamp(0.84rem, 2.4vw, 0.98rem);
      }

      .iso-cards {
        grid-template-columns: 1fr;
      }

      .qhse-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .qhse-policies-section .qhse-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .qhse-policies-section .qhse-item:nth-child(n) {
        grid-column: auto;
      }

      .why-title {
        max-width: none;
      }

      .padrao-timeline {
        --tl-aside: 74px;
      }

      .timeline-flow {
        --tl-pad-l: 8px;
        padding-right: 0;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .promo-title-line {
        white-space: normal;
      }
    }

    @media (max-width: 600px) {
      .site-header-inner {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .site-header {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
      }

      .site-header.is-scrolled {
        padding-left: 1.05rem;
        padding-right: 1.05rem;
      }

      .site-header:not(.is-scrolled) .site-header-inner {
        padding-top: 1.2rem;
        padding-bottom: 1rem;
      }

      .site-header:not(.is-scrolled) .site-nav-shell {
        top: 6rem;
      }

      .site-header.is-scrolled .site-header-inner {
        padding-top: 1.9rem;
      }

      .site-header.is-scrolled .site-nav-shell {
        top: 6.35rem;
      }

      .site-logo {
        width: 118px;
      }

      .qhse-grid {
        grid-template-columns: 1fr;
      }

      /* Sobrescreve a regra de 900px (2 colunas), que tem maior especificidade */
      .qhse-policies-section .qhse-grid {
        grid-template-columns: 1fr;
      }

      .cha-section,
      .qhse-policies-section {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: clamp(1.45rem, 5vw, 2.2rem);
        padding-bottom: clamp(1.45rem, 5vw, 2.2rem);
      }

      .cha-head .sec-title,
      .qhse-policies-section .sec-title#qhse-pol-title {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
      }

      .cha-head .cha-sec-lead,
      .qhse-policies-section .qhse-pol-lead {
        font-size: clamp(0.86rem, 3.6vw, 1rem);
        padding-left: 0.1rem;
        padding-right: 0.1rem;
      }

      .cha-card__media {
        height: clamp(96px, 32vw, 128px);
      }

      .cha-card__body {
        min-height: 0;
        padding-bottom: 1.05rem;
      }

      .cha-card__head {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
      }

      .cha-card__head h3 {
        flex: 1 1 10rem;
        min-width: 0;
      }

      .cha-card p {
        max-width: none;
      }

      .cha-letter {
        font-size: clamp(2.35rem, 18vw, 3.5rem);
        right: 0.25rem;
        bottom: 0.15rem;
      }

      .qhse-policies-section .qhse-item__top {
        flex-wrap: wrap;
        gap: 0.55rem;
      }

      .qhse-policies-section .qhse-item__top h3 {
        flex: 1 1 12rem;
        min-width: 0;
      }

      .qhse-pol-closing {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: clamp(1rem, 3vw, 1.35rem);
      }

      .qhse-pol-closing__mark {
        margin-bottom: 0.15rem;
      }

      #qhse-pol-cta.cta-pill.cta-wave {
        width: 100%;
        max-width: 100%;
        padding: 0.72rem 1rem;
        font-size: clamp(0.78rem, 3.5vw, 0.92rem);
        line-height: 1.35;
      }

      #qhse-pol-cta .cta-wave-label {
        white-space: normal;
        text-align: center;
        display: block;
      }

      .cha-section::after {
        opacity: 0.5;
      }

      .why-point {
        grid-template-columns: 1fr;
      }

      .padrao-timeline {
        --tl-aside: 56px;
      }

      .timeline-flow {
        --tl-pad-l: 0px;
      }

      .timeline-step-row {
        gap: 10px;
      }
    }

    @media (hover: none) {
      .cha-card:hover,
      .qhse-policies-section .qhse-item:hover {
        transform: none;
      }
    }

    /* Telefones e tablets estreitos: 2 colunas QHSE esmagavam os títulos */
    @media (max-width: 720px) {
      .qhse-policies-section .qhse-grid {
        grid-template-columns: 1fr;
      }

      .qhse-policies-section .qhse-item:nth-child(n) {
        grid-column: auto;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-kicker-wrap,
      .hero-kicker-line,
      .hero h1,
      .hero-copy {
        animation: none !important;
        opacity: 1;
        transform: none;
        filter: none;
      }

      .promo-anim {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .conformity-inner .conform-reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
      }
    }

    /* Cotação de petróleo na barra (mesmo padrão de servicos.html) */
    .site-header.is-scrolled .site-lang-bar {
      position: relative;
      isolation: isolate;
      background: transparent;
    }

    .site-header.is-scrolled .site-lang-bar::before {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 100vw;
      top: 0;
      bottom: 0;
      background: var(--brand-900);
      box-shadow: inset 0 -1px 0 rgba(100, 168, 203, 0.22);
      z-index: 0;
      pointer-events: none;
    }

    .site-header.is-scrolled .site-lang-bar > * {
      position: relative;
      z-index: 1;
    }

    .site-oil-quote {
      display: inline-flex;
      align-items: center;
      gap: 0.48rem;
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.9);
      white-space: nowrap;
      font-weight: 700;
    }

    .site-oil-quote-value {
      letter-spacing: 0.02em;
      font-weight: 800;
      color: #fff;
    }

    .site-oil-quote-value.is-up {
      color: #9ff1b0;
    }

    .site-oil-quote-value.is-down {
      color: #ffb7b7;
    }

    .site-header.is-scrolled .site-oil-quote {
      color: rgba(14, 50, 72, 0.76);
    }

    .site-header.is-scrolled .site-oil-quote-value {
      color: #0e3248;
    }

    .site-header.is-scrolled .site-oil-quote-value.is-up {
      color: #1b8f43;
    }

    .site-header.is-scrolled .site-oil-quote-value.is-down {
      color: #bb3434;
    }

    .site-header.is-scrolled .site-lang-bar .site-oil-quote {
      color: rgba(255, 255, 255, 0.9);
    }

    .site-header.is-scrolled .site-lang-bar .site-oil-quote-value {
      color: #fff;
    }

    .site-header.is-scrolled .site-lang-bar .site-oil-quote-value.is-up {
      color: #9ff1b0;
    }

    .site-header.is-scrolled .site-lang-bar .site-oil-quote-value.is-down {
      color: #ffb7b7;
    }

    .site-header.is-scrolled .site-lang-bar .site-lang-link,
    .site-header.is-scrolled .site-lang-bar .site-lang-btn {
      color: rgba(255, 255, 255, 0.82);
    }

    .site-header.is-scrolled .site-lang-bar .site-lang-link:hover,
    .site-header.is-scrolled .site-lang-bar .site-lang-btn:hover {
      color: #fff;
    }

    .site-header.is-scrolled .site-lang-bar .site-lang-link.is-active,
    .site-header.is-scrolled .site-lang-bar .site-lang-btn.is-active {
      color: #0e3248;
      background: #fff;
      box-shadow: 0 6px 12px rgba(14, 50, 72, 0.16);
    }

    .site-header.is-scrolled .site-lang-bar .site-lang-sep {
      color: rgba(255, 255, 255, 0.6);
    }

    @media (max-width: 900px) {
      .site-lang-bar {
        gap: 0.4rem;
        font-size: 0.74rem;
      }

      .site-oil-quote {
        flex: 1;
        min-width: 0;
        font-size: 0.72rem;
        gap: 0.38rem;
        letter-spacing: 0.055em;
      }

      .site-oil-quote-value {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
    }