:root {
  --irp-global-charcoal: #333437;
  --irp-global-charcoal-deep: #252628;
  --irp-global-charcoal-soft: #50484a;
  --irp-global-orange: #f5953c;
  --irp-global-white: #ffffff;
  --irp-global-muted: #adaeaf;
  --irp-global-line: rgba(255, 255, 255, 0.18);
  --irp-global-sans: "Montserrat", Arial, sans-serif;
  --irp-global-body: "Manrope", Arial, sans-serif;
  --irp-global-container: min(calc(100% - 40px), 1170px);
  --irp-global-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body.irp-global-shell-menu-open {
  overflow: hidden;
}

.irp-global-content-anchor {
  display: block;
  width: 0;
  height: 0;
  scroll-margin-top: 65px;
}

.irp-skip-link {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 2000;
  padding: 11px 18px;
  color: var(--irp-global-charcoal-deep);
  background: var(--irp-global-orange);
  font: 600 0.8rem/1 var(--irp-global-sans);
  text-transform: uppercase;
  text-decoration: none;
  transform: translate(-50%, -160%);
  transition: transform 180ms var(--irp-global-ease);
}

.irp-skip-link:focus {
  transform: translate(-50%, 0);
}

.irp-global-header,
.irp-global-header *,
.irp-global-footer,
.irp-global-footer * {
  box-sizing: border-box;
}

.irp-global-header a,
.irp-global-header button,
.irp-global-footer a {
  -webkit-tap-highlight-color: transparent;
}

.irp-global-header a:focus-visible,
.irp-global-header button:focus-visible,
.irp-global-footer a:focus-visible {
  outline: 2px solid var(--irp-global-orange);
  outline-offset: 5px;
}

.irp-global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 65px;
  margin: 0;
  padding: 0;
  color: var(--irp-global-white);
  background: var(--irp-global-charcoal);
  font-family: var(--irp-global-sans);
}

.irp-global-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.irp-global-header__inner {
  position: relative;
  width: var(--irp-global-container);
  height: 65px;
  margin: 0 auto;
  padding: 0;
}

.irp-global-header__brand {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: block;
  width: 168px;
  height: 124px;
  overflow: hidden;
  background: #eeeeee;
  transition: height 300ms var(--irp-global-ease), box-shadow 300ms var(--irp-global-ease);
}

.irp-global-header__brand-sprite {
  display: block;
  width: 168px;
  height: 124px;
  background-image: url("../20260825/assets/sprites.png");
  background-repeat: no-repeat;
  background-position: -168px 0;
  transition: height 300ms var(--irp-global-ease), background-position 300ms var(--irp-global-ease);
}

.irp-global-header.is-compact .irp-global-header__brand {
  height: 64px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.irp-global-header.is-compact .irp-global-header__brand-sprite {
  height: 64px;
  background-position: -428px -28px;
}

.irp-global-header__nav {
  height: 65px;
  margin: 0 0 0 205px;
  padding: 0;
}

.irp-global-header__nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 65px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.irp-global-header__nav li {
  position: relative;
  flex: 0 0 auto;
  margin: 0 0 0 30px;
  padding: 0;
}

.irp-global-header__nav li:first-child {
  margin-left: 0;
}

.irp-global-header__nav li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -16px;
  width: 1px;
  height: 8px;
  background: var(--irp-global-charcoal-soft);
  content: "";
  transform: translateY(-50%);
}

.irp-global-header__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0;
  padding: 0;
  color: var(--irp-global-white);
  background: transparent;
  font: 500 11px/1 var(--irp-global-sans);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  text-underline-offset: 0.35em;
  transition: color 180ms ease;
}

.irp-global-header__nav a:hover,
.irp-global-header__nav a[aria-current="page"] {
  color: var(--irp-global-orange);
  background: transparent;
}

.irp-global-header__nav .is-action a {
  color: var(--irp-global-orange);
  font-weight: 600;
}

.irp-global-header__nav .is-action a:hover {
  color: var(--irp-global-white);
}

.irp-global-header__menu-button {
  position: absolute;
  top: 15px;
  right: 0;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 108px;
  height: 35px;
  margin: 0;
  padding: 0 15px;
  border: 1px solid #5c5d5f;
  border-radius: 0;
  color: var(--irp-global-white);
  background: transparent;
  box-shadow: none;
  font: 400 12px/1 var(--irp-global-sans);
  text-transform: uppercase;
  cursor: pointer;
}

.irp-global-header__menu-button:hover {
  border-color: var(--irp-global-orange);
  color: var(--irp-global-white);
  background: transparent;
}

.irp-global-header__menu-icon {
  display: grid;
  gap: 3px;
  width: 14px;
}

.irp-global-header__menu-icon i {
  display: block;
  width: 14px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.irp-global-header__menu-button[aria-expanded="true"] .irp-global-header__menu-icon i:first-child {
  transform: translateY(5px) rotate(45deg);
}

.irp-global-header__menu-button[aria-expanded="true"] .irp-global-header__menu-icon i:nth-child(2) {
  opacity: 0;
}

.irp-global-header__menu-button[aria-expanded="true"] .irp-global-header__menu-icon i:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.irp-global-footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--irp-global-white);
  background: var(--irp-global-charcoal-deep);
  background-image: none;
  font-family: var(--irp-global-body);
  font-size: 16px;
  line-height: 1.65;
  text-align: left;
}

.irp-global-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: auto;
  height: 1px;
  background: var(--irp-global-orange);
  content: "";
}

.irp-global-footer__inner {
  width: min(calc(100% - 80px), 1440px);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 116px) 0 34px;
}

.irp-global-footer__opening {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: 0 0 clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--irp-global-line);
}

.irp-global-footer__identity h2 {
  max-width: none;
  margin: 0 0 18px;
  padding: 0;
  color: var(--irp-global-white);
  font: 500 clamp(2rem, 4.2vw, 4.4rem)/1 var(--irp-global-sans);
  letter-spacing: -0.04em;
  text-transform: none;
}

.irp-global-footer__identity p {
  max-width: 62ch;
  margin: 0;
  padding: 0;
  color: #c8c9ca;
  font: 400 clamp(1rem, 1.25vw, 1.16rem)/1.65 var(--irp-global-body);
}

.irp-global-footer__primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 0;
  padding: 0 28px;
  border: 1px solid var(--irp-global-orange);
  border-radius: 0;
  color: var(--irp-global-charcoal-deep);
  background: var(--irp-global-orange);
  font: 600 0.74rem/1 var(--irp-global-sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.irp-global-footer__primary-action:hover {
  color: var(--irp-global-white);
  background: transparent;
}

.irp-global-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: clamp(48px, 8vw, 130px);
  margin: 0;
  padding: clamp(56px, 7vw, 90px) 0;
}

.irp-global-footer h3 {
  max-width: none;
  margin: 0 0 26px;
  padding: 0;
  color: var(--irp-global-white);
  font: 600 0.72rem/1.3 var(--irp-global-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.irp-global-footer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.irp-global-footer li {
  margin: 0;
  padding: 0;
}

.irp-global-footer address,
.irp-global-footer p {
  margin: 0;
  padding: 0;
  font-style: normal;
}

.irp-global-footer address {
  display: grid;
  margin-bottom: 22px;
  color: #c8c9ca;
  font: 400 1rem/1.65 var(--irp-global-body);
}

.irp-global-footer__contact,
.irp-global-footer__responsibility {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.irp-global-footer__responsibility p {
  color: #c8c9ca;
  font: 400 1rem/1.65 var(--irp-global-body);
}

.irp-global-footer a:not(.irp-global-footer__primary-action) {
  margin: 0;
  padding: 0;
  color: #d8d9da;
  background: transparent;
  font: 400 1rem/1.65 var(--irp-global-body);
  text-transform: none;
  text-decoration-color: rgba(245, 149, 60, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.32em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.irp-global-footer a:not(.irp-global-footer__primary-action):hover {
  color: var(--irp-global-orange);
  background: transparent;
  text-decoration-color: currentColor;
}

.irp-global-footer__contact > a + a,
.irp-global-footer__responsibility > a {
  margin-top: 12px;
}

.irp-global-footer__responsibility > a {
  margin-top: 24px;
}

.irp-global-footer__closing {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--irp-global-line);
  color: var(--irp-global-muted);
  font: 500 0.7rem/1.5 var(--irp-global-sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.irp-global-footer__closing p {
  color: inherit;
  font: inherit;
}

@media (max-width: 1200px) {
  .irp-global-header__nav {
    position: absolute;
    top: 65px;
    right: calc((100vw - 100%) / -2);
    left: calc((100vw - 100%) / -2);
    height: auto;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--irp-global-charcoal);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.2);
    visibility: visible;
    opacity: 1;
    clip-path: none;
  }

  .irp-global-shell-js .irp-global-header__nav {
    visibility: hidden;
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 320ms var(--irp-global-ease), opacity 180ms ease, visibility 0s linear 320ms;
  }

  .irp-global-shell-js .irp-global-header__nav.is-open {
    visibility: visible;
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition-delay: 0s;
  }

  .irp-global-header__nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: var(--irp-global-container);
    height: auto;
    margin: 0 auto;
    padding: 74px 0 34px;
  }

  .irp-global-header__nav li,
  .irp-global-header__nav li:first-child {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .irp-global-header__nav li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .irp-global-header__nav li:not(:last-child)::after {
    display: none;
  }

  .irp-global-header__nav a {
    width: 100%;
    min-height: 54px;
    font-size: 0.76rem;
  }

  .irp-global-shell-js .irp-global-header__menu-button {
    display: inline-flex;
  }
}

@media (max-width: 860px) {
  :root {
    --irp-global-container: min(calc(100% - 28px), 1170px);
  }

  .irp-global-footer__inner {
    width: calc(100% - 40px);
  }

  .irp-global-footer__opening {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .irp-global-footer__primary-action {
    justify-self: start;
  }

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

  .irp-global-footer__responsibility {
    padding-top: 42px;
    border-top: 1px solid var(--irp-global-line);
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .irp-global-header__inner {
    width: calc(100% - 20px);
  }

  .irp-global-header__brand {
    left: 0;
  }

  .irp-global-header__menu-button {
    right: 0;
  }

  .irp-global-header__nav {
    right: -10px;
    left: -10px;
  }

  .irp-global-header__nav ul {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }

  .irp-global-header__nav li:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .irp-global-header__nav li:last-child {
    border-bottom: 0;
  }

  .irp-global-header__nav a {
    min-height: 50px;
  }

  .irp-global-footer__inner {
    width: calc(100% - 32px);
  }

  .irp-global-footer__opening {
    gap: 36px;
  }

  .irp-global-footer__primary-action {
    width: 100%;
  }

  .irp-global-footer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .irp-global-footer__responsibility {
    padding-top: 48px;
    grid-column: auto;
  }

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

  .irp-global-footer__closing {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .irp-skip-link,
  .irp-global-header *,
  .irp-global-footer * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header V2 aprovado e integração global. */
/* Candidata local do shell central. Não ativada no WordPress. */
body.irp-header-v2 .irp-global-header { position:fixed; height:88px; background:transparent; transition:background-color 260ms ease; }
body.irp-header-v2 .irp-global-header::after { display:none; }
body.irp-header-v2 .irp-global-header.is-scrolled, body.irp-header-v2 .irp-global-header.has-open-menu { background:#191a1c; }
body.irp-header-v2 .irp-global-header__inner { width:calc(100% - 96px); max-width:1600px; height:88px; display:flex; align-items:center; justify-content:space-between; gap:36px; }
body.irp-header-v2 .irp-global-header .irp-global-header__brand { position:relative; flex:0 0 238px; width:238px; height:46px; background:transparent; box-shadow:none; }
body.irp-header-v2 .irp-global-header .irp-global-header__brand img { position:absolute; width:272px; height:272px; max-width:none; left:-20px; top:-114px; filter:brightness(0) invert(1); }
body.irp-header-v2 .irp-global-header__brand-sprite { display:none; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav { height:auto; margin:0; flex:1; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav > ul { height:auto; width:100%; padding:0; gap:clamp(12px,1.2vw,20px); }
body.irp-header-v2 .irp-global-header .irp-global-header__nav li { margin:0; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav li::after { display:none; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav a { font:500 11px/1.3 var(--irp-global-sans); letter-spacing:.025em; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav a { padding:8px 0; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav .is-action { margin-left:16px; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav .is-action a { color:#191a1c; background:#f4f0e8; padding:17px 22px; min-height:50px; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav a:hover { color:#f3c877; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav .is-action a:hover { background:#f3c877; color:#191a1c; }
body.irp-header-v2 .irp-global-header :focus-visible { outline:2px solid #f3c877; outline-offset:5px; }
/* Proteção tonal da fotografia, sem criar uma faixa opaca na abertura. */
body.irp-header-v2.irp-header-overlay #inicio::after { content:''; position:absolute; inset:0 0 auto; height:180px; background:linear-gradient(#0009,transparent); pointer-events:none; z-index:2; }
body.irp-header-v2.irp-global-shell-active { padding-top:0!important; }
body.irp-header-v2 .irp-global-header__menu-button { display:none!important; }
@media(max-width:1200px) {
body.irp-header-v2 .irp-global-header, body.irp-header-v2 .irp-global-header__inner { height:76px; }
body.irp-header-v2 .irp-global-header__inner { width:calc(100% - 40px); gap:12px; }
body.irp-header-v2 .irp-global-header .irp-global-header__brand { flex-basis:190px; width:190px; height:44px; }
body.irp-header-v2 .irp-global-header .irp-global-header__brand img { width:220px; height:220px; top:-91px; left:-16px; }
body.irp-header-v2 .irp-global-header .irp-global-header__menu-button { display:flex!important; position:static; border:0; color:white; height:48px; min-width:48px; padding:10px 0 10px 14px; gap:10px; background:transparent; font-size:11px; }
body.irp-header-v2 .irp-global-header__menu-icon i { background:white; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav { display:none; position:absolute; top:76px; left:-20px; right:-20px; margin:0; padding:18px 24px 32px; height:calc(100vh - 76px); height:calc(100dvh - 76px); overflow:auto; background:#191a1c; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav.is-open { display:block; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav > ul { display:flex; align-items:stretch; justify-content:flex-start; flex-direction:column; gap:0; min-height:100%; width:100%; padding:0; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav > ul > li { border-top:1px solid #ffffff24; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav a { width:100%; min-height:44px; font-size:16px; text-transform:none; letter-spacing:0; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav .is-action { margin:20px 0 0; padding-top:0; border:0; }
body.irp-header-v2 .irp-global-header .irp-global-header__nav .is-action a { justify-content:center; font-size:15px; }
body.irp-header-v2 .irp-global-header__menu-button[aria-expanded=true] .irp-global-header__menu-icon i:nth-child(1) { transform:translateY(6px) rotate(45deg); }
body.irp-header-v2 .irp-global-header__menu-button[aria-expanded=true] .irp-global-header__menu-icon i:nth-child(2) { opacity:0; }
body.irp-header-v2 .irp-global-header__menu-button[aria-expanded=true] .irp-global-header__menu-icon i:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
}
/* A home ocupa a abertura inteira depois de retirar o header do fluxo. */
body.irp-header-v2.irp-header-overlay #inicio { min-height:100vh; min-height:100svh; }
html { scroll-padding-top:96px; }
@supports(padding:env(safe-area-inset-top)) {
body.irp-header-v2 .irp-global-header { padding-top:env(safe-area-inset-top); height:calc(88px + env(safe-area-inset-top)); }
 @media(max-width:1200px) {
body.irp-header-v2 .irp-global-header { height:calc(76px + env(safe-area-inset-top)); }
body.irp-header-v2 .irp-global-header__inner { width:calc(100% - max(20px,env(safe-area-inset-left)) - max(20px,env(safe-area-inset-right))); margin-left:max(20px,env(safe-area-inset-left)); margin-right:max(20px,env(safe-area-inset-right)); }
body.irp-header-v2 .irp-global-header .irp-global-header__nav { position:fixed; top:calc(76px + env(safe-area-inset-top)); left:0; right:0; height:calc(100vh - 76px - env(safe-area-inset-top)); height:calc(100dvh - 76px - env(safe-area-inset-top)); padding-left:max(24px,env(safe-area-inset-left)); padding-right:max(24px,env(safe-area-inset-right)); padding-bottom:max(32px,env(safe-area-inset-bottom)); }
 }
}
@media(prefers-reduced-motion:reduce) { .irp-global-header,.irp-global-header * { transition:none!important; } }

body.irp-header-v2 { --irp-header-height:88px; --irp-global-shell-header-height:88px; }
body.irp-header-v2 .irp-global-header { position:sticky; background:#191a1c; }
body.irp-header-v2.irp-header-overlay .irp-global-header { position:fixed; background:transparent; }
body.irp-header-v2.irp-header-overlay .irp-global-header.is-scrolled,
body.irp-header-v2.irp-header-overlay .irp-global-header.has-open-menu { background:#191a1c; }
body.irp-header-v2.irp-header-overlay:not(.home) .irp-global-header:not(.is-scrolled):not(.has-open-menu) {
 background:linear-gradient(180deg,rgba(25,26,28,.82) 0%,rgba(25,26,28,.38) 68%,rgba(25,26,28,0) 100%);
}
body.irp-header-v2.page-template-template-inscricao,
body.irp-header-v2.page-template-template-peca-formulario { padding-top:var(--irp-header-height)!important; }
html.irp-form-embedded body.irp-header-v2.page-template-template-inscricao,
html.irp-form-embedded body.irp-header-v2.page-template-template-peca-formulario { padding-top:0!important; }
body.irp-header-v2 .irp-global-header__nav { visibility:visible; opacity:1; clip-path:none; transition:none; }
body.irp-header-v2.cinematic-home .reading-progress { top:calc(var(--irp-header-height) + env(safe-area-inset-top, 0px)); }
html.irp-form-embedded body.irp-header-v2 .irp-global-header,
html.irp-form-embedded body.irp-header-v2 .irp-global-footer,
html.irp-form-embedded body.irp-header-v2 .irp-skip-link { display:none; }
@media(max-width:1200px) { body.irp-header-v2 { --irp-header-height:76px; --irp-global-shell-header-height:76px; } }
/* Conteúdo essencial acessível mesmo se o JS estiver bloqueado ou falhar ao carregar. */
@media(max-width:1200px) {
 html:not(.irp-global-shell-js) body.irp-header-v2 .irp-global-header:not([data-irp-header-ready]) { position:relative; height:auto; background:#191a1c; }
 html:not(.irp-global-shell-js) body.irp-header-v2 .irp-global-header:not([data-irp-header-ready]) .irp-global-header__inner { display:block; height:auto; padding:20px 0; }
 html:not(.irp-global-shell-js) body.irp-header-v2 .irp-global-header:not([data-irp-header-ready]) .irp-global-header__nav { display:block; position:static; height:auto; padding:20px 0 0; overflow:visible; }
 html:not(.irp-global-shell-js) body.irp-header-v2 .irp-global-header:not([data-irp-header-ready]) .irp-global-header__nav > ul { display:block; min-height:0; }
 html:not(.irp-global-shell-js) body.irp-header-v2 .irp-global-header:not([data-irp-header-ready]) .irp-global-header__menu-button { display:none!important; }
 html:not(.irp-global-shell-js) body.irp-header-v2 .irp-global-header:not([data-irp-header-ready]) .irp-global-header__nav .is-action { margin:20px 0 0; }
}
