@charset "UTF-8";
/**
 * @file
 * Global styles entrypoint for portal_firjan (subtheme).
 *
 * PURPOSE:
 * - Keep global styles minimal and predictable.
 * - This file is meant for:
 *   - CSS reset overrides (if any)
 *   - Design System imports (tokens, utilities)
 *   - global helpers (ds- prefixed utilities, if project uses them)
 *   - base typography and global layout primitives that apply everywhere
 *
 * DO NOT:
 * - Put page-specific rules here (use layout.scss).
 * - Put quick hacks here (create a proper module/partial).
 *
 * Output:
 * - dist/css/global.css
 *
 * Build:
 * - npm run build:css
 *
 * Organization guideline:
 * - Prefer `@use` over `@import` for new code.
 * - Keep imports at the top, then base rules, then helpers.
 */
/**
 * Scss for DS Split Carousel
 */
.ds-split-carousel {
  overflow-x: hidden;
  touch-action: pan-y;
}
@media (max-width: 768px) {
  .ds-split-carousel .ds-btn-icon {
    display: none !important;
  }
}
.ds-split-carousel__bg {
  pointer-events: none;
  z-index: 0;
}
.ds-split-carousel__slide {
  height: auto;
}
.ds-split-carousel .ds-btn-icon--primary {
  background-color: var(--ds-color-shape-accent-brand-default) !important;
}
.ds-split-carousel .splide__arrow {
  position: static !important;
  transform: none !important;
}
.ds-split-carousel .splide__arrow svg {
  fill: currentColor;
  transform: none !important;
}
.ds-split-carousel .splide__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.ds-split-carousel {
  /* =========================================================================
     HACK DE ANIMAÇÃO COM SPLIDE.JS
     Ao invés de deixar o Splide mover a trilha inteira, forçamos ela a ficar
     parada e animamos a largura (width) do card que está saindo.
     ========================================================================= */
}
.ds-split-carousel .splide__track {
  overflow: visible !important;
}
@media (max-width: 768px) {
  .ds-split-carousel .splide__track {
    padding-bottom: 2rem;
  }
}
.ds-split-carousel .splide__list {
  transform: none !important;
  display: flex;
  z-index: 5;
}
.ds-split-carousel .splide__slide {
  flex-shrink: 0;
  transform-origin: left center;
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1), margin 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  width: 300px;
  margin-right: 1.5rem;
  opacity: 1;
  transform: scale(1);
}
@media (min-width: 992px) {
  .ds-split-carousel .splide__slide {
    width: 360px;
    margin-right: 2rem;
  }
}
.ds-split-carousel .splide__slide {
  /* Estado aplicado via JS para os cards que ficaram para trás */
}
.ds-split-carousel .splide__slide.is-past {
  width: 0 !important;
  margin-right: 0 !important;
  opacity: 0;
  transform: scale(0.75);
  pointer-events: none;
}
.ds-split-carousel .splide__pagination {
  bottom: 0;
  padding: 0;
  z-index: 10;
}
.ds-split-carousel .splide__pagination li {
  display: flex;
  align-items: center;
}
.ds-split-carousel .splide__pagination__page {
  background: var(--ds-color-shape-neutral-medium);
  border: none;
  width: 8px;
  height: 8px;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  padding: 0;
}
.ds-split-carousel .splide__pagination__page.is-active {
  background: var(--ds-color-shape-accent-brand-default);
  transform: scale(1.2);
}
.ds-split-carousel__card-wrapper {
  width: 300px;
}
@media (min-width: 992px) {
  .ds-split-carousel__card-wrapper {
    width: 360px;
  }
}
.ds-split-carousel {
  /* =========================================================================
     BLEED LAYOUT TRICK
     Fazer a trilha do carrossel vazar até o final da tela, quebrando o limite 
     do .container do Bootstrap, sem quebrar a proporção do grid da coluna.
     ========================================================================= */
}
@media (min-width: 992px) {
  .ds-split-carousel__track {
    width: 100vw;
    z-index: 1;
  }
}

.ds-card-produto {
  height: 100%;
  min-height: 430px;
  max-height: 430px;
  border-radius: 24px;
  padding: var(--ds-spacing-padding-40);
  gap: var(--ds-spacing-gap-24);
}
.ds-card-produto__bg {
  pointer-events: none;
  mix-blend-mode: multiply;
}
.ds-card-produto__icon {
  width: 56px;
  height: 56px;
  color: var(--ds-color-icon-accent-brand-default);
}
.ds-card-produto__icon img,
.ds-card-produto__icon svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.ds-card-produto__desc {
  color: var(--ds-color-text-neutral-white);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ds-card-produto__desc * {
  display: inline;
}
.ds-card-produto__desc p {
  color: var(--ds-color-text-neutral-white) !important;
}
.ds-card-produto__btn {
  transition: all 0.2s ease;
  height: 45px;
}
.ds-card-produto__btn svg {
  transition: transform 0.2s ease;
}

.paragraph--type--ds-card-cta {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  padding-block: 6rem;
}
@media (max-width: 809px) {
  .paragraph--type--ds-card-cta {
    padding-block: 3rem;
  }
}

.ds-card-cta {
  position: relative;
  z-index: 1;
}
.ds-card-cta__panel {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 100%;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 252, 0.98));
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(14, 40, 90, 0.16);
  overflow: visible;
}
@media (max-width: 809px) {
  .ds-card-cta__panel {
    padding: 0 1rem 2rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .ds-card-cta__panel {
    padding: 0 1rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .ds-card-cta__panel {
    padding: 0 2.5rem;
  }
}
@media (min-width: 1600px) {
  .ds-card-cta__panel {
    padding-block: 0;
  }
}
.ds-card-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 84, 255, 0.08), transparent 38%), linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 38, 114, 0.04));
  pointer-events: none;
}
.ds-card-cta__media, .ds-card-cta__content {
  position: relative;
  z-index: 1;
  margin: 0 !important;
}
@media (max-width: 809px) {
  .ds-card-cta__media .ds-button, .ds-card-cta__content .ds-button {
    width: 100%;
  }
}
.ds-card-cta__media .ds-button svg, .ds-card-cta__content .ds-button svg {
  color: white;
}
.ds-card-cta__media-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: visible;
}
.ds-card-cta__media-inner .field,
.ds-card-cta__media-inner .media,
.ds-card-cta__media-inner picture {
  display: block;
  width: 100%;
}
.ds-card-cta__media-inner img {
  display: block;
  width: 100%;
  max-width: 290px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
@media (max-width: 809px) {
  .ds-card-cta__media-inner img {
    transform: translate(-4%, -36px);
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .ds-card-cta__media-inner img {
    max-width: 350px;
    transform: translate(-4%, -36px);
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .ds-card-cta__media-inner img {
    max-width: 400px;
    transform: translate(-6%, -45px);
  }
}
@media (min-width: 1600px) {
  .ds-card-cta__media-inner img {
    max-width: 415px;
    transform: translate(-4%, -50px);
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .ds-card-cta__media-inner {
    min-height: 220px;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .ds-card-cta__media-inner {
    min-height: 240px;
  }
}
@media (min-width: 1600px) {
  .ds-card-cta__media-inner {
    min-height: 260px;
  }
}
.ds-card-cta__title {
  font-family: var(--ds-font-family-heading);
  font-size: var(--ds-font-size-heading-sm);
  font-weight: var(--ds-font-weight-medium);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-text-neutral-medium);
}
.ds-card-cta__description {
  font-family: var(--ds-font-family-heading);
  font-size: clamp(2rem, 2.7vw, var(--ds-font-size-heading-lg));
  font-weight: var(--ds-font-weight-bold);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-text-neutral-heavy);
  max-width: 14ch;
}
@media (max-width: 809px) {
  .ds-card-cta__description {
    max-width: 100%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .ds-card-cta__description {
    max-width: 100%;
  }
}
.ds-card-cta__btn {
  display: inline-flex;
}

/* stylelint-disable */
/* prettier-ignore-start */
/* ===============================
   CLASSES UTILITÁRIAS (DS PARAGRAPHS BEHAVIOR)
   =============================== */
/* Shape (Backgrounds) */
.bg-brand-stronger {
  background-color: var(--ds-color-shape-accent-brand-stronger) !important;
}

.bg-brand-strong {
  background-color: var(--ds-color-shape-accent-brand-strong) !important;
}

.bg-brand-default {
  background-color: var(--ds-color-shape-accent-brand-default) !important;
}

.bg-brand-subdued {
  background-color: var(--ds-color-shape-accent-brand-subdued) !important;
}

.bg-brand-muted {
  background-color: var(--ds-color-shape-accent-brand-muted) !important;
}

.bg-brand-soft {
  background-color: var(--ds-color-shape-accent-brand-soft) !important;
}

.bg-brand-alt {
  background-color: var(--ds-color-shape-accent-brand-alt) !important;
}

.bg-brand-alt-dark {
  background-color: var(--ds-color-shape-accent-brand-alt-dark) !important;
}

/* Text */
.text-brand-stronger {
  color: var(--ds-color-text-accent-brand-stronger) !important;
}

.text-brand-strong {
  color: var(--ds-color-text-accent-brand-strong) !important;
}

.text-brand-default {
  color: var(--ds-color-text-accent-brand-default) !important;
}

.text-brand-subdued {
  color: var(--ds-color-text-accent-brand-subdued) !important;
}

.text-brand-muted {
  color: var(--ds-color-text-accent-brand-muted) !important;
}

.text-brand-soft {
  color: var(--ds-color-text-accent-brand-soft) !important;
}

.text-brand-alt {
  color: var(--ds-color-text-accent-brand-alt) !important;
}

.text-brand-alt-2 {
  color: var(--ds-color-text-accent-brand-alt-2) !important;
}

.text-brand-hover {
  color: var(--ds-color-text-accent-brand-hover) !important;
}

/* Border */
.border-brand-strong {
  border-color: var(--ds-color-border-accent-brand-strong);
  border-style: solid;
}

.border-brand-default {
  border-color: var(--ds-color-border-accent-brand-default);
  border-style: solid;
}

.border-brand-subdued {
  border-color: var(--ds-color-border-accent-brand-subdued);
  border-style: solid;
}

.border-brand-muted {
  border-color: var(--ds-color-border-accent-brand-muted);
  border-style: solid;
}

.border-brand-soft {
  border-color: var(--ds-color-border-accent-brand-soft);
  border-style: solid;
}

/* Icon (Para SVGs com preenchimento em currentColor ou via classe) */
.icon-brand-strong {
  fill: var(--ds-color-icon-accent-brand-strong);
  color: var(--ds-color-icon-accent-brand-strong);
}

.icon-brand-default {
  fill: var(--ds-color-icon-accent-brand-default);
  color: var(--ds-color-icon-accent-brand-default);
}

.icon-brand-subdued {
  fill: var(--ds-color-icon-accent-brand-subdued);
  color: var(--ds-color-icon-accent-brand-subdued);
}

.icon-brand-muted {
  fill: var(--ds-color-icon-accent-brand-muted);
  color: var(--ds-color-icon-accent-brand-muted);
}

.icon-brand-soft {
  fill: var(--ds-color-icon-accent-brand-soft);
  color: var(--ds-color-icon-accent-brand-soft);
}

/* ===============================
   SHAPE (FUNDO) / NEUTRAL & FEEDBACK
   =============================== */
.bg-neutral-white {
  background-color: var(--ds-color-shape-neutral-white) !important;
}

.bg-neutral-soft {
  background-color: var(--ds-color-shape-neutral-soft) !important;
}

.bg-neutral-muted {
  background-color: var(--ds-color-shape-neutral-muted) !important;
}

.bg-neutral-subdued {
  background-color: var(--ds-color-shape-neutral-subdued) !important;
}

.bg-neutral-medium {
  background-color: var(--ds-color-shape-neutral-medium) !important;
}

.bg-neutral-strong {
  background-color: var(--ds-color-shape-neutral-strong) !important;
}

.bg-neutral-stronger {
  background-color: var(--ds-color-shape-neutral-stronger) !important;
}

.bg-neutral-heavy {
  background-color: var(--ds-color-shape-neutral-heavy) !important;
}

.bg-neutral-black {
  background-color: var(--ds-color-shape-neutral-black) !important;
}

.bg-feedback-success-light {
  background-color: var(--ds-color-shape-feedback-success-light) !important;
}

.bg-feedback-success-base {
  background-color: var(--ds-color-shape-feedback-success-base) !important;
}

.bg-feedback-success-dark {
  background-color: var(--ds-color-shape-feedback-success-dark) !important;
}

.bg-feedback-warning-light {
  background-color: var(--ds-color-shape-feedback-warning-light) !important;
}

.bg-feedback-warning-base {
  background-color: var(--ds-color-shape-feedback-warning-base) !important;
}

.bg-feedback-warning-dark {
  background-color: var(--ds-color-shape-feedback-warning-dark) !important;
}

.bg-feedback-error-light {
  background-color: var(--ds-color-shape-feedback-error-light) !important;
}

.bg-feedback-error-base {
  background-color: var(--ds-color-shape-feedback-error-base) !important;
}

.bg-feedback-error-dark {
  background-color: var(--ds-color-shape-feedback-error-dark) !important;
}

/* ===============================
   TEXT / NEUTRAL & FEEDBACK
   =============================== */
.text-neutral-white {
  color: var(--ds-color-text-neutral-white);
}

.text-neutral-soft {
  color: var(--ds-color-text-neutral-soft);
}

.text-neutral-muted {
  color: var(--ds-color-text-neutral-muted);
}

.text-neutral-subdued {
  color: var(--ds-color-text-neutral-subdued);
}

.text-neutral-medium {
  color: var(--ds-color-text-neutral-medium);
}

.text-neutral-strong {
  color: var(--ds-color-text-neutral-strong);
}

.text-neutral-stronger {
  color: var(--ds-color-text-neutral-stronger);
}

.text-neutral-heavy {
  color: var(--ds-color-text-neutral-heavy);
}

.text-neutral-black {
  color: var(--ds-color-text-neutral-black);
}

.text-feedback-success-light {
  color: var(--ds-color-text-feedback-success-light);
}

.text-feedback-success-base {
  color: var(--ds-color-text-feedback-success-base);
}

.text-feedback-success-dark {
  color: var(--ds-color-text-feedback-success-dark);
}

.text-feedback-warning-light {
  color: var(--ds-color-text-feedback-warning-light);
}

.text-feedback-warning-base {
  color: var(--ds-color-text-feedback-warning-base);
}

.text-feedback-warning-dark {
  color: var(--ds-color-text-feedback-warning-dark);
}

.text-feedback-error-light {
  color: var(--ds-color-text-feedback-error-light);
}

.text-feedback-error-base {
  color: var(--ds-color-text-feedback-error-base);
}

.text-feedback-error-dark {
  color: var(--ds-color-text-feedback-error-dark);
}

/* ===============================
   BORDER / NEUTRAL
   =============================== */
.border-neutral-white {
  border-color: var(--ds-color-border-neutral-white);
  border-style: solid;
}

.border-neutral-soft {
  border-color: var(--ds-color-border-neutral-soft);
  border-style: solid;
}

.border-neutral-muted {
  border-color: var(--ds-color-border-neutral-muted);
  border-style: solid;
}

.border-neutral-subdued {
  border-color: var(--ds-color-border-neutral-subdued);
  border-style: solid;
}

.border-neutral-medium {
  border-color: var(--ds-color-border-neutral-medium);
  border-style: solid;
}

.border-neutral-strong {
  border-color: var(--ds-color-border-neutral-strong);
  border-style: solid;
}

.border-neutral-stronger {
  border-color: var(--ds-color-border-neutral-stronger);
  border-style: solid;
}

.border-neutral-heavy {
  border-color: var(--ds-color-border-neutral-heavy);
  border-style: solid;
}

.border-neutral-black {
  border-color: var(--ds-color-border-neutral-black);
  border-style: solid;
}

/* ===============================
   ICON / NEUTRAL
   =============================== */
.icon-neutral-white {
  fill: var(--ds-color-icon-neutral-white);
  color: var(--ds-color-icon-neutral-white);
}

.icon-neutral-soft {
  fill: var(--ds-color-icon-neutral-soft);
  color: var(--ds-color-icon-neutral-soft);
}

.icon-neutral-muted {
  fill: var(--ds-color-icon-neutral-muted);
  color: var(--ds-color-icon-neutral-muted);
}

.icon-neutral-subdued {
  fill: var(--ds-color-icon-neutral-subdued);
  color: var(--ds-color-icon-neutral-subdued);
}

.icon-neutral-medium {
  fill: var(--ds-color-icon-neutral-medium);
  color: var(--ds-color-icon-neutral-medium);
}

.icon-neutral-strong {
  fill: var(--ds-color-icon-neutral-strong);
  color: var(--ds-color-icon-neutral-strong);
}

.icon-neutral-stronger {
  fill: var(--ds-color-icon-neutral-stronger);
  color: var(--ds-color-icon-neutral-stronger);
}

.icon-neutral-heavy {
  fill: var(--ds-color-icon-neutral-heavy);
  color: var(--ds-color-icon-neutral-heavy);
}

.icon-neutral-black {
  fill: var(--ds-color-icon-neutral-black);
  color: var(--ds-color-icon-neutral-black);
}

/* ===============================
   SUPORTE A CORES CUSTOMIZADAS (HEX)
   =============================== */
/* O PHP já aplica background-color automaticamente se a propriedade tiver "background" no nome.
   Para textos e bordas, precisamos avisar o CSS para ler a variável inline injetada. */
[style*="--ds-text-color"] {
  color: var(--ds-text-color) !important;
}

[style*="--ds-border-color"] {
  border-color: var(--ds-border-color) !important;
  border-style: solid;
}

[style*="--ds-icon-color"] {
  fill: var(--ds-icon-color) !important;
  color: var(--ds-icon-color) !important;
}

/* ===============================
   text / static
   =============================== */
.text-static-firjan-default {
  color: var(--ds-color-text-static-firjan-default);
}

.text-static-senai-default {
  color: var(--ds-color-text-static-senai-default);
}

.text-static-sesi-default {
  color: var(--ds-color-text-static-sesi-default);
}

.text-static-cirj-default {
  color: var(--ds-color-text-static-cirj-default);
}

.text-static-iel-default {
  color: var(--ds-color-text-static-iel-default);
}

/* ===============================
   border-radius / static
   =============================== */
.ds-border-radius-none {
  border-radius: var(--ds-radious-size-null) !important;
}

.ds-border-radious-2 {
  border-radius: var(--ds-radious-size-radious-2) !important;
}

.ds-border-radious-4 {
  border-radius: var(--ds-radious-size-radious-4) !important;
}

.ds-border-radious-6 {
  border-radius: var(--ds-radious-size-radious-6) !important;
}

.ds-border-radious-8 {
  border-radius: var(--ds-radious-size-radious-8) !important;
}

.ds-border-radious-12 {
  border-radius: var(--ds-radious-size-radious-12) !important;
}

.ds-border-radious-16 {
  border-radius: var(--ds-radious-size-radious-16) !important;
}

.ds-border-radious-24 {
  border-radius: var(--ds-radious-size-radious-24) !important;
}

.ds-border-radious-32 {
  border-radius: var(--ds-radious-size-radious-32) !important;
}

.ds-border-radious-40 {
  border-radius: var(--ds-radious-size-radious-40) !important;
}

.ds-border-radious-64 {
  border-radius: var(--ds-radious-size-radious-64) !important;
}

.ds-border-radious-full {
  border-radius: var(--ds-radious-radious-full) !important;
}

/* ===============================
   border-radius / custom
   =============================== */
.ds-border-radius-custom-top {
  border-radius: var(--ds-radious-size-radious-32) var(--ds-radious-size-radious-32) var(--ds-radious-size-null) var(--ds-radious-size-null) !important;
  margin-top: -25px !important;
}

.ds-border-radius-custom-bottom {
  border-radius: var(--ds-radious-size-null) var(--ds-radious-size-null) var(--ds-radious-size-radious-32) var(--ds-radious-size-radious-32) !important;
}

.ds-border-radius-custom-full {
  border-radius: var(--ds-radious-size-radious-32) !important;
}

.bg-brand-stronger {
  background-color: var(--ds-color-shape-accent-brand-stronger) !important;
}

.bg-brand-strong {
  background-color: var(--ds-color-shape-accent-brand-strong) !important;
}

.bg-brand-default {
  background-color: var(--ds-color-shape-accent-brand-default) !important;
}

.bg-brand-subdued {
  background-color: var(--ds-color-shape-accent-brand-subdued) !important;
}

.bg-brand-muted {
  background-color: var(--ds-color-shape-accent-brand-muted) !important;
}

.bg-brand-soft {
  background-color: var(--ds-color-shape-accent-brand-soft) !important;
}

.bg-brand-alt {
  background-color: var(--ds-color-shape-accent-brand-alt) !important;
}

.bg-brand-alt-dark {
  background-color: var(--ds-color-shape-accent-brand-alt-dark) !important;
}

.bg-color-static-white {
  background-color: var(--ds-color-static-white) !important;
}

.bg-color-static-black {
  background-color: var(--ds-color-static-black) !important;
}

.bg-color-static-firjan-default {
  background-color: var(--ds-color-shape-static-firjan-default) !important;
}

.bg-color-static-senai-default {
  background-color: var(--ds-color-shape-static-senai-default) !important;
}

.bg-color-static-sesi-default {
  background-color: var(--ds-color-shape-static-sesi-default) !important;
}

.bg-color-static-cirj-default {
  background-color: var(--ds-color-shape-static-cirj-default) !important;
}

.bg-color-static-iel-default {
  background-color: var(--ds-color-shape-static-iel-default) !important;
}

.paragraph--type--carousel {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.banner-wrapper {
  position: relative;
  --banner-text-max: 100%;
}
.banner-wrapper .container-fluid {
  padding-inline: 0;
}

@media (max-width: 639px) {
  .banner-layout {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .banner-wrapper {
    --banner-text-max: 360px;
  }
}
@media (min-width: 992px) {
  .banner-wrapper {
    --banner-text-max: 480px;
  }
}
@media (min-width: 1200px) {
  .banner-wrapper {
    --banner-text-max: 570px;
  }
}
@media (min-width: 1400px) {
  .banner-wrapper {
    --banner-text-max: 660px;
  }
}
.banner-full-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.banner-texto {
  text-align: left;
  flex-direction: column;
  padding: 0;
  justify-content: center;
}
.banner-texto .banner-texto-inner {
  display: flex;
  flex-direction: column;
  gap: var(--ds-spacing-gap-40);
  color: var(--ds-color-text-neutral-white);
  width: 100%;
  max-width: var(--banner-text-max);
  margin-left: auto;
  padding-inline: clamp(1rem, 2vw, 1rem);
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-texto .banner-texto-inner {
    gap: var(--ds-spacing-gap-24);
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-texto .banner-texto-inner {
    gap: var(--ds-spacing-gap-24);
  }
}
@media (max-width: 639px) {
  .banner-texto .banner-texto-inner {
    gap: var(--ds-spacing-gap-16);
  }
}
.banner-texto .banner-texto-inner .banner-heading,
.banner-texto .banner-texto-inner .banner-body {
  color: var(--ds-color-text-neutral-white);
}
.banner-texto .banner-texto-inner .banner-heading {
  font-size: 24px;
  line-height: 1.25;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-texto .banner-texto-inner .banner-heading {
    font-family: var(--ds-font-family-heading);
    font-size: var(--ds-font-size-heading-sm);
    font-weight: var(--ds-font-weight-bold);
    line-height: var(--ds-line-height-snug);
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-texto .banner-texto-inner .banner-heading {
    font-family: var(--ds-font-family-heading);
    font-size: var(--ds-font-size-heading-md);
    font-weight: var(--ds-font-weight-bold);
    line-height: var(--ds-line-height-snug);
  }
}
@media (min-width: 1600px) {
  .banner-texto .banner-texto-inner .banner-heading {
    font-family: var(--ds-font-family-heading);
    font-size: var(--ds-font-size-heading-xl);
    font-weight: var(--ds-font-weight-bold);
    line-height: var(--ds-line-height-tight);
  }
}
@media (max-width: 639px) {
  .banner-texto .banner-texto-inner .banner-heading {
    font-family: var(--ds-font-family-heading);
    font-size: var(--ds-font-size-heading-sm);
    font-weight: var(--ds-font-weight-bold);
    line-height: var(--ds-line-height-snug);
  }
}
@media (max-width: 639px) {
  .banner-texto .banner-texto-inner .banner-body {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-lg);
    font-weight: var(--ds-font-weight-regular);
    line-height: var(--ds-line-height-relaxed);
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-texto .banner-texto-inner .banner-body {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-lg);
    font-weight: var(--ds-font-weight-regular);
    line-height: var(--ds-line-height-relaxed);
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-texto .banner-texto-inner .banner-body {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-xl);
    font-weight: var(--ds-font-weight-regular);
    line-height: var(--ds-line-height-normal);
  }
}
@media (min-width: 1600px) {
  .banner-texto .banner-texto-inner .banner-body {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-xxl);
    font-weight: var(--ds-font-weight-regular);
    line-height: var(--ds-line-height-normal);
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-texto {
    width: 50% !important;
    flex: 0 0 50%;
    max-width: 50%;
    order: 0;
  }
  .banner-texto .banner-texto-inner {
    margin-left: 0;
    padding-inline: 1.5rem;
  }
}
@media (max-width: 639px) {
  .banner-texto {
    width: 100% !important;
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  .banner-texto .banner-texto-inner {
    padding: 20px 25px;
    min-height: 255px;
    max-height: 255px;
  }
}
.banner-texto .banner-chamada {
  margin-bottom: 4%;
  font-size: 20px;
  font-style: italic;
}
.banner-texto .banner-botao-link {
  margin-top: 1.25rem;
}

.banner-layout.flex-row-reverse .banner-texto .banner-texto-inner {
  margin-left: 0;
  margin-right: auto;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image {
    width: 50% !important;
    flex: 0 0 50%;
    max-width: 50%;
    order: 0;
  }
}
@media (max-width: 639px) {
  .banner-image {
    width: 100% !important;
    flex: 0 0 100%;
    max-width: 100%;
    height: 255px !important;
    order: 1;
  }
}
.banner-image, .banner-texto {
  padding: 0 !important;
  overflow: hidden;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image, .banner-texto {
    max-height: 360px;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image, .banner-texto {
    max-height: 360px;
  }
}
@media (min-width: 1600px) {
  .banner-image, .banner-texto {
    max-height: 550px;
  }
}
.banner-image .banner-media-inner, .banner-texto .banner-media-inner {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 639px) {
  .banner-image .banner-media-inner, .banner-texto .banner-media-inner {
    height: 255px;
    max-height: 255px;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image .banner-media-inner, .banner-texto .banner-media-inner {
    max-height: 360px;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image .banner-media-inner, .banner-texto .banner-media-inner {
    max-height: 360px;
  }
}
@media (min-width: 1600px) {
  .banner-image .banner-media-inner, .banner-texto .banner-media-inner {
    max-height: 550px;
  }
}
@media (max-width: 900px) {
  .banner-image .banner-media-inner, .banner-texto .banner-media-inner {
    justify-content: center;
  }
}
.banner-image .banner-media-inner > *,
.banner-image .banner-media-inner .contextual-region,
.banner-image .banner-media-inner .field,
.banner-image .banner-media-inner .field__item,
.banner-image .banner-media-inner .media,
.banner-image .banner-media-inner picture,
.banner-image .banner-media-inner figure, .banner-texto .banner-media-inner > *,
.banner-texto .banner-media-inner .contextual-region,
.banner-texto .banner-media-inner .field,
.banner-texto .banner-media-inner .field__item,
.banner-texto .banner-media-inner .media,
.banner-texto .banner-media-inner picture,
.banner-texto .banner-media-inner figure {
  width: 100%;
  height: 100%;
  display: block;
}
.banner-image .banner-media-inner img,
.banner-image .banner-media-inner video,
.banner-image .banner-media-inner iframe, .banner-texto .banner-media-inner img,
.banner-texto .banner-media-inner video,
.banner-texto .banner-media-inner iframe {
  display: block;
  width: 100% !important;
  height: 100vh !important;
  object-fit: cover;
}
@media (max-width: 639px) {
  .banner-image .banner-media-inner img,
  .banner-image .banner-media-inner video,
  .banner-image .banner-media-inner iframe, .banner-texto .banner-media-inner img,
  .banner-texto .banner-media-inner video,
  .banner-texto .banner-media-inner iframe {
    height: 255px !important;
    width: 100% !important;
  }
}
.banner-image img, .banner-texto img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image img, .banner-texto img {
    max-height: 360px;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image img, .banner-texto img {
    max-height: 360px;
  }
}
@media (min-width: 1600px) {
  .banner-image img, .banner-texto img {
    max-height: 550px;
  }
}
@media (max-width: 639px) {
  .banner-image img, .banner-texto img {
    min-height: 255px !important;
    max-height: 255px !important;
  }
}
.banner-image video, .banner-texto video {
  width: 100%;
  display: block;
  object-fit: cover;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image video, .banner-texto video {
    max-height: 360px;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image video, .banner-texto video {
    max-height: 360px;
  }
}
@media (min-width: 1600px) {
  .banner-image video, .banner-texto video {
    max-height: 550px;
  }
}
@media (max-width: 768px) {
  .banner-image video, .banner-texto video {
    min-height: 255px !important;
    max-height: 255px !important;
  }
}
.banner-image iframe, .banner-texto iframe {
  width: 100%;
  min-height: 0;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image iframe, .banner-texto iframe {
    max-height: 360px;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image iframe, .banner-texto iframe {
    max-height: 360px;
  }
}
@media (min-width: 1600px) {
  .banner-image iframe, .banner-texto iframe {
    max-height: 550px;
  }
}
@media (max-width: 768px) {
  .banner-image iframe, .banner-texto iframe {
    min-height: 255px !important;
    max-height: 255px !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image {
    height: 360px !important;
  }
  .banner-image .banner-media-inner {
    height: 100%;
  }
  .banner-image img,
  .banner-image video,
  .banner-image iframe {
    height: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image {
    height: 360px !important;
  }
  .banner-image .banner-media-inner {
    height: 100%;
  }
  .banner-image img,
  .banner-image video,
  .banner-image iframe {
    height: 100%;
  }
}
@media (min-width: 1600px) {
  .banner-image {
    height: 550px !important;
  }
  .banner-image .banner-media-inner {
    height: 100%;
  }
  .banner-image img,
  .banner-image video,
  .banner-image iframe {
    height: 100%;
  }
}
.banner-content .banner-btn {
  margin-top: 1rem;
  padding: 0.5rem 2rem;
}
.banner-content .banner-btn .banner-buttons {
  display: flex;
  gap: 1rem;
}
.banner-content .banner-btn .banner-buttons .btn {
  border: 1px solid #686868;
  background-color: transparent !important;
  min-width: 150px;
  justify-content: center;
  border-radius: 0;
}
.banner-content .banner-btn div > a {
  text-decoration: none;
  font-size: 1.2em;
  color: #696969;
  display: inline-flex;
  align-items: center;
}

.paragraph--carousel .splide__arrow--prev {
  left: clamp(0.5rem, 2.5vw, 2rem);
}
@media (min-width: 1200px) and (max-width: 1270px) {
  .paragraph--carousel .splide__arrow--prev {
    left: 0.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 1055px) {
  .paragraph--carousel .splide__arrow--prev {
    left: 0.5rem !important;
  }
}
.paragraph--carousel .splide__arrow--next {
  right: clamp(0.5rem, 2.5vw, 2rem);
}
@media (min-width: 1200px) and (max-width: 1270px) {
  .paragraph--carousel .splide__arrow--next {
    right: 0.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 1055px) {
  .paragraph--carousel .splide__arrow--next {
    right: 0.5rem !important;
  }
}
.paragraph--carousel .ds-btn-icon--secondary {
  opacity: 1;
}

@media (max-width: 900px) {
  .paragraph--carousel .splide__arrow {
    display: none;
  }
}
.region--hero {
  background-color: antiquewhite;
  padding: 50px 0 20px;
  margin-bottom: 2.5rem;
}
.region--hero .slick-dots li button:before {
  font-size: 45px !important;
}
.region--hero .blockBanner {
  width: 90% !important;
}
.region--hero .blockBanner .paragraph--type--banner-page {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.region--hero .blockBanner .paragraph--type--banner-page .field--name-field-titulo {
  font-size: 2rem;
  text-transform: uppercase;
}
.region--hero .blockBanner .paragraph--type--banner-page .botaoBanner {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  margin-top: 1.5rem;
}
.region--hero .blockBanner .paragraph--type--banner-page .botaoBanner .background {
  background-color: #263b59;
  padding: 6px 2.5rem;
}
.region--hero .blockBanner .paragraph--type--banner-page .botaoBanner .background a {
  color: white;
  text-transform: uppercase;
  font-size: 14px;
}

@media (max-width: 768px) {
  .botaoBanner {
    margin-bottom: 1rem !important;
  }
  .botaoBanner .background {
    padding: 3px 1.5rem !important;
  }
}
.carousel-desktop {
  display: none !important;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .carousel-desktop {
    display: block !important;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .carousel-desktop {
    display: block !important;
  }
}
@media (min-width: 1600px) {
  .carousel-desktop {
    display: block !important;
  }
}

.carousel-mobile {
  display: block !important;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .carousel-mobile {
    display: none !important;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .carousel-mobile {
    display: none !important;
  }
}
@media (min-width: 1600px) {
  .carousel-mobile {
    display: none !important;
  }
}

.banner-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-image-wrapper {
  overflow: hidden;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image-wrapper {
    max-height: 360px;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image-wrapper {
    max-height: 360px;
  }
}
@media (min-width: 1600px) {
  .banner-image-wrapper {
    max-height: 550px;
  }
}
.banner-image-wrapper img,
.banner-image-wrapper video,
.banner-image-wrapper iframe {
  width: 100%;
  display: block;
  object-fit: cover;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image-wrapper img,
  .banner-image-wrapper video,
  .banner-image-wrapper iframe {
    max-height: 360px;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image-wrapper img,
  .banner-image-wrapper video,
  .banner-image-wrapper iframe {
    max-height: 360px;
  }
}
@media (min-width: 1600px) {
  .banner-image-wrapper img,
  .banner-image-wrapper video,
  .banner-image-wrapper iframe {
    max-height: 550px;
  }
}
@media (max-width: 768px) {
  .banner-image-wrapper img,
  .banner-image-wrapper video,
  .banner-image-wrapper iframe {
    min-height: 510px !important;
    max-height: 510px !important;
  }
}
.banner-image-wrapper .carousel-banner-shell {
  z-index: 2;
  width: 100%;
  height: 100%;
}
.banner-image-wrapper .carousel-banner-shell .container.ds-container {
  display: flex;
  align-items: center;
  height: 100%;
}
.banner-image-wrapper .carousel-banner-content {
  color: var(--ds-color-text-neutral-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  max-width: 556px;
}
.banner-image-wrapper .carousel-banner-copy {
  max-width: min(640px, 48vw);
  display: flex;
  flex-direction: column;
  gap: var(--ds-spacing-gap-40);
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image-wrapper .carousel-banner-copy {
    gap: var(--ds-spacing-gap-24);
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image-wrapper .carousel-banner-copy {
    gap: var(--ds-spacing-gap-24);
  }
}
@media (max-width: 639px) {
  .banner-image-wrapper .carousel-banner-copy {
    gap: var(--ds-spacing-gap-16);
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image-wrapper .carousel-banner-copy .ds-heading-xl {
    font-family: var(--ds-font-family-heading);
    font-size: var(--ds-font-size-heading-sm);
    font-weight: var(--ds-font-weight-bold);
    line-height: var(--ds-line-height-snug);
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image-wrapper .carousel-banner-copy .ds-heading-xl {
    font-family: var(--ds-font-family-heading);
    font-size: var(--ds-font-size-heading-md);
    font-weight: var(--ds-font-weight-bold);
    line-height: var(--ds-line-height-snug);
  }
}
@media (min-width: 1600px) {
  .banner-image-wrapper .carousel-banner-copy .ds-heading-xl {
    font-family: var(--ds-font-family-heading);
    font-size: var(--ds-font-size-heading-xl);
    font-weight: var(--ds-font-weight-bold);
    line-height: var(--ds-line-height-tight);
  }
}
@media (max-width: 639px) {
  .banner-image-wrapper .carousel-banner-copy .ds-heading-xl {
    font-family: var(--ds-font-family-heading);
    font-size: var(--ds-font-size-heading-sm);
    font-weight: var(--ds-font-weight-bold);
    line-height: var(--ds-line-height-snug);
  }
}
@media (max-width: 639px) {
  .banner-image-wrapper .carousel-banner-copy .banner-body {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-lg);
    font-weight: var(--ds-font-weight-regular);
    line-height: var(--ds-line-height-relaxed);
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .banner-image-wrapper .carousel-banner-copy .banner-body {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-lg);
    font-weight: var(--ds-font-weight-regular);
    line-height: var(--ds-line-height-relaxed);
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-image-wrapper .carousel-banner-copy .banner-body {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-xl);
    font-weight: var(--ds-font-weight-regular);
    line-height: var(--ds-line-height-normal);
  }
}
@media (min-width: 1600px) {
  .banner-image-wrapper .carousel-banner-copy .banner-body {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-xxl);
    font-weight: var(--ds-font-weight-regular);
    line-height: var(--ds-line-height-normal);
  }
}
.banner-image-wrapper .carousel-banner-copy .texto-interno {
  font-size: clamp(1rem, 1.35vw, 1.85rem);
  line-height: 1.35;
}
.banner-image-wrapper .carousel-banner-copy .texto-interno * {
  margin: 0;
}
.banner-image-wrapper .carousel-banner-copy .carousel-banner-button {
  margin-top: 1.25rem;
}

.carousel-mobile .banner-image-wrapper {
  overflow: visible;
}
.carousel-mobile .banner-image-wrapper .carousel-banner-shell--mobile {
  position: static;
  background: none;
  height: auto;
}
.carousel-mobile .banner-image-wrapper .carousel-banner-shell--mobile .container.ds-container {
  display: block;
  height: auto;
}
.carousel-mobile .banner-image-wrapper .carousel-banner-content {
  height: 96%;
  width: 100%;
  padding-block: 1.5rem;
  align-content: end;
}
.carousel-mobile .banner-image-wrapper .carousel-banner-copy {
  max-width: 100%;
}
.carousel-mobile .banner-image-wrapper .carousel-banner-copy .texto-interno {
  font-size: 1.1rem;
  line-height: 1.4;
}
.carousel-mobile .banner-image-wrapper .carousel-banner-copy .carousel-banner-button {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .carousel-mobile .banner-image-wrapper .carousel-banner-copy {
    padding-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .carousel-mobile .ds-heading-xl {
    font-size: 24px !important;
  }
  .carousel-mobile .ds-body-xl {
    font-size: 16px !important;
    margin-top: 0.5rem;
    min-height: 100px;
  }
}

@media (max-width: 768px) {
  .carousel-mobile--no-text .banner-image-wrapper {
    max-height: 100vh;
  }
  .carousel-mobile--no-text .banner-image-wrapper img,
  .carousel-mobile--no-text .banner-image-wrapper video,
  .carousel-mobile--no-text .banner-image-wrapper iframe {
    min-height: 510px !important;
    max-height: 510px !important;
  }
}
@media (max-width: 991.98px) {
  .banner-image-wrapper .carousel-banner-copy {
    max-width: 100%;
  }
}
.btn-sm {
  min-height: 0 !important;
  padding-top: 7.96px !important;
  padding-right: 17.92px !important;
  padding-bottom: 7.96px !important;
  padding-left: 17.92px !important;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.banner-button, .banner-button-full {
  width: max-content;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .banner-button, .banner-button-full {
    margin-bottom: 0.5rem;
  }
}

.banner-button-full {
  border: 1px solid white !important;
  border-radius: 9999px;
}
.banner-button-full a,
.banner-button-full .ds-button, .banner-button-full span, .banner-button-full svg {
  color: white !important;
  background-color: transparent !important;
}

.banner-button-responsive-desktop {
  display: none;
}

.banner-button-responsive-mobile {
  display: block;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .banner-button-responsive-desktop {
    display: none;
  }
  .banner-button-responsive-mobile {
    display: block;
  }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  .banner-button-responsive-desktop {
    display: block;
  }
  .banner-button-responsive-mobile {
    display: none;
  }
}
@media (min-width: 1600px) {
  .banner-button-responsive-desktop {
    display: block;
  }
  .banner-button-responsive-mobile {
    display: none;
  }
}
.firjan_static {
  background-color: var(--ds-color-shape-static-firjan-default);
}
.firjan_static .banner-button a,
.firjan_static .banner-button .ds-button,
.firjan_static .banner-button span,
.firjan_static .banner-button svg {
  color: var(--ds-color-shape-static-firjan-default) !important;
}

.sesi_static {
  background-color: var(--ds-color-shape-static-sesi-default);
}
.sesi_static .banner-button a,
.sesi_static .banner-button .ds-button,
.sesi_static .banner-button span,
.sesi_static .banner-button svg {
  color: var(--ds-color-shape-static-sesi-default) !important;
}

.senai_static {
  background-color: var(--ds-color-shape-static-senai-default);
}
.senai_static .banner-button a,
.senai_static .banner-button .ds-button,
.senai_static .banner-button span,
.senai_static .banner-button svg {
  color: var(--ds-color-shape-static-senai-default) !important;
}

.iel_static {
  background-color: var(--ds-color-shape-static-iel-default);
}
.iel_static .banner-button {
  border: 1px solid white !important;
  border-radius: 9999px;
}
.iel_static .banner-button a,
.iel_static .banner-button .ds-button,
.iel_static .banner-button span,
.iel_static .banner-button svg {
  color: white !important;
  background-color: transparent !important;
}

.cirj_static {
  background-color: var(--ds-color-shape-static-cirj-default);
}
.cirj_static .banner-button {
  border: 1px solid white !important;
  border-radius: 9999px;
}
.cirj_static .banner-button a,
.cirj_static .banner-button .ds-button,
.cirj_static .banner-button span,
.cirj_static .banner-button svg {
  color: white !important;
  background-color: transparent !important;
}

.firjan_static .banner-button a,
.firjan_static .banner-button .ds-button,
.sesi_static .banner-button a,
.sesi_static .banner-button .ds-button,
.senai_static .banner-button a,
.senai_static .banner-button .ds-button,
.iel_static .banner-button a,
.iel_static .banner-button .ds-button,
.cirj_static .banner-button a,
.cirj_static .banner-button .ds-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  background-color: var(--ds-color-button-background-brand-secondary-default);
  border: none;
  border-radius: 9999px !important;
}
.firjan_static .banner-button a svg,
.firjan_static .banner-button .ds-button svg,
.sesi_static .banner-button a svg,
.sesi_static .banner-button .ds-button svg,
.senai_static .banner-button a svg,
.senai_static .banner-button .ds-button svg,
.iel_static .banner-button a svg,
.iel_static .banner-button .ds-button svg,
.cirj_static .banner-button a svg,
.cirj_static .banner-button .ds-button svg {
  fill: currentColor;
  stroke: currentColor;
}
.firjan_static .banner-button a:hover, .firjan_static .banner-button a.is-hover,
.firjan_static .banner-button .ds-button:hover,
.firjan_static .banner-button .ds-button.is-hover,
.sesi_static .banner-button a:hover,
.sesi_static .banner-button a.is-hover,
.sesi_static .banner-button .ds-button:hover,
.sesi_static .banner-button .ds-button.is-hover,
.senai_static .banner-button a:hover,
.senai_static .banner-button a.is-hover,
.senai_static .banner-button .ds-button:hover,
.senai_static .banner-button .ds-button.is-hover,
.iel_static .banner-button a:hover,
.iel_static .banner-button a.is-hover,
.iel_static .banner-button .ds-button:hover,
.iel_static .banner-button .ds-button.is-hover,
.cirj_static .banner-button a:hover,
.cirj_static .banner-button a.is-hover,
.cirj_static .banner-button .ds-button:hover,
.cirj_static .banner-button .ds-button.is-hover {
  background-color: var(--ds-color-button-background-brand-secondary-hover);
}
.firjan_static .banner-button a:active, .firjan_static .banner-button a.is-active,
.firjan_static .banner-button .ds-button:active,
.firjan_static .banner-button .ds-button.is-active,
.sesi_static .banner-button a:active,
.sesi_static .banner-button a.is-active,
.sesi_static .banner-button .ds-button:active,
.sesi_static .banner-button .ds-button.is-active,
.senai_static .banner-button a:active,
.senai_static .banner-button a.is-active,
.senai_static .banner-button .ds-button:active,
.senai_static .banner-button .ds-button.is-active,
.iel_static .banner-button a:active,
.iel_static .banner-button a.is-active,
.iel_static .banner-button .ds-button:active,
.iel_static .banner-button .ds-button.is-active,
.cirj_static .banner-button a:active,
.cirj_static .banner-button a.is-active,
.cirj_static .banner-button .ds-button:active,
.cirj_static .banner-button .ds-button.is-active {
  background-color: var(--ds-color-button-background-brand-secondary-pressed);
}
.firjan_static .banner-button a:focus, .firjan_static .banner-button a.is-focused,
.firjan_static .banner-button .ds-button:focus,
.firjan_static .banner-button .ds-button.is-focused,
.sesi_static .banner-button a:focus,
.sesi_static .banner-button a.is-focused,
.sesi_static .banner-button .ds-button:focus,
.sesi_static .banner-button .ds-button.is-focused,
.senai_static .banner-button a:focus,
.senai_static .banner-button a.is-focused,
.senai_static .banner-button .ds-button:focus,
.senai_static .banner-button .ds-button.is-focused,
.iel_static .banner-button a:focus,
.iel_static .banner-button a.is-focused,
.iel_static .banner-button .ds-button:focus,
.iel_static .banner-button .ds-button.is-focused,
.cirj_static .banner-button a:focus,
.cirj_static .banner-button a.is-focused,
.cirj_static .banner-button .ds-button:focus,
.cirj_static .banner-button .ds-button.is-focused {
  outline: 2px solid var(--ds-color-button-background-brand-secondary-hover);
  outline-offset: 2px;
}

.paragraph--generic-accordion {
  padding-block: 2rem;
}

.accordion-item {
  margin-bottom: 2rem;
}
.accordion-item .ds-icon svg {
  width: 18px;
  margin-right: 1rem;
}
.accordion-item .accordion-body {
  padding-inline: 2rem;
}

.paragraph-generic-accordion__title {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: var(--ds-font-size-heading-sm);
  color: var(--ds-color-text-neutral-black);
}

.paragraph-generic-accordion__media {
  height: 100%;
}
.paragraph-generic-accordion__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.page-node-type-conteudos-gerais #block-portal-firjan-breadcrumbs {
  display: none;
}

.page-node-type-conteudos-gerais .region-breadcrumb .block-system-breadcrumb-block {
  display: none;
}

html {
  --portal-global-breadcrumb-theme-color: var(--ds-color-text-accent-brand-default);
}

.node-conteudos-gerais .cg-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.node-conteudos-gerais .cg-hero__media {
  position: relative;
  min-height: 250px;
  max-height: 270px;
  overflow: hidden;
}
.node-conteudos-gerais .cg-hero__media .field--name-field-midia-banner {
  margin: 0;
}
.node-conteudos-gerais .cg-hero__media img,
.node-conteudos-gerais .cg-hero__media video,
.node-conteudos-gerais .cg-hero__media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 250px;
  max-height: 270px;
}
.node-conteudos-gerais .cg-hero__shade {
  position: absolute;
  inset: 0;
  background-color: var(--ds-color-overlay-neutral-black-muted);
  pointer-events: none;
}
.node-conteudos-gerais .cg-hero__title-wrap {
  color: var(--ds-color-text-neutral-white);
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
}
.node-conteudos-gerais .cg-breadcrumb {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-block: var(--ds-spacing-gap-18);
  --cg-breadcrumb-theme-color: var(--portal-global-breadcrumb-theme-color, var(--ds-color-text-accent-brand-default));
}
.node-conteudos-gerais .cg-breadcrumb .ds-breadcrumb-item.is-active span {
  color: var(--cg-breadcrumb-theme-color, var(--ds-color-text-accent-brand-default)) !important;
}
.node-conteudos-gerais .cg-breadcrumb .ds-breadcrumb-list {
  margin-bottom: 0 !important;
}
.node-conteudos-gerais .cg-breadcrumb .block-system-breadcrumb-block {
  margin: 0;
}
.node-conteudos-gerais .cg-breadcrumb .breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
}
.node-conteudos-gerais .cg-content {
  padding-right: var(--ds-spacing-gap-120);
  padding-left: var(--ds-spacing-gap-120);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .node-conteudos-gerais .cg-content {
    padding-right: 0;
    padding-left: 0;
  }
}
.node-conteudos-gerais .cg-content__subtitle {
  color: var(--ds-color-text-neutral-black);
  font-family: var(--ds-font-family-heading);
  font-size: var(--ds-font-size-heading-sm);
  font-weight: var(--ds-font-weight-bold);
  line-height: var(--ds-line-height-snug);
  margin-bottom: 2rem;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .node-conteudos-gerais .cg-content__subtitle {
    font-size: var(--ds-font-size-heading-xsm);
  }
}
@media (max-width: 639px) {
  .node-conteudos-gerais .cg-content__subtitle {
    font-size: var(--ds-font-size-heading-xsm);
  }
}
.node-conteudos-gerais .cg-content__description {
  color: var(--ds-color-text-neutral-heavy);
  font-family: var(--ds-font-family-body);
  font-size: var(--ds-font-size-body-xl);
  line-height: var(--ds-line-height-relaxed);
  font-weight: var(--ds-font-weight-regular);
}
@media (min-width: 640px) and (max-width: 1023px) {
  .node-conteudos-gerais .cg-content__description {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-lg);
    line-height: var(--ds-line-height-relaxed);
    font-weight: var(--ds-font-weight-regular);
  }
}
@media (max-width: 639px) {
  .node-conteudos-gerais .cg-content__description {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-lg);
    line-height: var(--ds-line-height-relaxed);
    font-weight: var(--ds-font-weight-regular);
  }
}
.node-conteudos-gerais .cg-content__image .field {
  margin: 0;
}
.node-conteudos-gerais .cg-content__caption {
  font-style: italic;
  font-size: 16px !important;
  margin-bottom: 0;
}
@media (max-width: 639px) {
  .node-conteudos-gerais .cg-content__caption {
    font-size: 12px !important;
    margin-top: 0.5rem;
  }
}
.node-conteudos-gerais .cg-content--with-image .cg-content__split {
  gap: 1.5rem;
}

.node-institucional .cg-content__subtitle {
  color: var(--ds-color-text-neutral-black);
  font-family: var(--ds-font-family-heading);
  font-size: var(--ds-font-size-heading-sm);
  font-weight: var(--ds-font-weight-bold);
  line-height: var(--ds-line-height-snug);
  margin-bottom: 2rem;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .node-institucional .cg-content__subtitle {
    font-size: var(--ds-font-size-heading-xsm);
  }
}
@media (max-width: 639px) {
  .node-institucional .cg-content__subtitle {
    font-size: var(--ds-font-size-heading-xsm);
  }
}
.node-institucional .cg-content__description {
  color: var(--ds-color-text-neutral-heavy);
  font-family: var(--ds-font-family-body);
  font-size: var(--ds-font-size-body-xl);
  line-height: var(--ds-line-height-relaxed);
  font-weight: var(--ds-font-weight-regular);
}
@media (min-width: 640px) and (max-width: 1023px) {
  .node-institucional .cg-content__description {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-lg);
    line-height: var(--ds-line-height-relaxed);
    font-weight: var(--ds-font-weight-regular);
  }
}
@media (max-width: 639px) {
  .node-institucional .cg-content__description {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-lg);
    line-height: var(--ds-line-height-relaxed);
    font-weight: var(--ds-font-weight-regular);
  }
}
.node-institucional .cg-content__caption {
  font-style: italic;
  font-size: 16px !important;
  margin-bottom: 0;
}
@media (max-width: 639px) {
  .node-institucional .cg-content__caption {
    font-size: 12px !important;
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  .node-conteudos-gerais .cg-hero__title-wrap {
    bottom: 16px;
  }
  .node-conteudos-gerais .cg-hero__media {
    min-height: 220px;
  }
  .node-conteudos-gerais .cg-hero__media img,
  .node-conteudos-gerais .cg-hero__media video,
  .node-conteudos-gerais .cg-hero__media iframe {
    min-height: 220px;
  }
}
.institution-bar {
  width: 100vw;
  max-width: 100%;
  background-color: var(--active-bg, var(--ds-color-shape-neutral-medium));
}

.institution-bar__inner {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  min-width: 0;
  background: transparent;
}

.institution-bar__label {
  font-size: var(--ds-font-size-subtitle-sm);
  font-weight: var(--ds-font-weight-subtitle-sm);
  line-height: var(--ds-line-height-subtitle-sm);
  color: var(--ds-color-text-neutral-white);
}

.institution-bar {
  width: 100vw;
  max-width: 100%;
  background-color: var(--active-bg, var(--ds-color-shape-neutral-medium));
}

.institution-bar__inner {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  min-width: 0;
  background: transparent;
}

.institution-bar__label {
  font-size: var(--ds-font-size-subtitle-sm);
  font-weight: var(--ds-font-weight-subtitle-sm);
  line-height: var(--ds-line-height-subtitle-sm);
  color: var(--ds-color-text-neutral-white);
}

.institution-item__label {
  max-width: 100%;
  word-break: break-word;
  hyphens: auto;
  font-family: var(--ds-font-family-subtitle);
  font-size: var(--ds-font-size-subtitle-sm);
  font-weight: var(--ds-font-weight-bold);
  line-height: var(--ds-line-height-loose);
  text-wrap-style: balance;
}

.institution-item {
  width: 100%;
  color: white;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  font-size: 0.95rem;
  min-height: 56px;
  padding: 12px 24px;
  background-color: var(--ds-color-shape-neutral-medium);
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: background-color 0.2s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 2;
  min-width: 0;
}
.institution-item.is-active-label {
  background-color: var(--bg, var(--ds-color-shape-neutral-medium));
  justify-content: flex-start;
  padding: 0;
  box-shadow: none;
  max-width: max-content;
}
.institution-item.is-active-logo {
  background-color: var(--bg, var(--ds-color-shape-neutral-medium));
  box-shadow: none;
  padding-left: 0;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .institution-item.is-active-logo {
    padding: 12px 24px;
  }
}
@media (max-width: 639px) {
  .institution-item.is-active-logo {
    padding: 8px 12px;
  }
}
.institution-item:hover {
  background-color: var(--hover, #a8aaad);
}
.institution-item:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -3px;
}

.institution-item__logo {
  display: block;
  width: auto;
  height: 20px;
  max-width: 100%;
  min-width: 40px;
  flex-shrink: 3;
  flex-grow: 0;
  fill: currentColor;
  position: relative;
  z-index: 3;
}
.institution-item.is-active-label .institution-item__logo, .institution-item.is-active-logo .institution-item__logo, .institution-item:hover .institution-item__logo {
  color: #fff;
}
.institution-item.is-active-logo .institution-item__logo {
  flex-shrink: 0;
  min-width: auto;
}

.institution-item__name {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
  flex-shrink: 0;
  min-width: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .institution-bar__inner {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
  }
  .institution-item.is-active-label {
    display: none;
  }
}
@media (max-width: 639px) {
  .institution-bar__inner {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
  }
  .institution-item {
    flex: 0 1 auto;
    min-width: 80px;
    justify-content: flex-start;
    padding: 8px 12px;
    min-height: 44px;
    font-size: 0.85rem;
    gap: 6px;
  }
  .institution-item.is-active-label {
    display: none;
  }
  .institution-item__logo {
    height: 16px;
    min-width: 30px;
  }
  .institution-item__name {
    font-size: 0.75rem;
  }
}
.ds-numbers {
  padding: 64px 0;
}
.ds-numbers__title {
  font-size: var(--ds-font-size-heading-sm);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ds-color-text-neutral-black);
}
.ds-numbers__subtitle {
  font-size: var(--ds-font-size-body-xl);
  color: var(--ds-color-text-neutral-black);
  margin-bottom: 40px;
}
.ds-numbers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--ds-color-border-accent-brand-subdued);
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
}

.ds-number-card {
  padding: 24px;
  text-align: center;
  transition: all 0.2s ease;
  max-width: 280px;
  width: 100%;
}
.ds-number-card:hover {
  transform: translateY(-4px);
}
.ds-number-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.ds-number-card__icon {
  width: 75px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ds-color-button-background-brand-primary-default);
  margin-bottom: 0;
}
.ds-number-card__value {
  font-size: 32px;
  color: var(--ds-color-button-background-brand-primary-hover);
  font-weight: bold;
}
.ds-number-card__desc {
  font-size: var(--ds-font-size-body-sm);
  color: var(--ds-color-button-background-brand-primary-hover);
}
.ds-number-card__desc p {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .ds-numbers--items-4 .ds-numbers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ds-numbers--items-3 .ds-numbers__grid {
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
  }
  .ds-numbers--items-2 .ds-numbers__grid {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }
  .ds-numbers--items-1 .ds-numbers__grid {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .ds-number-card {
    max-width: 280px;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .ds-numbers__grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 190px));
  }
  .ds-number-card {
    max-width: 280px;
  }
  .ds-number-card__icon {
    width: 32px !important;
  }
  .ds-number-card__value {
    font-size: 26px !important;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .ds-numbers--items-4 .ds-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ds-numbers--items-3 .ds-numbers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ds-numbers__grid {
    justify-content: center;
  }
}
@media (max-width: 639px) {
  .ds-numbers__grid {
    grid-template-columns: 1fr;
  }
}
body.simplelogin {
  --simplelogin-primary: #003dd1;
  --simplelogin-primary-hover: #0031a8;
  height: 100dvh;
  min-height: 100dvh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2.2dvh, 22px) 12px;
  background: var(--simplelogin-primary);
  overflow: hidden;
}
body.simplelogin #block-portal-firjan-breadcrumbs {
  display: none;
}
body.simplelogin .captcha__title {
  display: none;
}

body.simplelogin::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: none;
}

body.simplelogin .dialog-off-canvas-main-canvas,
body.simplelogin .layout-container,
body.simplelogin .main-content,
body.simplelogin .region-content,
body.simplelogin .simplelogin-wrapper {
  width: 100%;
  height: 100%;
}

body.simplelogin .simplelogin-wrapper {
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0;
}

body.simplelogin .simplelogin-form {
  width: 70% !important;
  max-height: calc(100dvh - 24px);
  margin: 0 auto;
  padding: 2rem !important;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, rgba(244, 249, 252, 0.93), rgba(234, 244, 250, 0.93));
  box-shadow: 0 20px 45px rgba(24, 79, 110, 0.25);
  overflow: hidden;
}
body.simplelogin .simplelogin-form .captcha__description {
  display: none;
}

body.simplelogin .simplelogin-link,
body.simplelogin .page-title,
body.simplelogin .tabs,
body.simplelogin h1 {
  display: none;
}

body.simplelogin .simplelogin-logo {
  margin: 0 0 clamp(10px, 2dvh, 18px);
  text-align: center;
}

body.simplelogin .simplelogin-logo .ds-brand__link {
  display: inline-block;
}

body.simplelogin .simplelogin-logo img,
body.simplelogin .simplelogin-logo .ds-brand__logo {
  width: 100%;
  height: 60px;
}

body.simplelogin form {
  margin: 0;
}

body.simplelogin .js-form-item,
body.simplelogin .form-item {
  margin: 0 0 clamp(6px, 1dvh, 10px);
}

body.simplelogin input.form-text,
body.simplelogin input.form-password,
body.simplelogin input.form-email,
body.simplelogin .form-control {
  width: 100%;
  min-height: clamp(42px, 5.4dvh, 52px);
  border-radius: 8px;
  border: 1px solid #c8d7e2;
  background: #f2f5f7;
  color: #1f2f3a;
  padding: clamp(10px, 1.2dvh, 14px) 14px;
  font-size: clamp(15px, 1.9vw, 20px);
  line-height: 1.3;
}

body.simplelogin input::placeholder {
  color: #6f7f89;
  opacity: 1;
}

body.simplelogin input.form-text:focus,
body.simplelogin input.form-password:focus,
body.simplelogin input.form-email:focus,
body.simplelogin .form-control:focus {
  border-color: var(--simplelogin-primary);
  box-shadow: 0 0 0 3px rgba(0, 61, 209, 0.2);
  outline: none;
}

body.simplelogin .captcha,
body.simplelogin .g-recaptcha {
  margin: clamp(8px, 1.2dvh, 12px) 0 clamp(10px, 1.7dvh, 16px);
  display: inline-block;
  max-width: 100%;
}

body.simplelogin .g-recaptcha > div {
  max-width: 100%;
}

body.simplelogin .form-actions {
  margin: clamp(8px, 1.5dvh, 14px) 0 0;
}

body.simplelogin .simplelogin-form input.form-submit,
body.simplelogin .simplelogin-form button.form-submit {
  width: 100%;
  min-height: clamp(42px, 5.4dvh, 52px);
  border: 0;
  border-radius: 5px;
  background: var(--simplelogin-primary) !important;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.7rem;
}

body.simplelogin .simplelogin-form input.form-submit:hover,
body.simplelogin .simplelogin-form input.form-submit:focus,
body.simplelogin .simplelogin-form button.form-submit:hover,
body.simplelogin .simplelogin-form button.form-submit:focus {
  background: var(--simplelogin-primary-hover) !important;
}

body.simplelogin .description,
body.simplelogin .forgot-password {
  margin-top: clamp(8px, 1.3dvh, 14px);
  text-align: center;
  color: #8e9aa2;
  font-size: clamp(13px, 1.5vw, 15px);
}

body.simplelogin .forgot-password a,
body.simplelogin .description a {
  color: var(--simplelogin-primary);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 640px) {
  body.simplelogin {
    padding: 8px;
  }
  body.simplelogin .simplelogin-form {
    width: calc(100vw - 16px) !important;
    max-height: calc(100dvh - 16px);
    padding: 14px 12px 16px;
    border-radius: 10px;
  }
  body.simplelogin input.form-text,
  body.simplelogin input.form-password,
  body.simplelogin input.form-email,
  body.simplelogin .form-control,
  body.simplelogin .simplelogin-form input.form-submit,
  body.simplelogin .simplelogin-form button.form-submit {
    min-height: 42px;
    font-size: 15px;
  }
  body.simplelogin .g-recaptcha {
    transform: scale(0.86);
    transform-origin: left center;
  }
}
@media (max-height: 760px) {
  body.simplelogin .simplelogin-logo img,
  body.simplelogin .simplelogin-logo .ds-brand__logo {
    width: 100%;
  }
  body.simplelogin .g-recaptcha {
    transform: scale(0.82);
    transform-origin: left center;
  }
}
@media (max-height: 680px) {
  body.simplelogin {
    padding: 6px;
  }
  body.simplelogin .simplelogin-form {
    max-height: calc(100dvh - 12px);
    padding: 10px 10px 12px;
  }
  body.simplelogin .simplelogin-logo {
    margin-bottom: 8px;
  }
  body.simplelogin .js-form-item,
  body.simplelogin .form-item {
    margin-bottom: 6px;
  }
}
.page-node-type-news #block-portal-firjan-breadcrumbs,
.page-node-type-news .region-breadcrumb .block-system-breadcrumb-block {
  display: none;
}

.node-news-full {
  --news-full-accent: #e85d04;
  --news-summary-surface: var(--ds-color-gray-200);
  --news-summary-border: var(--ds-color-gray-400);
  --news-summary-title: var(--ds-color-gray-800);
  --news-summary-body-text: var(--ds-color-gray-700);
  --news-summary-icon: var(--ds-color-gray-700);
}
.node-news-full .news-content {
  padding-right: var(--ds-spacing-gap-120);
  padding-left: var(--ds-spacing-gap-120);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .node-news-full .news-content {
    padding-right: 0;
    padding-left: 0;
  }
}
.node-news-full .cg-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: url("../../src/assets/pattern-news-topper.png") repeat-x center top;
  background-size: cover;
}
.node-news-full .cg-hero__media {
  position: relative;
  min-height: 250px;
  max-height: 270px;
  overflow: hidden;
}
.node-news-full .cg-hero__media .field--name-field-midia-banner {
  margin: 0;
}
.node-news-full .cg-hero__media img,
.node-news-full .cg-hero__media video,
.node-news-full .cg-hero__media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 250px;
  max-height: 270px;
}
.node-news-full .cg-hero__shade {
  position: absolute;
  inset: 0;
  background-color: var(--ds-color-overlay-neutral-black-muted);
  pointer-events: none;
}
.node-news-full .cg-hero__title-wrap {
  color: var(--ds-color-text-neutral-black);
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
}
.node-news-full .node-news-full__pattern {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  min-height: 210px;
  background-color: var(--ds-color-gray-300);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 210px;
}
.node-news-full .node-news-full__breadcrumb {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #f3f3f5;
  padding-block: var(--ds-spacing-gap-18);
}
.node-news-full .node-news-full__breadcrumb .ds-breadcrumb-list {
  margin-bottom: 0 !important;
}
.node-news-full .node-news-full__breadcrumb .block-system-breadcrumb-block {
  margin: 0;
}
.node-news-full .node-news-full__breadcrumb .breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
}
.node-news-full .node-news-full__inner {
  padding-top: var(--ds-spacing-padding-24);
  padding-bottom: var(--ds-spacing-padding-40);
}
.node-news-full .node-news-full__cover {
  margin-bottom: 1.25rem;
}
.node-news-full .node-news-full__cover .field,
.node-news-full .node-news-full__cover .field__item {
  margin: 0;
}
.node-news-full .node-news-full__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--ds-radious-size-radious-8);
  object-fit: cover;
}
.node-news-full .node-news-full__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--ds-spacing-gap-12) var(--ds-spacing-gap-16);
  margin-bottom: var(--ds-spacing-margin-16);
}
.node-news-full .node-news-full__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ds-spacing-gap-8);
  align-items: center;
}
.node-news-full .node-news-full__tag {
  background-color: var(--ds-color-shape-accent-brand-default);
  display: inline-block;
  padding: var(--ds-spacing-padding-4) var(--ds-spacing-padding-12);
  border-radius: var(--ds-radious-radious-full);
  font-size: var(--ds-font-size-body-md);
  font-weight: var(--ds-font-weight-medium);
  text-decoration: none;
  color: var(--bs-white);
}
.node-news-full .node-news-full__header {
  margin-bottom: var(--ds-spacing-margin-24);
}
.node-news-full .node-news-full__title {
  margin-bottom: var(--ds-spacing-margin-12);
  color: var(--ds-color-text-neutral-black);
}
.node-news-full .node-news-full__subtitle {
  margin-bottom: var(--ds-spacing-margin-16);
  color: var(--ds-color-text-neutral-heavy);
  font-weight: var(--ds-font-weight-regular);
}
.node-news-full .node-news-full__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: var(--ds-font-size-body-lg);
  color: var(--ds-color-text-neutral-stronger);
}
.node-news-full .node-news-full__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.node-news-full .node-news-full__meta-item--reading {
  border-left: 1px solid var(--ds-color-border-neutral-medium);
  padding-left: var(--ds-spacing-padding-8);
}
.node-news-full .node-news-full__meta-icon {
  font-size: var(--ds-font-size-body-lg);
  opacity: 0.85;
}
.node-news-full .node-news-full__meta-icon--calendar svg, .node-news-full .node-news-full__meta-icon--clock svg {
  display: block;
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.node-news-full {
  /* Resumo — accordion alinhado ao Figma (pill, tipografia, ícones SVG) */
}
.node-news-full .node-news-full__summary-acc {
  margin-bottom: 1.75rem;
  max-width: 100%;
}
.node-news-full .node-news-full__summary-acc .accordion-item {
  box-sizing: border-box;
  background: var(--news-summary-surface);
  border: 1px solid var(--news-summary-border);
  overflow: hidden;
}
.node-news-full .node-news-full__summary-acc .accordion-item:has(.accordion-collapse.show),
.node-news-full .node-news-full__summary-acc .accordion-item:has(.accordion-collapse.collapsing) {
  border-radius: 1.25rem;
  overflow: visible;
  box-shadow: none;
}
.node-news-full .node-news-full__summary-acc .node-news-full__summary-acc-header.accordion-header {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
.node-news-full .node-news-full__summary-acc .node-news-full__summary-acc-trigger {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--ds-spacing-gap-16);
  width: 100%;
  min-height: 3.875rem;
  padding: var(--ds-spacing-padding-18) var(--ds-spacing-padding-32) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: inherit;
  font-size: var(--ds-font-size-heading-xsm);
  font-weight: var(--ds-font-weight-medium);
  line-height: var(--ds-line-height-relaxed);
  color: var(--news-summary-title) !important;
  text-align: left;
}
.node-news-full .node-news-full__summary-acc .node-news-full__summary-acc-trigger::after {
  display: none !important;
}
.node-news-full .node-news-full__summary-acc .node-news-full__summary-acc-doc {
  display: flex;
  flex: none;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--news-summary-icon);
}
.node-news-full .node-news-full__summary-acc .node-news-full__summary-acc-doc svg {
  display: block;
  width: 24px;
  height: 24px;
}
.node-news-full .node-news-full__summary-acc .node-news-full__summary-acc-title {
  flex: 1 1 auto;
  min-width: 0;
}
.node-news-full .node-news-full__summary-acc .node-news-full__summary-acc-chevron {
  display: flex;
  flex: none;
  width: 20px;
  height: 25px;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.node-news-full .node-news-full__summary-acc .node-news-full__summary-acc-chevron svg {
  display: block;
  width: 20px;
  height: 25px;
}
.node-news-full .node-news-full__summary-acc .accordion-button:not(.collapsed) .node-news-full__summary-acc-chevron {
  transform: rotate(180deg);
}
.node-news-full .node-news-full__summary-acc .node-news-full__summary-acc-body {
  padding: 0.5rem 2rem 1.25rem;
  margin-top: 0;
  border: 0;
  font-size: var(--ds-font-size-body-lg);
  font-weight: var(--ds-font-weight-regular);
  line-height: var(--ds-line-height-loose);
  color: var(--news-summary-body-text);
}
.node-news-full .node-news-full__summary-acc .node-news-full__summary-acc-body p:last-child {
  margin-bottom: 0;
}
.node-news-full .node-news-full__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--ds-spacing-gap-24);
  align-items: start;
}
.node-news-full .node-news-full__paragraphs {
  min-width: 0;
}
.node-news-full .node-news-full__paragraphs .field {
  margin-bottom: 0;
}
.node-news-full .node-news-full__paragraphs {
  /* Citação editorial (CKEditor: blockquote > p + cite opcional) — tokens DS (ds-index.css / firjan_ds) */
}
.node-news-full .node-news-full__paragraphs blockquote {
  margin: var(--ds-spacing-gap-40) auto 0;
  padding: 0;
  max-width: 100%;
  border: 0;
  text-align: center;
}
.node-news-full .node-news-full__paragraphs blockquote p {
  margin: 0;
  font-family: var(--ds-font-family-body);
  font-style: italic;
  font-weight: var(--ds-font-weight-bold);
  font-size: var(--ds-font-size-heading-md);
  line-height: var(--ds-line-height-snug);
  text-align: center;
  color: var(--ds-color-text-accent-brand-default);
}
.node-news-full .node-news-full__paragraphs blockquote p::before {
  content: "“";
}
.node-news-full .node-news-full__paragraphs blockquote p::after {
  content: "”";
}
.node-news-full .node-news-full__paragraphs blockquote cite,
.node-news-full .node-news-full__paragraphs blockquote footer {
  display: block;
  margin-top: var(--ds-spacing-gap-16);
  font-family: var(--ds-font-family-body);
  font-style: normal;
  font-weight: var(--ds-font-weight-regular);
  font-size: var(--ds-font-size-body-lg);
  line-height: var(--ds-line-height-normal);
  text-align: center;
  color: var(--ds-color-gray-700);
}
.node-news-full .node-news-full__paragraphs blockquote footer {
  margin-top: var(--ds-spacing-gap-16);
}
.node-news-full .node-news-full__paragraphs blockquote footer cite {
  display: inline;
  margin-top: 0;
  font-size: inherit;
}
.node-news-full .node-news-full__divider {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.291875rem;
  width: 100%;
  margin-top: var(--ds-spacing-margin-40);
}
.node-news-full .node-news-full__divider::before, .node-news-full .node-news-full__divider::after {
  content: "";
  box-sizing: border-box;
  flex: 1 1 auto;
  border-top: 0.1614875rem solid var(--ds-color-border-neutral-subdued);
  min-width: 0;
}
.node-news-full .node-news-full__divider-icon {
  flex: none;
  width: 2.4225rem;
  height: 1.865rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.node-news-full .node-news-full__divider-icon svg {
  display: block;
  width: 2.4225rem;
  height: 1.865rem;
}
.node-news-full {
  /* Outras editorias — pills em linha (outline, cor do termo) */
}
.node-news-full .node-news-full__related-editorias {
  margin-top: var(--ds-spacing-margin-48);
}
.node-news-full .node-news-full__related-sections {
  margin-top: var(--ds-spacing-margin-72);
  margin-bottom: var(--ds-spacing-margin-64);
}
.node-news-full .node-news-full__related-sections.pt-64 {
  padding-top: var(--ds-spacing-padding-64);
}
.node-news-full .node-news-full__related-editorias-title {
  margin: 0 0 var(--ds-spacing-margin-40);
  font-weight: var(--ds-font-weight-bold);
  color: var(--ds-color-text-neutral-heavy);
}
.node-news-full .node-news-full__related-sections-title {
  margin: 0 0 var(--ds-spacing-margin-40);
  font-weight: var(--ds-font-weight-bold);
  color: var(--ds-color-text-neutral-heavy);
}
.node-news-full {
  /* Classe custom na view (Views UI → CSS class) + fallback pelo id da view */
}
.node-news-full .taxonomy-term-list {
  display: flex;
  flex-flow: row wrap;
  gap: var(--ds-spacing-gap-8) var(--ds-spacing-gap-12);
  align-items: center;
}
.node-news-full .taxonomy-term-list .views-row,
.node-news-full .view-listas-de-taxonomia .views-row {
  margin: 0;
  padding: 0;
  border: 0;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
}
.node-news-full {
  /* Busca por palavra-chave (bloco search) — listagem notícias, spec Figma */
}
.node-news-full .node-news-full__keyword-search-title {
  margin: 0 0 var(--ds-spacing-margin-32);
  font-weight: var(--ds-font-weight-medium);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-text-neutral-black);
}
.node-news-full .node-news-full__keyword-search .block {
  margin: 0;
}
.node-news-full .node-news-full__keyword-search .search-block-form {
  margin: 0;
}
.node-news-full .node-news-full__keyword-search {
  /* form + .search-block-form form: fallback se a classe do form ainda não estiver no HTML */
}
.node-news-full .node-news-full__keyword-search .node-news-full__keyword-search-form,
.node-news-full .node-news-full__keyword-search .search-block-form form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
}
.node-news-full .node-news-full__keyword-search .form-item-keys {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  /* width:100% em .form-item (global) quebra o flex em coluna — forçar linha única */
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: var(--ds-spacing-padding-16) var(--ds-spacing-padding-18);
  gap: var(--ds-spacing-gap-16);
  min-height: 3.5rem;
  background: var(--ds-color-shape-neutral-soft);
  border: 1px solid var(--ds-color-border-neutral-medium);
  border-radius: var(--ds-radious-radious-full);
  box-shadow: 0 2px 3px rgba(34, 47, 62, 0.06);
}
.node-news-full .node-news-full__keyword-search .form-item-keys::before {
  content: "";
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5' stroke='%23003DD1' stroke-width='2'/%3E%3Cpath d='M16 16L21 21' stroke='%23003DD1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.node-news-full .node-news-full__keyword-search .form-item-keys .form-search {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  height: auto;
  font-size: var(--ds-font-size-body-huge);
  line-height: var(--ds-line-height-relaxed);
  color: var(--ds-color-text-neutral-black);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  appearance: none;
}
.node-news-full .node-news-full__keyword-search .form-item-keys .form-search::placeholder {
  color: var(--ds-color-text-neutral-stronger);
  opacity: 1;
}
.node-news-full .node-news-full__keyword-search .form-item-keys .form-search:focus {
  outline: none;
  box-shadow: none;
}
.node-news-full .node-news-full__keyword-search .form-actions,
.node-news-full .node-news-full__keyword-search .form-wrapper.form-actions {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 36rem) {
  .node-news-full .node-news-full__keyword-search .node-news-full__keyword-search-form,
  .node-news-full .node-news-full__keyword-search .search-block-form form {
    flex-wrap: wrap;
  }
  .node-news-full .node-news-full__keyword-search .form-actions {
    flex: 1 1 auto;
  }
  .node-news-full .node-news-full__keyword-search .form-actions .form-submit {
    width: 100%;
  }
}
.node-news-full .node-news-full__keyword-search .form-actions .form-submit {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.60875rem;
  min-height: 3.5rem;
  margin: 0;
  padding: 0.9125rem 1.825rem;
  padding-right: 68px;
  font-weight: var(--ds-font-weight-medium);
  font-size: var(--ds-font-size-heading-sm);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-static-white);
  background: var(--ds-color-shape-accent-brand-default);
  border: 0;
  border-radius: var(--ds-radious-radious-full);
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.15s ease;
  background-color: var(--ds-color-shape-accent-brand-default);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M4.5 2L8.5 6L4.5 10' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 17px 17px;
}
.node-news-full .node-news-full__keyword-search .form-actions .form-submit:hover, .node-news-full .node-news-full__keyword-search .form-actions .form-submit:focus {
  background: var(--ds-color-blue-500);
  color: var(--ds-color-static-white);
}
.node-news-full .node-news-full__keyword-search .form-actions .form-submit:focus-visible {
  outline: 2px solid var(--ds-color-shape-accent-brand-default);
  outline-offset: 2px;
}
.node-news-full .node-news-full__keyword-search .form-actions .form-submit::after {
  content: "";
  flex: none;
  width: 1.065rem;
  height: 1.065rem;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 17 17' fill='none'%3E%3Cpath d='M6 3.5l5.5 5-5.5 5' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Card de notícia (view mode news_card) — reutilizável em qualquer view */
.node-news-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--ds-radious-size-radious-16);
  background: var(--ds-color-shape-neutral-white);
  box-shadow: 0 0.25rem 1.25rem rgba(17, 17, 17, 0.08);
  transition: box-shadow 0.2s ease;
}
.node-news-card:hover {
  box-shadow: 0 0.25rem 1.5rem rgba(17, 17, 17, 0.12);
}

.node-news-card__media {
  position: relative;
  flex: none;
  overflow: hidden;
  border-radius: var(--ds-radious-size-radious-16) var(--ds-radious-size-radious-16) 0 0;
}
.node-news-card__media .field,
.node-news-card__media .field__item {
  margin: 0;
}
.node-news-card__media a {
  display: block;
  line-height: 0;
}
.node-news-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 305/265;
  object-fit: cover;
}

.node-news-card__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-width: calc(100% - 1.5rem);
  padding: var(--ds-spacing-padding-4) var(--ds-spacing-padding-12);
  border-radius: 0 var(--ds-radious-radious-full) var(--ds-radious-radious-full) 0;
  background-color: var(--ds-color-shape-accent-brand-default);
  font-size: var(--ds-font-size-body-sm);
  font-weight: var(--ds-font-weight-medium);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-static-white);
}

.node-news-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: var(--ds-spacing-gap-10);
  padding: var(--ds-spacing-padding-18) 1.25rem 1.25rem;
  min-width: 0;
}

.node-news-card__meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  font-size: var(--ds-font-size-body-sm);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-text-neutral-stronger);
  white-space: nowrap;
}

.node-news-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.node-news-card__meta-item--reading {
  border-left: 1px solid var(--ds-color-border-neutral-medium);
  padding-left: var(--ds-spacing-padding-8);
}

.node-news-card__meta-icon {
  font-size: var(--ds-font-size-body-lg);
  opacity: 0.85;
}
.node-news-card__meta-icon--calendar svg, .node-news-card__meta-icon--clock svg {
  display: block;
  flex-shrink: 0;
  width: 11px;
  height: 11px;
}

.node-news-card__title {
  flex: none;
  align-self: stretch;
  margin: 0;
  min-width: 0;
  width: 100%;
  font-family: var(--ds-font-family-subtitle);
  font-style: normal;
  font-size: var(--ds-font-size-subtitle-md);
  font-weight: var(--ds-font-weight-medium);
  line-height: var(--ds-line-height-normal);
  letter-spacing: 0;
  color: var(--ds-color-gray-900);
}
.node-news-card__title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  line-clamp: 4;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.node-news-card__title a:hover {
  color: inherit;
  text-decoration: none;
}
.node-news-card__title a:focus-visible {
  color: var(--ds-color-text-accent-brand-default);
  text-decoration: underline;
}

/* View «Últimas notícias» (news_global / block_last_news) */
.view-news-global.view-display-id-block_last_news .view-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-spacing-gap-24);
  align-items: stretch;
}
@media (min-width: 810px) {
  .view-news-global.view-display-id-block_last_news .view-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .view-news-global.view-display-id-block_last_news .view-content {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.view-news-global.view-display-id-block_last_news .views-row {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  min-width: 0;
}

/* Tag de editoria na view (modo pill / ghost) */
.taxonomy-term__color {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--term-color, var(--ds-color-border-neutral-black));
  border-radius: var(--ds-radious-radious-full);
  background-color: transparent;
  font-size: var(--ds-font-size-body-md);
  font-weight: var(--ds-font-weight-medium);
  line-height: var(--ds-line-height-snug);
  text-decoration: none;
  color: var(--term-color, var(--ds-color-text-neutral-black));
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.taxonomy-term__color:hover, .taxonomy-term__color:focus {
  background-color: var(--term-color, var(--ds-color-text-neutral-black));
  border-color: var(--term-color, var(--ds-color-text-neutral-black));
  color: #fff;
  opacity: 1;
  text-decoration: none;
}
.taxonomy-term__color .field,
.taxonomy-term__color .field__item {
  margin: 0;
}
.taxonomy-term__color .field__item {
  display: inline;
}

/* -------------------------------------------------------------------------- */
/* Listagem de notícias (view news_global / view_page_news_full)              */
/* -------------------------------------------------------------------------- */
.news-global-view-page-news-full {
  /* Wrapper da view: sem padding extra (o bleeds cuidam do layout). */
  margin-bottom: 0;
}

.news-page-listing__bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  padding-block: 2rem 3rem;
  background-color: var(--ds-color-gray-300);
  background-image: url("../../src/assets/news-page-pattern.png");
  background-repeat: repeat;
  background-position: center top;
}

.news-page-listing__header {
  margin-bottom: 1.25rem;
}

/* Filtros da listagem (exposed form) — alinhado ao Figma */
.news-page-listing__filters {
  margin-bottom: 1.75rem;
}

.news-page-listing__filters-title {
  margin: 0 0 var(--ds-spacing-margin-24);
  padding: 0;
  font-family: var(--ds-font-family-heading);
  font-weight: var(--ds-font-weight-bold);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-text-neutral-black);
}

.news-page-listing__exposed {
  /* Form: linha com selects + botão, alinhados pela base (labels acima). */
}
.news-page-listing__exposed .views-exposed-form,
.news-page-listing__exposed .bef-exposed-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-spacing-gap-16);
}
@media (min-width: 992px) {
  .news-page-listing__exposed .views-exposed-form,
  .news-page-listing__exposed .bef-exposed-form {
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
  }
}
.news-page-listing__exposed .form-item {
  margin-top: 0;
  margin-bottom: 0;
}
.news-page-listing__exposed .form-item.form-type-select {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--ds-spacing-gap-8);
  flex: 0 1 236px;
  min-width: min(236px, 100%);
  max-width: 100%;
}
.news-page-listing__exposed label {
  margin: 0;
  font-family: var(--ds-font-family-body);
  font-weight: var(--ds-font-weight-medium);
  font-size: var(--ds-font-size-body-lg);
  line-height: var(--ds-line-height-loose);
  color: var(--ds-color-text-neutral-heavy);
}
.news-page-listing__exposed select.form-select {
  box-sizing: border-box;
  width: 100%;
  min-height: 56px;
  padding: var(--ds-spacing-padding-16) 42px var(--ds-spacing-padding-16) var(--ds-spacing-padding-18);
  margin: 0;
  font-family: var(--ds-font-family-body);
  font-weight: var(--ds-font-weight-regular);
  font-size: var(--ds-font-size-body-lg);
  line-height: var(--ds-line-height-loose);
  color: var(--ds-color-text-neutral-heavy);
  background-color: var(--ds-color-shape-neutral-soft);
  border: 1px solid var(--ds-color-border-neutral-medium);
  border-radius: var(--ds-radious-radious-full);
  box-shadow: 0 2px 3px rgba(34, 47, 62, 0.06);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%23505153' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.news-page-listing__exposed select.form-select:hover {
  border-color: var(--ds-color-gray-600);
}
.news-page-listing__exposed select.form-select:focus {
  outline: 2px solid var(--ds-color-shape-accent-brand-default);
  outline-offset: 2px;
}
.news-page-listing__exposed .form-actions {
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  align-self: flex-end;
}
.news-page-listing__exposed .form-actions.form-wrapper {
  border: 0;
  background: transparent;
}
.news-page-listing__exposed input.form-submit,
.news-page-listing__exposed .form-submit {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ds-spacing-gap-10);
  width: 181px;
  max-width: 100%;
  min-height: 56px;
  padding: var(--ds-spacing-padding-14) 44px var(--ds-spacing-padding-14) var(--ds-spacing-padding-32);
  margin: 0;
  font-family: var(--ds-font-family-body);
  font-weight: var(--ds-font-weight-medium);
  font-size: var(--ds-font-size-heading-sm);
  line-height: 1.25;
  color: var(--ds-color-static-white);
  text-align: center;
  background-color: var(--ds-color-shape-accent-brand-default);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M4.5 2L8.5 6L4.5 10' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 17px 17px;
  border: none;
  border-radius: var(--ds-radious-radious-full);
  cursor: pointer;
  transition: background-color 0.15s ease, filter 0.15s ease;
  width: 100%;
}
.news-page-listing__exposed input.form-submit:hover,
.news-page-listing__exposed .form-submit:hover {
  filter: brightness(1.05);
}
.news-page-listing__exposed input.form-submit:focus-visible,
.news-page-listing__exposed .form-submit:focus-visible {
  outline: 2px solid var(--ds-color-shape-accent-brand-default);
  outline-offset: 3px;
}

.news-page-listing__empty {
  padding: 1rem 0;
}

.news-page-listing__pager {
  /* px fixo: evita ~60px por line-height + padding somarem acima do min-height; rem segue o root e foge do Figma */
  --pager-gap: 13.84px;
  --pager-cell: 55.36px;
  --pager-radius: 10.3793px;
  --pager-border: 1.73px solid var(--ds-color-gray-400);
  --pager-num-active-bg: var(--ds-color-gray-400);
  --pager-num-active-border: 1.72988px solid var(--ds-color-gray-500);
  --pager-num-bg: var(--ds-color-gray-200);
  --pager-num-text: var(--ds-color-gray-700);
  --pager-num-text-active: var(--ds-color-gray-800);
  --pager-arrow-surface: var(--ds-color-gray-100);
  --pager-shadow: 0 0.216rem 0.324rem rgba(34, 47, 62, 0.06);
  --pager-chevron-left: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 18L9 12L15 6' stroke='%23505153' stroke-width='1.73' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --pager-chevron-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%23505153' stroke-width='1.73' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin-top: var(--ds-spacing-margin-32);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.news-page-listing__pager .pager {
  margin-bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.news-page-listing__pager .pager__items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--pager-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}
.news-page-listing__pager .pager__item {
  margin: 0;
  padding: 0;
}
.news-page-listing__pager .pager__item--ellipsis {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--pager-cell);
  height: var(--pager-cell);
  padding: 0;
  font-family: var(--ds-font-family-heading);
  font-weight: var(--ds-font-weight-medium);
  font-size: 24.22px;
  line-height: 1;
  color: var(--pager-num-text);
}
.news-page-listing__pager .pager__item > a {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--pager-cell);
  height: var(--pager-cell);
  min-width: var(--pager-cell);
  min-height: var(--pager-cell);
  padding: 0;
  border-radius: var(--pager-radius);
  font-family: var(--ds-font-family-heading);
  font-weight: var(--ds-font-weight-medium);
  font-size: 24.22px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.news-page-listing__pager .pager__item > a:focus-visible {
  outline: 2px solid var(--ds-color-shape-accent-brand-default);
  outline-offset: 3px;
}
.news-page-listing__pager {
  /* Números inativos: :not(.is-active) para não perder para especificidade do bloco .is-active abaixo. */
}
.news-page-listing__pager .pager__item:not(.pager__item--first):not(.pager__item--previous):not(.pager__item--next):not(.pager__item--last):not(.pager__item--ellipsis):not(.is-active) > a {
  background: var(--pager-num-bg);
  color: var(--pager-num-text);
  border: 1.73px solid transparent;
}
.news-page-listing__pager .pager__item:not(.pager__item--first):not(.pager__item--previous):not(.pager__item--next):not(.pager__item--last):not(.pager__item--ellipsis):not(.is-active) > a:hover {
  background: var(--ds-color-gray-300);
}
.news-page-listing__pager {
  /* Página atual — _Pagination Numbers Base (Figma). Frame 55.36²: padding 13.84/27.68 do Figma não soma com a borda no mesmo quadrado; flex centraliza como o auto layout. */
}
.news-page-listing__pager .pager__item.is-active:not(.pager__item--first):not(.pager__item--previous):not(.pager__item--next):not(.pager__item--last):not(.pager__item--ellipsis) > a {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: var(--pager-num-active-bg);
  border: var(--pager-num-active-border);
  border-radius: var(--pager-radius);
  font-family: var(--ds-font-family-heading);
  font-style: normal;
  font-weight: var(--ds-font-weight-medium);
  font-size: 24.2183px;
  line-height: 36px; /* 150% no Figma */
  color: var(--pager-num-text-active);
}
.news-page-listing__pager .pager__item.is-active:not(.pager__item--first):not(.pager__item--previous):not(.pager__item--next):not(.pager__item--last):not(.pager__item--ellipsis) > a:hover {
  background: var(--pager-num-active-bg);
}
.news-page-listing__pager {
  /* Primeiro / anterior / próximo / último */
}
.news-page-listing__pager .pager__item--first > a,
.news-page-listing__pager .pager__item--previous > a,
.news-page-listing__pager .pager__item--next > a,
.news-page-listing__pager .pager__item--last > a {
  background: var(--pager-arrow-surface);
  border: var(--pager-border);
  box-shadow: var(--pager-shadow);
  color: var(--pager-num-text-active);
}
.news-page-listing__pager .pager__item--first > a:hover,
.news-page-listing__pager .pager__item--previous > a:hover,
.news-page-listing__pager .pager__item--next > a:hover,
.news-page-listing__pager .pager__item--last > a:hover {
  border-color: var(--ds-color-border-neutral-medium);
  box-shadow: 0 0.216rem 0.45rem rgba(34, 47, 62, 0.08);
}
.news-page-listing__pager .pager__item--first a [aria-hidden=true],
.news-page-listing__pager .pager__item--previous a [aria-hidden=true],
.news-page-listing__pager .pager__item--next a [aria-hidden=true],
.news-page-listing__pager .pager__item--last a [aria-hidden=true] {
  display: none;
}
.news-page-listing__pager .pager__item--first > a::after,
.news-page-listing__pager .pager__item--previous > a::after,
.news-page-listing__pager .pager__item--next > a::after,
.news-page-listing__pager .pager__item--last > a::after {
  content: "";
  width: 24.22px;
  height: 24.22px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.news-page-listing__pager .pager__item--first > a::after,
.news-page-listing__pager .pager__item--previous > a::after {
  background-image: var(--pager-chevron-left);
}
.news-page-listing__pager .pager__item--next > a::after,
.news-page-listing__pager .pager__item--last > a::after {
  background-image: var(--pager-chevron-right);
}

.news-page-listing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.news-page-listing__grid .views-row {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  display: flex;
  /* Views / temas antigos às vezes aplicam float ou largura total ao .views-row. */
  float: none;
  clear: none;
  width: auto;
  max-width: none;
}

.news-page-listing__grid .views-row .node-news-card {
  width: 100%;
}

/* Primeira página: mosaico com destaque */
/* 576px–1199px: 2 colunas, destaque em largura total */
@media (min-width: 576px) and (max-width: 1199.98px) {
  .news-page-listing__grid.news-page-listing__grid--first-page {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.25rem;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--featured {
    grid-column: 1/-1;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--default {
    grid-column: auto;
    grid-row: auto;
  }
}
/* 1200px–1399px: 3 colunas, destaque 2×2 + 1 card ao lado em cada linha */
@media (min-width: 1200px) {
  .news-page-listing__grid.news-page-listing__grid--first-page {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.25rem;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--featured {
    grid-column: 1/span 2;
    grid-row: span 2;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--default:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--default:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
  }
}
/* ≥1400px: 4 colunas, destaque 2×2 + 2 cards ao lado em cada linha */
@media (min-width: 1400px) {
  .news-page-listing__grid.news-page-listing__grid--first-page {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--default:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--default:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--default:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--default:nth-child(5) {
    grid-column: 4;
    grid-row: 2;
  }
}
@media (max-width: 575.98px) {
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
/* Demais páginas */
.news-page-listing__grid.news-page-listing__grid--paged {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .news-page-listing__grid.news-page-listing__grid--paged {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .news-page-listing__grid.news-page-listing__grid--paged {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1400px) {
  .news-page-listing__grid.news-page-listing__grid--paged {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* Card em destaque: título maior e sem truncagem agressiva */
@media (min-width: 992px) {
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--featured .node-news-card__body {
    padding: 47px 30px;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--featured .node-news-card__body .node-news-card__meta-item {
    margin-bottom: var(--ds-spacing-margin-32);
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--featured .node-news-card__body .node-news-card__meta-item--date,
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--featured .node-news-card__body .node-news-card__meta-item--reading {
    font-size: var(--ds-font-size-body-huge);
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--featured .node-news-card__media img {
    aspect-ratio: 16/11;
    min-height: 490px;
  }
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--featured .node-news-card__title {
    font-size: var(--ds-font-size-heading-xsm);
    font-weight: var(--ds-font-weight-medium);
    line-height: var(--ds-line-height-snug);
  }
  /* Cards do bloco 2×2 ao lado do destaque: até 2 linhas */
  .news-page-listing__grid.news-page-listing__grid--first-page .views-row--default:nth-child(-n+5) .node-news-card__title a {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}
/**
 * Carrossel de cards de notícia (view news_global / block_last_news).
 */
.news-tease-slider,
.news_tease_slider {
  position: relative;
  overflow: hidden;
}

.news-tease-slider__splide {
  margin: 0;
  padding: 0 0 var(--ds-spacing-padding-40);
}
.news-tease-slider__splide .splide__track {
  overflow: visible;
}
.news-tease-slider__splide .splide__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-tease-slider__splide .splide__slide,
.news-tease-slider__splide .news-tease-slider__slide {
  box-sizing: border-box;
  height: auto;
}
.news-tease-slider__splide .splide__slide > .node-news-card,
.news-tease-slider__splide .news-tease-slider__slide > .node-news-card {
  height: 100%;
}
.news-tease-slider__splide .splide__arrow {
  display: none;
}
.news-tease-slider__splide .splide__pagination {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  gap: 0;
}
.news-tease-slider__splide .splide__pagination li {
  display: flex;
  align-items: center;
}
.news-tease-slider__splide .splide__pagination .splide__pagination__page {
  margin: 0 var(--ds-spacing-margin-6);
  padding: 0;
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: var(--ds-color-gray-500);
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}
.news-tease-slider__splide .splide__pagination .splide__pagination__page.is-active {
  background: var(--ds-color-shape-accent-brand-default, #0066cc);
  transform: scale(1);
}

/**
 * Paragraph news_highlight: fundo, padding e alinhamento (cards na view).
 */
.news-highlight {
  background: var(--ds-color-blue-100);
  box-sizing: border-box;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  padding-top: var(--ds-spacing-padding-48);
  padding-bottom: var(--ds-spacing-padding-48);
}
@media (max-width: 47.99em) {
  .news-highlight {
    padding-top: var(--ds-spacing-padding-48);
    padding-bottom: 60px;
  }
}

.news-highlight__inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--ds-spacing-gap-40);
}

@media (max-width: 47.99em) {
  .news-highlight__inner {
    gap: var(--ds-spacing-gap-32);
  }
}
.news-highlight__title {
  align-self: flex-start;
  margin: 0;
  width: 100%;
  font-size: var(--ds-font-size-heading-sm);
  font-weight: var(--ds-font-weight-bold);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-blue-600);
}
.news-highlight__title .field__item {
  margin: 0;
}

.news-highlight__gallery {
  width: 100%;
  padding-top: var(--ds-spacing-padding-16);
}

.news-highlight__cta {
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.news-highlight__cta .ds-icon {
  color: var(--ds-color-text-neutral-soft) !important;
}

.ds-topbar {
  color: #fff;
}

.ds-topbar__inner {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto;
  align-items: center;
  column-gap: 16px;
  min-height: 64px;
  padding-block: 10px;
}

.ds-topbar,
.ds-topbar__inner {
  max-width: 100%;
}

.ds-topbar__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 120px;
}

.ds-topbar__brand svg,
.ds-topbar__brand img {
  display: block;
  width: 140px;
  height: auto;
  max-height: 54px;
}

.ds-topbar__search {
  position: relative;
  width: 100%;
  min-width: 0;
  align-self: center;
}

.ds-topbar__search .ds-search-bar {
  width: 100%;
}

.ds-topbar__search .ds-search-bar__wrapper {
  width: 100%;
}

.ds-topbar__search .ds-search-bar__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 100%;
  z-index: 20;
}

.ds-topbar__search .ds-search-bar__panel-inner {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.ds-topbar__search .ds-search-bar__listbox {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.ds-topbar__search .ds-search-bar__listbox > .ds-listbox,
.ds-topbar__search .ds-search-bar__listbox > .ds-listbox.ds-listbox__list,
.ds-topbar__search .ds-search-bar__listbox .ds-listbox__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.ds-topbar__links {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.ds-topbar__links .ds-button {
  margin-left: 1.5rem;
}
.ds-topbar__links .ds-button.btn-sm {
  height: 46px;
  padding: 0 1.1rem;
  font-size: 0.875rem;
  line-height: 1;
  gap: 0.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
}
.ds-topbar__links .ds-button.btn-sm svg {
  width: 0.875em;
  height: 0.875em;
}
.ds-topbar__links .ds-button--secondary {
  background-color: var(--ds-color-button-background-brand-secondary-default) !important;
}
.ds-topbar__links .ds-button--secondary:hover {
  background-color: var(--ds-button-secondary-bg-hover) !important;
}

.ds-topbar__link {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.ds-topbar__link:hover {
  text-decoration: none;
  color: var(--ds-button-secondary-bg-hover);
}

.ds-topbar__sep {
  opacity: 0.7;
  padding: 0 0.6rem;
}

.ds-topbar__social {
  display: flex;
  align-items: center;
  justify-self: end;
  white-space: nowrap;
}

.ds-topbar__social a {
  margin: 0 0.2rem;
}

.ds-topbar__social a:last-of-type {
  margin-right: 0 !important;
}

.ds-topbar__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) and (max-width: 1199px) {
  .ds-container {
    width: 100%;
  }
  .ds-topbar__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
  }
  .ds-topbar__brand {
    flex: 0 0 auto;
  }
  .ds-topbar__brand svg,
  .ds-topbar__brand img {
    width: 110px;
    height: auto;
  }
  .ds-topbar__search {
    flex: 1;
  }
  .ds-topbar__search input {
    width: 100%;
    height: 40px;
  }
  .ds-topbar__menu-toggle {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }
  .ds-topbar__menu-toggle svg {
    width: 24px !important;
    height: 24px !important;
  }
  .ds-topbar__links,
  .ds-topbar__social {
    display: none;
  }
  #block-portal-firjan-mainnavigation-2 {
    display: none;
  }
}
@media (max-width: 639px) {
  .ds-topbar__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "brand search toggle";
    column-gap: 12px;
    align-items: center;
  }
  .ds-topbar__brand {
    grid-area: brand;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    width: auto;
    max-width: max-content;
    height: auto;
  }
  .ds-topbar__brand .ds-brand {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 100%;
    height: auto;
    line-height: 0;
  }
  .ds-topbar__search {
    grid-area: search;
    min-width: 0;
    max-width: none;
  }
  .ds-topbar__links,
  .ds-topbar__social {
    display: none;
  }
  .ds-topbar__menu-toggle {
    grid-area: toggle;
    display: inline-flex;
    justify-self: end;
    align-self: center;
  }
  .ds-topbar__brand .ds-brand svg,
  .ds-topbar__brand svg,
  .ds-topbar__brand img {
    display: block;
    width: 88px;
    height: 48px;
  }
  .ds-topbar__menu-toggle svg {
    width: 24px !important;
    height: 24px !important;
  }
}
@media (max-width: 576px) {
  .ds-topbar__inner {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    column-gap: 8px;
    align-items: center;
  }
  .ds-topbar__brand img,
  .ds-topbar__brand svg {
    max-height: 48px;
  }
}
@media (max-width: 420px) {
  .ds-topbar {
    overflow-x: clip;
    max-width: 100%;
  }
  .ds-topbar__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 8px;
    width: 100%;
    max-width: 100%;
  }
  .ds-topbar .ds-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ds-topbar__brand {
    min-width: 0;
    max-width: max-content;
  }
  .ds-topbar__brand .ds-brand,
  .ds-topbar__brand svg,
  .ds-topbar__brand img {
    width: auto;
    height: auto;
    max-width: 92px;
    max-height: 48px;
  }
  .ds-topbar__search,
  .ds-topbar__search .ds-search-bar,
  .ds-topbar__search .ds-search-bar__wrapper,
  .ds-topbar__search .ds-search-bar__field {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .ds-topbar__menu-toggle {
    min-width: 32px;
    justify-self: end;
  }
}
@media (max-width: 1023px) {
  #block-portal-firjan-mainnavigation-2 {
    display: none;
  }
}
@media (min-width: 1200px) {
  .ds-topbar .ds-brand__logo {
    display: block;
    margin-left: -20px;
  }
}
.ds-footer {
  background: var(--ds-color-shape-accent-brand-default);
  color: var(--ds-color-text-accent-brand-soft);
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.ds-footer .ds-container {
  width: 100%;
}
.ds-footer .ds-icon {
  color: #fff;
}
.ds-footer__main {
  width: 100%;
}
.ds-footer__title {
  margin: 0 0 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.ds-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ds-footer__item {
  margin-bottom: 1rem;
}
.ds-footer__item:last-child {
  margin-bottom: 0;
}
.ds-footer__link {
  color: inherit;
  text-decoration: none;
  line-height: 1.35;
}
.ds-footer__link:hover {
  text-decoration: none;
}
.ds-footer__menus a:hover {
  color: var(--ds-button-secondary-bg-hover);
}
.ds-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ds-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ds-footer__bottom-right {
  margin-left: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.ds-footer__bottom-nav ul {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ds-footer__social ul {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ds-footer .ds-footer__bottom-nav li a {
  font-size: var(--ds-font-size-body-md);
}
.ds-footer .ds-footer__bottom-nav li a {
  font-size: var(--ds-font-size-body-md);
  font-weight: 600;
}
.ds-footer .ds-footer__bottom-nav li .ds-footer__bottom-link[href=""] {
  font-weight: unset;
}
.ds-footer__brand--desktop {
  display: none;
}
.ds-footer__brand--mobile {
  display: flex;
  justify-content: center;
}
.ds-footer .ds-footer__logo--mobile {
  display: none;
}
.ds-footer .ds-footer__logo--desktop {
  display: block;
}

.ds-footer-contact {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.ds-footer-contact .ds-footer-contact__content h6 {
  margin-bottom: 0.1rem;
}
.ds-footer-contact .ds-footer-contact__content p {
  margin-bottom: 0;
  font-size: var(--ds-font-size-body-sm);
}
.ds-footer-contact__icon {
  width: 1.75rem;
  height: 1.75rem;
}
.ds-footer-contact__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.ds-footer-contact__link, .ds-footer-contact__text {
  display: flex;
  flex-direction: column;
}

.ds-footer__divider {
  margin: 2rem 0;
}

@media (max-width: 639px) {
  .ds-footer {
    padding-block: 3rem;
  }
  .ds-footer .ds-footer__content {
    padding-inline: 1rem !important;
  }
  .ds-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .ds-footer__brand--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
  }
  .ds-footer .ds-footer__brand--mobile svg,
  .ds-footer .ds-footer__brand--mobile img {
    display: block;
    margin: 0 auto;
  }
  .ds-footer .ds-footer__logo--mobile {
    display: flex !important;
    justify-content: center;
  }
  .ds-footer .ds-footer__logo--desktop {
    display: none;
  }
  .ds-footer .ds-footer__brand svg {
    width: 166px;
    height: 77px;
  }
  .ds-footer__col--contact {
    text-align: left;
  }
  .ds-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .ds-footer__contacts * {
    width: 100%;
  }
  .ds-footer .ds-footer__contacts > div > div:nth-child(2),
  .ds-footer .ds-footer__contacts > div > div:nth-child(3) {
    width: 50%;
  }
  .ds-footer .ds-footer__contacts > div {
    display: flex;
    flex-wrap: wrap;
  }
  .ds-footer .ds-footer__contacts > div > div:nth-child(1),
  .ds-footer .ds-footer__contacts > div > div:nth-child(4) {
    width: 100%;
  }
  .ds-footer__divider--mobile {
    margin: 0;
  }
  .ds-footer__menus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .ds-footer__col--menu {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }
  .ds-footer__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .ds-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .ds-footer__bottom-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .ds-footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .ds-footer .ds-footer__bottom-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 0;
  }
  .ds-footer .ds-footer__social ul {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .ds-footer .ds-footer__social li {
    flex: 0 0 auto;
  }
  .ds-footer__social-label {
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .ds-footer .ds-container {
    width: 100%;
  }
  .ds-footer__main {
    padding-inline: 0;
  }
  .ds-footer__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }
  .ds-footer__brand--mobile {
    grid-column: 1;
    justify-content: flex-start;
  }
  .ds-footer__col--contact {
    grid-column: 2;
  }
  .ds-footer__menus {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .ds-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ds-footer__bottom-right {
    margin-left: 0;
    flex-direction: column;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .ds-footer__main {
    padding-inline: 0;
  }
  .ds-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }
  .ds-footer__brand.ds-footer__logo--mobile {
    display: none;
  }
  .ds-footer__brand.ds-footer__logo--desktop {
    grid-column: 4;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 120px;
  }
  .ds-footer__menus {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .ds-footer__col--contact {
    grid-column: 2;
    grid-row: 1;
  }
  .ds-footer__col--menu {
    min-width: 0;
  }
  .ds-footer__divider--mobile {
    grid-column: 3;
    grid-row: 2;
    display: none;
  }
  .ds-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .ds-footer__bottom-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ds-footer__bottom-nav ul {
    justify-content: center;
  }
  .ds-footer__bottom-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .ds-footer__social-label {
    margin: 0;
    white-space: nowrap;
  }
  .ds-footer__social {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .ds-footer__social ul {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .ds-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    align-items: start;
    gap: 3rem;
  }
  .ds-footer__logo--desktop {
    grid-column: 3;
    justify-self: start;
  }
  .ds-footer__logo--mobile {
    display: none;
  }
  .ds-footer__logo--desktop svg {
    width: 320px;
    height: auto;
  }
  .ds-footer .ds-footer__divider--mobile {
    display: none !important;
    grid-column: 4;
    grid-row: 1;
  }
  .ds-footer__menus {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .ds-footer__col--contact {
    grid-column: 2;
    grid-row: 1;
  }
  .ds-footer__col--menu {
    min-width: 0;
  }
  .ds-footer__divider--mobile {
    display: none;
  }
  .ds-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .ds-footer__bottom-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .ds-footer__bottom-nav ul li {
    white-space: nowrap;
  }
  .ds-footer__bottom-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }
  .ds-footer .ds-footer__bottom-right * {
    justify-content: center;
  }
  .ds-footer .ds-footer__social {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .ds-footer .ds-footer__social ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
  }
  .ds-footer .ds-footer__institutional p {
    margin-bottom: 0.3rem;
  }
}
.ds-footer-block p {
  color: #fff !important;
}

.tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > button {
  font: unset !important;
  font-size: 20px !important;
}

.tb-megamenu .ds-link-btn--medium.ds-link-btn--level-1 {
  font-size: 11px !important;
}

.tb-megamenu button.ds-link-btn,
.tb-megamenu .ds-action-md,
.tb-megamenu .ds-link-btn--medium {
  font-family: var(--ds-font-family-action);
  font-weight: var(--ds-font-weight-medium);
  line-height: normal;
  font-size: 12px;
}

.tb-megamenu a.ds-link-btn--subtle {
  font-weight: var(--ds-font-weight-regular) !important;
}

.tb-megamenu .ds-link-btn--mode-inverse.ds-link-btn--hover, .ds-link-btn--mode-inverse:hover {
  color: var(--ds-color-text-neutral-medium) !important;
}

.tb-megamenu .nav > .active > a, .tb-megamenu .nav > .active > a:hover, .tb-megamenu .nav > .active > a:focus, .tb-megamenu .nav > .active > span.tb-megamenu-no-link, .tb-megamenu .nav > .active > span.tb-megamenu-no-link:hover, .tb-megamenu .nav > .active > span.tb-megamenu-no-link:focus {
  background: transparent !important;
}

@media (min-width: 1024px) {
  #block-portal-firjan-mainnavigation-2 {
    background: var(--ds-color-shape-neutral-heavy);
  }
  .tb-megamenu {
    background: var(--ds-color-shape-neutral-heavy);
    position: static;
    height: 54px;
  }
  .tb-megamenu li.tb-megamenu-item > button::after {
    display: none;
  }
  .tb-megamenu .tb-megamenu-item.level-3.is-click-open button svg {
    transform: rotate(90deg);
    width: 14px;
    height: 14px;
  }
  .tb-megamenu .nav-collapse {
    height: 100%;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 {
    height: 100%;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .is-pinned-open button.ds-link-btn--level-1 svg {
    color: var(--ds-color-shape-accent-brand-default) !important;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 {
    position: static;
    height: 100%;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > button {
    background: var(--ds-color-shape-neutral-heavy) !important;
    color: rgb(255, 255, 255) !important;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > button svg {
    transform: rotate(90deg);
    width: 14px;
    height: 14px;
    margin-top: 3px;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > button,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > span,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > a {
    display: inline-flex;
    padding: 0;
    cursor: pointer;
    height: 100%;
    border: none;
    padding: 0 10px;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > button:hover,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > span:hover,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > a:hover {
    background-color: transparent;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > button:hover svg,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > span:hover svg,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > a:hover svg {
    color: rgb(204, 207, 215) !important;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1.is-pinned-open > .tb-megamenu-submenu {
    display: block;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu {
    margin-top: 0;
    width: 100%;
    background: transparent;
    border: none;
    z-index: 1001;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .tb-megamenu-column-inner {
    padding: 0;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols {
    display: flex;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-item {
    background: var(--ds-color-shape-accent-brand-default);
    width: 20%;
    height: fit-content;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-item .tb-megamenu-subnav.level-1 {
    flex-direction: column;
    position: relative;
    gap: 0;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-item .tb-megamenu-subnav.level-1 .tb-megamenu-item.level-2 {
    position: static;
    padding: 20px;
    cursor: pointer;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-item .tb-megamenu-subnav.level-1 .tb-megamenu-item.level-2 > button,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-item .tb-megamenu-subnav.level-1 .tb-megamenu-item.level-2 > span,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-item .tb-megamenu-subnav.level-1 .tb-megamenu-item.level-2 > a {
    border-top: none;
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-item .tb-megamenu-subnav.level-1 .tb-megamenu-item.level-2::before {
    content: "";
    position: absolute;
    background-image: url(../../src/assets/FirjanSenai_padrao.png);
    opacity: 0.1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu {
    flex: 1;
    height: 84vh;
    background: var(--ds-color-shape-neutral-heavy);
    padding: 70px;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel {
    height: 100%;
    overflow: hidden;
    min-width: 48%;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu {
    height: 100%;
    border: none;
    box-shadow: none;
    flex-direction: column;
    gap: 0;
    flex-wrap: wrap;
    justify-content: start !important;
    align-items: flex-start;
    align-content: flex-start;
    width: max-content;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .row > .col-md-4:not(:last-child) {
    border-right: 1px solid var(--ds-color-border-neutral-strong);
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .row > .col-md-3:first-child {
    border-right: 1px solid var(--ds-color-border-neutral-strong);
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .list-unstyled {
    gap: 0;
    flex-direction: column;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 {
    display: flex;
    width: 260px;
    flex-direction: column;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > a {
    color: var(--ds-color-static-white);
    padding: 0 16px;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > a:hover, .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > ahover svg {
    color: var(--ds-color-text-neutral-medium);
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > button > svg {
    transition: 0.2s all ease;
    width: 10px;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > button,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > span,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > a {
    display: flex;
    border-top: none;
    margin-bottom: 10px;
    cursor: pointer;
    justify-content: start;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > .tb-megamenu-submenu {
    position: relative;
    left: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    margin-left: 30px;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > .tb-megamenu-submenu .tb-megamenu-subnav.level-3 {
    flex-direction: column;
    gap: 0;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > .tb-megamenu-submenu .tb-megamenu-subnav.level-3 .tb-megamenu-item.level-4 > span,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > .tb-megamenu-submenu .tb-megamenu-subnav.level-3 .tb-megamenu-item.level-4 > a {
    border-top: none;
    color: #fff;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > .tb-megamenu-submenu .tb-megamenu-subnav.level-3 .tb-megamenu-item.level-4:last-child {
    margin-bottom: 20px;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .level-3.dropdown-submenu:hover > .tb-megamenu-submenu,
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .level-3.dropdown-submenu.open > .tb-megamenu-submenu {
    display: none;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .level-3.dropdown-submenu.is-click-open > .tb-megamenu-submenu {
    display: block;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .bloco-image {
    overflow: hidden;
    flex: 1;
    max-width: 500px;
    padding-left: 10px;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .bloco-image img, .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .bloco-image video {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 260px;
    max-width: 430px;
    float: inline-end;
    border-radius: 32px;
  }
}
/* =========================================================
   HOTFIX - NÍVEL 1 (TOPBAR)
   ========================================================= */
.tb-megamenu .tb-megamenu-nav.level-0 {
  display: flex;
  flex-wrap: wrap;
}

/* itens do nível 1 */
.tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* evita qualquer corte invisível */
.tb-megamenu .tb-megamenu-nav.level-0 {
  overflow: visible;
}

/* proteção extra (caso algum pai esteja cortando) */
.tb-megamenu {
  overflow: visible;
}

.tb-megamenu .container {
  max-width: 100% !important;
}

.tb-megamenu,
.tb-megamenu * {
  overflow: visible !important;
}

.tb-megamenu .tb-megamenu-nav.level-0 {
  overflow-x: auto;
  flex-wrap: nowrap;
}

.tb-megamenu-item.level-3 .dropdown-toggle.ds-link-btn svg {
  margin-top: 3px;
}

.tb-megamenu-item.level-3 .dropdown-toggle.ds-link-btn:hover svg {
  color: rgb(194, 197, 215) !important;
}

.tb-megamenu .nav li.dropdown.open > .dropdown-toggle,
.tb-megamenu-item.level-1 button.tb-megamenu-item {
  background: var(--ds-color-shape-neutral-heavy) !important;
  color: rgb(255, 255, 255) !important;
}

@media (min-width: 1024px) {
  .nav-collapse {
    height: 100% !important;
    overflow: visible !important;
  }
  .tb-megamenu .tb-megamenu-item.level-4 button {
    font-size: 16px;
  }
  .tb-megamenu .tb-megamenu-nav.level-0 > .tb-megamenu-item.level-1 > .tb-megamenu-submenu .megamenu-cols .col-menu-submenu .megamenu-panel > .tb-megamenu-submenu .tb-megamenu-item.level-3 > .tb-megamenu-submenu .tb-megamenu-subnav.level-3 .tb-megamenu-item.level-4 > a {
    font-size: 16px !important;
    text-indent: 5px !important;
    padding: 3px 0 !important;
  }
  .tb-megamenu-submenu .col-md-6 {
    border-right: 1px solid var(--ds-color-border-neutral-strong);
  }
  .tb-megamenu-submenu .col-md-6:last-child {
    border-right: none;
  }
}
@media (min-width: 1024px) and (max-width: 1402px) {
  .tb-megamenu .tb-megamenu-nav.level-0 {
    gap: 0.1rem;
  }
  .tb-megamenu-submenu {
    margin-left: -20px;
  }
  .col-menu-submenu {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    padding: 60px 30px 60px 45px !important;
  }
  /* área das colunas */
  .megamenu-panel {
    flex: 0 0 calc(100% - 380px);
    max-width: 70%;
    min-width: 0;
  }
  /* força grid interno a respeitar espaço */
  .megamenu-panel .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
  }
  .megamenu-panel .col-md-4 {
    flex: 0 0 50%;
    max-width: 30%;
    padding: 0;
  }
  .megamenu-panel .col-md-4 li {
    width: 100% !important;
  }
  .ds-link-btn--medium {
    font-size: 11px !important;
  }
  .megamenu-panel .col-md-4 .ds-link-btn--medium,
  .tb-megamenu .tb-megamenu-item.level-4 button {
    word-break: break-word;
    text-wrap-mode: wrap;
    text-align: left;
  }
  /* vídeo */
  .bloco-image {
    flex: 0 0 340px;
    max-width: 340px;
    margin-left: 70px;
  }
}
/* =========================================================
   BLOCO DE VÍDEO MEGAMENU
   ========================================================= */
.bloco-image .ds-megamenu-video {
  width: 100%;
  max-width: 430px;
}
.bloco-image .contextual-region {
  position: initial !important;
}
.bloco-image .ds-megamenu-video__media {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px;
  clip-path: inset(0 round 16px);
  background: #000;
  position: relative;
}
.bloco-image .ds-megamenu-video__media video,
.bloco-image .ds-megamenu-video__media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bloco-image .ds-megamenu-video__media {
  transition: transform 0.3s ease;
}
.bloco-image .ds-megamenu-video__media:hover {
  transform: scale(1.02);
}

.ds-megamenu-video__media {
  position: relative;
  overflow: hidden;
  background: #000;
}

.ds-megamenu-video__media iframe.media-oembed-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140% !important;
  height: 140% !important;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.media-oembed-content {
  max-width: none !important;
}

/* ========================================
   MOBILE MENU WRAPPER (OVERLAY)
======================================== */
.ds-mobile-menu-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.ds-mobile-menu-wrapper.is-open {
  transform: translateX(0);
}

/* ========================================
   ROOT STRUCTURE
======================================== */
.ds-mobile-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: calc(100% - 48px);
}

/* ========================================
   HEADER (SIMULADO)
======================================== */
.ds-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: var(--ds-color-shape-accent-brand-default);
  color: var(--ds-color-text-accent-brand-soft);
}

.ds-mobile-menu__brand svg {
  width: 88px;
  height: 48px;
}

.ds-mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-mobile-menu__close svg {
  width: 28px;
  height: 28px;
  color: var(--ds-color-text-accent-brand-soft);
}

/* ========================================
   CONTENT AREA
======================================== */
.ds-mobile-menu__content {
  flex: 1;
  overflow-y: auto;
  background: #fff;
}

/* ========================================
   MENU LEVELS (NAVEGAÇÃO)
======================================== */
.ds-menu-level {
  display: none;
}

.ds-menu-level.is-active {
  display: block;
}

/* ========================================
   MENU ITEM (BASE)
======================================== */
.ds-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--ds-color-border-neutral-muted);
  text-align: left;
  cursor: pointer;
  color: var(--ds-color-text-neutral-black);
  font-size: var(--ds-font-size-body-lg);
  font-weight: 600;
  text-indent: 2rem;
}

/* ========================================
   MENU ITEM ICON (RIGHT ARROW)
======================================== */
.ds-menu-item__icon {
  width: 14px;
  height: 14px;
  color: var(--ds-color-shape-accent-brand-default);
}

/* ========================================
   SUB ITEMS
======================================== */
.ds-menu-item--subchild-link {
  font-size: var(--ds-font-size-body-md);
}

/* ========================================
   BACK BUTTON
======================================== */
.ds-menu-back {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--ds-color-border-neutral-muted);
  cursor: pointer;
  font-size: var(--ds-font-size-body-lg);
  color: var(--ds-color-text-neutral-black);
  text-indent: 10px;
}

.ds-menu-back__icon {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
  fill: var(--ds-color-shape-accent-brand-default);
}

/* ========================================
   EFEITO ACCORDION
======================================== */
.ds-accordion-content {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ds-accordion-item.is-open .ds-accordion-content {
  display: block;
  max-height: 500px;
}

.accordion-item {
  border: none;
}
.accordion-item .ds-menu-item {
  padding-right: 20px;
}

.accordion-body {
  padding: 0;
}
.accordion-body .ds-menu-item {
  text-indent: 3rem;
}

.ds-accordion-item {
  border: none;
}

/* ========================================
   FOOTER AREA
======================================== */
.ds-mobile-menu__footer {
  padding: 16px;
}

/* ========================================
   DIVIDER
======================================== */
.ds-mobile-menu__divider {
  padding-block: 0.5rem;
}

/* ========================================
   TOPBAR MENU
======================================== */
.ds-mobile-menu__topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
.ds-mobile-menu__topbar .ds-topbar__link,
.ds-mobile-menu__topbar .ds-topbar__sep {
  font-size: var(--ds-font-size-body-lg) !important;
  font-weight: 600;
  color: var(--ds-color-text-neutral-heavy) !important;
  order: 1;
}
.ds-mobile-menu__topbar .ds-button--secondary {
  display: flex;
  justify-content: center;
  background-color: var(--ds-color-shape-accent-brand-default) !important;
  color: var(--ds-color-text-accent-brand-soft) !important;
  order: -1;
  padding: 0.7rem 1rem;
  margin-inline: 50px;
  margin-bottom: 0.5rem;
}
.ds-mobile-menu__topbar .ds-button--secondary span, .ds-mobile-menu__topbar .ds-button--secondary svg {
  color: var(--ds-color-text-accent-brand-soft) !important;
}

/* ========================================
   SOCIAL MENU
======================================== */
.ds-mobile-menu__social {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  gap: 12px;
}
.ds-mobile-menu__social .ds-social-btn--on-brand {
  color: var(--ds-color-text-neutral-black) !important;
  border: 1px solid var(--ds-color-text-neutral-black) !important;
}

/* ========================================
   BODY LOCK (QUANDO MENU ABERTO)
======================================== */
body.no-scroll {
  overflow: hidden;
}

/* ========================================
   SOMENTE SMART
======================================== */
@media (max-width: 639px) {
  .ds-mobile-menu-wrapper.is-open {
    background: transparent;
  }
  .ds-mobile-menu {
    width: calc(100% - 20px);
    height: 100%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    background: #fff;
  }
  .ds-mobile-menu__overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: var(--ds-color-overlay-accent-brand-stronger);
  }
}
/* ========================================
   VERSÃO TABRET
======================================== */
@media (min-width: 640px) and (max-width: 1199px) {
  .ds-mobile-menu-wrapper {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    z-index: 999;
    background: transparent;
  }
  /* OVERLAY */
  .ds-mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: var(--ds-color-overlay-accent-brand-stronger);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 0;
  }
  .ds-mobile-menu-wrapper.is-open .ds-mobile-menu__overlay {
    opacity: 1;
    pointer-events: auto;
  }
  /* MENU (drawer) */
  .ds-mobile-menu {
    width: 100%;
    max-width: 430px;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
  }
  .ds-mobile-menu-wrapper.is-open .ds-mobile-menu {
    transform: translateX(0);
  }
}
.ds-instituicoes {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  background-color: var(--ds-color-shape-static-firjan-default);
  margin-left: -50vw;
  margin-right: -50vw;
}

.ds-instituicoes__inner {
  display: flex;
  align-items: stretch;
}

.ds-instituicoes__itens {
  min-width: 0;
}

.ds-instituicoes__titulo {
  font-size: var(--ds-font-size-subtitle-sm);
  font-weight: var(--ds-font-weight-subtitle-sm);
  line-height: var(--ds-line-height-subtitle-sm);
  color: var(--ds-color-text-neutral-white);
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 2rem 0 0;
  white-space: nowrap;
}

.ds-instituicoes__logos,
.ds-instituicoes__logos > .field,
.ds-instituicoes__logos > .field > .field__item {
  display: flex;
  margin: 0;
}

.ds-instituicoes__logos > .field {
  min-width: 0;
}

.ds-instituicoes-logo-sesi,
.ds-instituicoes-logo-senai,
.ds-instituicoes-logo-iel,
.ds-instituicoes-logo-cirj {
  width: 68%;
  display: block;
  height: 56px;
  padding-inline: var(--ds-spacing-gap-24);
  color: white;
}

.ds-instituicoes-item {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}

.ds-instituicoes-item-logo-sesi {
  background-color: var(--ds-color-shape-static-sesi-default);
}

.ds-instituicoes-item-logo-cirj {
  background-color: var(--ds-color-shape-static-cirj-default);
}

.ds-instituicoes-item-logo-iel {
  background-color: var(--ds-color-shape-static-iel-default);
}

.ds-instituicoes-item-logo-senai {
  background-color: var(--ds-color-shape-static-senai-default);
}

.ds-instituicoes__logos > .field > .field__item + .field__item .ds-instituicoes-item {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

@media (min-width: 640px) and (max-width: 1023px) {
  .ds-instituicoes {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    background-color: transparent;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .ds-instituicoes__inner {
    display: block;
    width: 100%;
    max-width: none;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ds-instituicoes__titulo {
    font-size: var(--ds-font-size-body-xsm);
  }
  .ds-instituicoes__logos,
  .ds-instituicoes__logos > .field {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }
  .ds-instituicoes__logos {
    overflow: hidden;
  }
  .ds-instituicoes__logos > .ds-instituicoes-item,
  .ds-instituicoes__logos > .field > .field__item {
    min-width: 0;
  }
  .ds-instituicoes__logos > .ds-instituicoes-item + .ds-instituicoes-item,
  .ds-instituicoes__logos > .field > .field__item + .field__item .ds-instituicoes-item {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }
  .ds-instituicoes-logo-sesi,
  .ds-instituicoes-logo-senai,
  .ds-instituicoes-logo-iel,
  .ds-instituicoes-logo-cirj {
    width: 47%;
    height: 40px;
    padding: 0 0.625rem;
  }
  .ds-instituicoes-item {
    box-shadow: inset 0 2.83px 2.83px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 639px) {
  .ds-instituicoes__inner {
    display: block;
    width: 100%;
    max-width: none;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ds-instituicoes__titulo {
    display: none;
  }
  .ds-instituicoes__logos,
  .ds-instituicoes__logos > .field {
    width: 100%;
  }
  .ds-instituicoes-logo-sesi,
  .ds-instituicoes-logo-senai,
  .ds-instituicoes-logo-iel,
  .ds-instituicoes-logo-cirj {
    width: 100%;
    height: 36px;
  }
  .ds-instituicoes-item {
    box-shadow: inset 0 2.28px 2.28px rgba(0, 0, 0, 0.25);
  }
}
.paragraph--type--galeria-de-video {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}
.paragraph--type--galeria-de-video .ds-video-gallery {
  visibility: visible;
}
.paragraph--type--galeria-de-video .ds-video-gallery .content {
  padding-block: 3rem;
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__header {
  color: #fff;
}
@media (max-width: 720px) {
  .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid {
    padding-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid {
    margin: 0;
  }
  .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .list-itens {
    gap: 20px;
    display: flex;
  }
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card {
  height: 288px;
  transition: 0.2s all ease;
  border-radius: 24px;
  position: relative;
  width: 162px;
}
@media (max-width: 720px) {
  .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card {
    width: auto !important;
  }
}
@media (max-width: 1400px) {
  .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card.active {
    width: 385px;
  }
}
@media (min-width: 1401px) {
  .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card.active {
    width: 512px;
  }
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card .ds-video-gallery-card__remote-media {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card .ds-video-gallery-card__thumbnail {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card .ds-video-gallery-card__thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card.active .ds-video-gallery-card__thumbnail {
  opacity: 0;
  visibility: hidden;
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card .ds-video-button-pause {
  position: absolute;
  right: 0;
  z-index: 3;
  padding: 0.7rem;
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card .ds-video-gallery-card__overlay-trigger {
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  padding: 0.75rem 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card > * div {
  width: 100%;
  height: 100%;
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid video, .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

body.ds-video-gallery-overlay-open {
  overflow: hidden;
}

.ds-video-gallery-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.ds-video-gallery-overlay[hidden] {
  display: none;
}
.ds-video-gallery-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}
.ds-video-gallery-overlay__dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
}
.ds-video-gallery-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ds-video-gallery-overlay__title {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
.ds-video-gallery-overlay__close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}
.ds-video-gallery-overlay__content {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}
.ds-video-gallery-overlay__media {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.ds-video-clean {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ds-video-clean__thumb,
.ds-video-clean__player {
  position: absolute;
  inset: 0;
}

.ds-video-clean__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ds-video-clean__player {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ds-video-clean--ready .ds-video-clean__player {
  opacity: 1;
}

.ds-video-clean--ready .ds-video-clean__thumb {
  opacity: 0;
}

.ds-video-gallery-card__content {
  display: none;
}

@media (min-width: 1024px) and (max-width: 1402px) {
  .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card {
    height: 215px;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .splide__slide {
    padding: 0 15px;
  }
  .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__header {
    margin-bottom: 3.5rem !important;
  }
  .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card {
    height: 215px;
  }
  .paragraph--type--galeria-de-video {
    padding-bottom: 30px;
  }
  .ds-video-gallery-card__overlay-trigger {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 639px) {
  .splide__slide {
    padding: 0;
  }
  .paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card {
    height: 188px;
  }
  .paragraph--type--galeria-de-video {
    padding-bottom: 25px;
  }
  .ds-video-gallery-card__overlay-trigger {
    width: 38px;
    height: 38px;
  }
}
.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card .ds-video-gallery-card__overlay-trigger {
  position: relative;
  font-size: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
}

.paragraph--type--galeria-de-video .ds-video-gallery .content .ds-video-gallery__grid .ds-video-gallery-card .ds-video-gallery-card__overlay-trigger::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 68'><circle cx='34' cy='34' r='34' fill='white'/><path d='M45.3187 31.8817C47.3661 33.0269 47.3661 35.9731 45.3187 37.1183L30.4644 45.4264C28.4647 46.5449 26 45.0994 26 42.8081L26 26.1919C26 23.9006 28.4647 22.4551 30.4644 23.5736L45.3187 31.8817Z' fill='%23505153'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.paragraph--type--paragraph-image-gallery {
  position: relative;
}
.paragraph--type--paragraph-image-gallery:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  left: 50%;
  background: url("../../src/assets/firjan_waves.png") center top repeat-x;
  background-size: 100% auto;
  z-index: 1;
}
.paragraph--type--paragraph-image-gallery .galeria-wrapper {
  position: relative;
  z-index: 2;
}

.paragraph--type--paragraph-image-gallery .galeria-imagens,
.paragraph--image-gallery .galeria-imagens {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-top: var(--ds-spacing-padding-72);
  padding-bottom: var(--ds-spacing-padding-40);
  gap: var(--ds-spacing-gap-40);
  box-sizing: border-box;
  min-width: 0;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens .splide,
.paragraph--image-gallery .galeria-imagens .splide {
  visibility: visible;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens .galeria-imagens__main:not(.is-initialized) .splide__slide,
.paragraph--image-gallery .galeria-imagens .galeria-imagens__main:not(.is-initialized) .splide__slide {
  opacity: 0;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens .galeria-imagens__main:not(.is-initialized) .splide__slide:first-child,
.paragraph--image-gallery .galeria-imagens .galeria-imagens__main:not(.is-initialized) .splide__slide:first-child {
  opacity: 1;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens > .splide__pagination,
.paragraph--image-gallery .galeria-imagens > .splide__pagination {
  position: static;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.643125rem;
  transform: none;
  width: 100%;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens > .splide__pagination .splide__pagination__page,
.paragraph--image-gallery .galeria-imagens > .splide__pagination .splide__pagination__page {
  width: 9px;
  height: 9px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--ds-color-gray-400);
  opacity: 1;
  transform: none;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens > .splide__pagination .splide__pagination__page:hover,
.paragraph--image-gallery .galeria-imagens > .splide__pagination .splide__pagination__page:hover {
  background: rgb(208.6, 211.8, 219.8);
}
.paragraph--type--paragraph-image-gallery .galeria-imagens > .splide__pagination .splide__pagination__page.is-active,
.paragraph--image-gallery .galeria-imagens > .splide__pagination .splide__pagination__page.is-active {
  background: var(--ds-color-light-blue-400);
  transform: none;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main-shell,
.paragraph--image-gallery .galeria-imagens__main-shell {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: calc(750px + 5.5rem);
  margin-inline: auto;
  overflow: visible;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main,
.paragraph--image-gallery .galeria-imagens__main {
  width: 100%;
  max-width: 750px;
  margin-inline: auto;
  position: relative;
  overflow: visible;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__track,
.paragraph--image-gallery .galeria-imagens__main .splide__track {
  overflow: visible;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__slide,
.paragraph--image-gallery .galeria-imagens__main .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--ds-spacing-gap-16);
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .galeria-imagens__photo,
.paragraph--image-gallery .galeria-imagens__main .galeria-imagens__photo {
  width: 100%;
  max-width: 750px;
  margin-inline: auto;
  line-height: 0;
  background: var(--ds-color-gray-300);
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .galeria-imagens__photo img,
.paragraph--image-gallery .galeria-imagens__main .galeria-imagens__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 750/530;
  border-radius: var(--ds-radious-size-radious-24);
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .galeria-imagens__alt,
.paragraph--image-gallery .galeria-imagens__main .galeria-imagens__alt {
  width: 100%;
  max-width: 750px;
  margin: 0;
  padding: 0 var(--ds-spacing-padding-8);
  font-family: var(--ds-font-family-body);
  font-size: 14px;
  font-style: italic;
  font-weight: var(--ds-font-weight-regular);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-text-neutral-medium);
  text-align: center;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .galeria-imagens__caption,
.paragraph--image-gallery .galeria-imagens__main .galeria-imagens__caption {
  width: 100%;
  max-width: 750px;
  margin: 0;
  padding: 0 var(--ds-spacing-padding-8);
  font-family: var(--ds-font-family-body);
  font-style: italic;
  font-weight: var(--ds-font-weight-regular);
  font-size: var(--ds-font-size-heading-sm);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-text-neutral-stronger);
  text-align: center;
  min-height: 1.35em;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrows,
.paragraph--image-gallery .galeria-imagens__main .splide__arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(70.6666666667vw, 530px);
  max-height: 53.125vw;
  pointer-events: none;
  z-index: 2;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow,
.paragraph--image-gallery .galeria-imagens__main .splide__arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 61px;
  background: transparent;
  border: 0;
  border-radius: 0;
  opacity: 1;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow svg,
.paragraph--image-gallery .galeria-imagens__main .splide__arrow svg {
  display: block;
  width: 35px;
  height: 61px;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow:disabled,
.paragraph--image-gallery .galeria-imagens__main .splide__arrow:disabled {
  opacity: 0.35;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow--prev svg,
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow--next svg,
.paragraph--image-gallery .galeria-imagens__main .splide__arrow--prev svg,
.paragraph--image-gallery .galeria-imagens__main .splide__arrow--next svg {
  transform: none !important;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow--prev,
.paragraph--image-gallery .galeria-imagens__main .splide__arrow--prev {
  left: -2.75rem;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow--next,
.paragraph--image-gallery .galeria-imagens__main .splide__arrow--next {
  right: -2.75rem;
}
@media (max-width: 860px) {
  .paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow--prev,
  .paragraph--image-gallery .galeria-imagens__main .splide__arrow--prev {
    left: -1.25rem;
  }
  .paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow--next,
  .paragraph--image-gallery .galeria-imagens__main .splide__arrow--next {
    right: -1.25rem;
  }
}
@media (max-width: 600px) {
  .paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow--prev,
  .paragraph--image-gallery .galeria-imagens__main .splide__arrow--prev {
    left: 0.35rem;
  }
  .paragraph--type--paragraph-image-gallery .galeria-imagens__main .splide__arrow--next,
  .paragraph--image-gallery .galeria-imagens__main .splide__arrow--next {
    right: 0.35rem;
  }
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__thumbs,
.paragraph--image-gallery .galeria-imagens__thumbs {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  box-sizing: border-box;
  overflow: hidden;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__thumbs .splide__track,
.paragraph--image-gallery .galeria-imagens__thumbs .splide__track {
  overflow: hidden;
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__thumbs .splide__slide,
.paragraph--image-gallery .galeria-imagens__thumbs .splide__slide {
  border: 4.15px solid transparent;
  border-radius: var(--ds-radious-size-radious-2);
  box-sizing: border-box;
  overflow: hidden;
  opacity: 1;
  transition: border-color 0.2s ease;
  border-radius: var(--ds-radious-size-radious-24);
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__thumbs .splide__slide.is-active,
.paragraph--image-gallery .galeria-imagens__thumbs .splide__slide.is-active {
  border-color: var(--ds-color-light-blue-400);
}
.paragraph--type--paragraph-image-gallery .galeria-imagens__thumbs .galeria-imagens__thumb-img,
.paragraph--image-gallery .galeria-imagens__thumbs .galeria-imagens__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.paragraph--type--related-node {
  padding: 2.5rem 0;
  overflow: hidden;
}
.paragraph--type--related-node .related-node-carousel__container {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  padding: 0;
}
.paragraph--type--related-node .related-node-carousel__heading {
  margin: 0 0 1.5rem;
  font-family: var(--ds-font-family-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--ds-color-text-neutral-black, #111);
}
.paragraph--type--related-node .related-node-carousel .splide__track {
  overflow: hidden;
}
.paragraph--type--related-node .related-node-carousel .splide__list {
  align-items: stretch;
}
.paragraph--type--related-node .related-node-carousel__slide {
  height: 469px;
  width: 305px !important;
  max-width: 305px;
  flex: 0 0 305px;
}
.paragraph--type--related-node .related-node-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 469px;
  max-height: 469px;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 20, 40, 0.12);
  overflow: hidden;
}
.paragraph--type--related-node .related-node-card__link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease;
}
.paragraph--type--related-node .related-node-card__link:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
  border-radius: 1rem;
}
.paragraph--type--related-node .related-node-card__link:hover {
  transform: translateY(-4px);
}
.paragraph--type--related-node .related-node-card__media {
  flex: 0 0 284px;
  position: relative;
  width: 100%;
  min-height: 284px;
  background: #dde3ec;
}
.paragraph--type--related-node .related-node-card__media picture,
.paragraph--type--related-node .related-node-card__media figure,
.paragraph--type--related-node .related-node-card__media .field,
.paragraph--type--related-node .related-node-card__media .field__item,
.paragraph--type--related-node .related-node-card__media img {
  display: block;
  width: 100%;
  margin: 0;
}
.paragraph--type--related-node .related-node-card__media picture,
.paragraph--type--related-node .related-node-card__media figure {
  height: 284px;
}
.paragraph--type--related-node .related-node-card__media img {
  height: 284px;
  object-fit: cover;
}
.paragraph--type--related-node .related-node-card__media-placeholder {
  height: 284px;
  background: linear-gradient(140deg, #cfd7e4, #e3e8f0);
}
.paragraph--type--related-node .related-node-card__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 0.5rem);
  min-height: 1.6rem;
  padding: 0.28rem 0.95rem 0.32rem 0.85rem;
  border-radius: 0 0.72rem 0 0;
  background: #0154d0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.paragraph--type--related-node .related-node-card__title {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 1rem 1rem 1.25rem;
  color: #31353c;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}
.paragraph--type--related-node .related-node-carousel .splide__pagination {
  position: static;
  margin-top: 1.5rem;
  gap: 0.4rem;
}
.paragraph--type--related-node .related-node-carousel .splide__pagination__page {
  width: 0.45rem;
  height: 0.45rem;
  margin: 0;
  border: 0;
  background: #c1c6cf;
  opacity: 1;
}
.paragraph--type--related-node .related-node-carousel .splide__pagination__page.is-active {
  transform: none;
  background: #0154d0;
}
@media (max-width: 767px) {
  .paragraph--type--related-node {
    padding: 2rem 0;
  }
  .paragraph--type--related-node .related-node-carousel__container {
    width: min(100% - 1.5rem, 1280px);
    padding: 0;
  }
  .paragraph--type--related-node .related-node-carousel__heading {
    margin-bottom: 1rem;
    padding-left: 0.25rem;
    font-size: 1.75rem;
    line-height: 1.05;
  }
  .paragraph--type--related-node .related-node-card {
    border-radius: 1rem;
    min-height: 469px;
    max-height: 469px;
  }
  .paragraph--type--related-node .related-node-card__title {
    padding: 0.85rem 0.9rem 1rem;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .paragraph--type--related-node .related-node-carousel__slide {
    width: 100% !important;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.paragraph--type--general-content-tag {
  padding: 2.5rem 0;
  overflow: hidden;
}
.paragraph--type--general-content-tag .general-content-tag-carousel__container {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  padding: 0;
}
.paragraph--type--general-content-tag .general-content-tag-carousel__heading {
  margin: 0 0 1.5rem;
  font-family: var(--ds-font-family-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--ds-color-text-neutral-black, #111);
}
.paragraph--type--general-content-tag .general-content-tag-carousel__heading p {
  margin: 0;
}
.paragraph--type--general-content-tag .general-content-tag-carousel .splide__track {
  overflow: hidden;
}
.paragraph--type--general-content-tag .general-content-tag-carousel .splide__list {
  align-items: stretch;
}
.paragraph--type--general-content-tag .general-content-tag-carousel__slide {
  height: 469px;
  width: 305px !important;
  max-width: 305px;
  flex: 0 0 305px;
}
.paragraph--type--general-content-tag .general-content-tag-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 469px;
  max-height: 469px;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 20, 40, 0.12);
  overflow: hidden;
}
.paragraph--type--general-content-tag .general-content-tag-card__link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease;
}
.paragraph--type--general-content-tag .general-content-tag-card__link:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
  border-radius: 1rem;
}
.paragraph--type--general-content-tag .general-content-tag-card__link:hover {
  transform: translateY(-4px);
}
.paragraph--type--general-content-tag .general-content-tag-card__media {
  flex: 0 0 284px;
  position: relative;
  width: 100%;
  min-height: 284px;
  background: #dde3ec;
}
.paragraph--type--general-content-tag .general-content-tag-card__media picture,
.paragraph--type--general-content-tag .general-content-tag-card__media figure,
.paragraph--type--general-content-tag .general-content-tag-card__media .field,
.paragraph--type--general-content-tag .general-content-tag-card__media .field__item,
.paragraph--type--general-content-tag .general-content-tag-card__media img {
  display: block;
  width: 100%;
  margin: 0;
}
.paragraph--type--general-content-tag .general-content-tag-card__media picture,
.paragraph--type--general-content-tag .general-content-tag-card__media figure {
  height: 284px;
}
.paragraph--type--general-content-tag .general-content-tag-card__media img {
  height: 284px;
  object-fit: cover;
}
.paragraph--type--general-content-tag .general-content-tag-card__media-placeholder {
  height: 284px;
  background: linear-gradient(140deg, #cfd7e4, #e3e8f0);
}
.paragraph--type--general-content-tag .general-content-tag-card__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 0.5rem);
  min-height: 1.6rem;
  padding: 0.28rem 0.95rem 0.32rem 0.85rem;
  border-radius: 0 0.72rem 0 0;
  background: #0154d0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.paragraph--type--general-content-tag .general-content-tag-card__tag .field-content {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.paragraph--type--general-content-tag .general-content-tag-card__title {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 1rem 1rem 1.25rem;
  color: #31353c;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}
.paragraph--type--general-content-tag .general-content-tag-card__title .field-content {
  display: block;
}
.paragraph--type--general-content-tag .general-content-tag-carousel .splide__pagination {
  position: static;
  margin-top: 1.5rem;
  gap: 0.4rem;
}
.paragraph--type--general-content-tag .general-content-tag-carousel .splide__pagination__page {
  width: 0.45rem;
  height: 0.45rem;
  margin: 0;
  border: 0;
  background: #c1c6cf;
  opacity: 1;
}
.paragraph--type--general-content-tag .general-content-tag-carousel .splide__pagination__page.is-active {
  transform: none;
  background: #0154d0;
}
@media (max-width: 767px) {
  .paragraph--type--general-content-tag {
    padding: 2rem 0;
  }
  .paragraph--type--general-content-tag .general-content-tag-carousel__container {
    width: min(100% - 1.5rem, 1280px);
    padding: 0;
  }
  .paragraph--type--general-content-tag .general-content-tag-carousel__heading {
    margin-bottom: 1rem;
    padding-left: 0.25rem;
    font-size: 1.75rem;
    line-height: 1.05;
  }
  .paragraph--type--general-content-tag .general-content-tag-card {
    border-radius: 1rem;
    min-height: 469px;
    max-height: 469px;
  }
  .paragraph--type--general-content-tag .general-content-tag-card__title {
    padding: 0.85rem 0.9rem 1rem;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .paragraph--type--general-content-tag .general-content-tag-carousel__slide {
    width: 100% !important;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.ds-gif-institucional {
  padding-block: 24px;
  width: 80%;
  margin: auto;
}
@media (max-width: 768px) {
  .ds-gif-institucional {
    width: 100%;
  }
}

.ds-gif-institucional__media {
  width: 100%;
}

.ds-gif-institucional__media img,
.ds-gif-institucional__media picture,
.ds-gif-institucional__media .field,
.ds-gif-institucional__media .field__item,
.ds-gif-institucional__media .field__item img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.ds-button-ckeditor--primary,
.ds-button-ckeditor--secondary,
.ds-button-ckeditor--primary-full,
.ds-button-ckeditor--secondary-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  border-radius: 9999px;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.ds-button-ckeditor--primary a,
.ds-button-ckeditor--secondary a,
.ds-button-ckeditor--primary-full a,
.ds-button-ckeditor--secondary-full a {
  color: inherit !important;
  text-decoration: none;
}
.ds-button-ckeditor--primary:hover, .ds-button-ckeditor--primary:focus-within,
.ds-button-ckeditor--primary a:hover,
.ds-button-ckeditor--primary a:focus-visible,
.ds-button-ckeditor--secondary:hover,
.ds-button-ckeditor--secondary:focus-within,
.ds-button-ckeditor--secondary a:hover,
.ds-button-ckeditor--secondary a:focus-visible,
.ds-button-ckeditor--primary-full:hover,
.ds-button-ckeditor--primary-full:focus-within,
.ds-button-ckeditor--primary-full a:hover,
.ds-button-ckeditor--primary-full a:focus-visible,
.ds-button-ckeditor--secondary-full:hover,
.ds-button-ckeditor--secondary-full:focus-within,
.ds-button-ckeditor--secondary-full a:hover,
.ds-button-ckeditor--secondary-full a:focus-visible {
  opacity: 0.92;
  filter: brightness(0.97);
}

.ds-button-ckeditor--primary {
  background: var(--ds-color-button-background-brand-primary-default);
}
.ds-button-ckeditor--primary span {
  color: var(--ds-color-text-neutral-white) !important;
}

.ds-button-ckeditor--primary-full {
  background: var(--ds-color-button-background-brand-primary-default);
  width: 100%;
  display: flex;
}
.ds-button-ckeditor--primary-full span {
  color: var(--ds-color-text-neutral-white) !important;
}
.ds-button-ckeditor--primary-full a {
  width: 100%;
  text-align: center;
}

.ds-button-ckeditor--secondary {
  background-color: var(--ds-color-button-background-brand-secondary-default);
  border: 1px solid var(--ds-color-button-border-brand-default);
}
.ds-button-ckeditor--secondary span {
  color: var(--ds-color-button-border-brand-default) !important;
}

.ds-button-ckeditor--secondary-full {
  background-color: var(--ds-color-button-background-brand-secondary-default);
  border: 1px solid var(--ds-color-button-border-brand-default);
  width: 100%;
  display: flex;
}
.ds-button-ckeditor--secondary-full span {
  color: var(--ds-color-button-border-brand-default) !important;
}
.ds-button-ckeditor--secondary-full a {
  width: 100%;
  text-align: center;
}

.content-component-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--ds-spacing-gap-20, 1.25rem);
}
@media (min-width: 640px) {
  .content-component-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: var(--ds-spacing-gap-40, 2.5rem);
  }
}

.content-component-media {
  flex-shrink: 0;
}
.content-component-media img,
.content-component-media picture {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--ds-radious-radious-lg, 1.2rem);
  object-fit: cover;
}
.content-component-media figcaption,
.content-component-media .content-component-caption {
  margin-top: var(--ds-spacing-padding-16, 1rem);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ds-color-text-neutral-secondary, #505153);
}
@media (min-width: 640px) {
  .content-component-media {
    width: 50%;
  }
}

.content-component-body {
  flex: 1;
  min-width: 0;
  color: var(--ds-color-text-neutral-secondary, #505153);
}
.content-component-body > :first-child {
  margin-top: 0;
}
.content-component-body > :last-child {
  margin-bottom: 0;
}

.content-component-wrapper--image-horizontal-text .content-component-media img,
.content-component-wrapper--image-horizontal-text .content-component-media picture img {
  aspect-ratio: 680/442;
}

@media (min-width: 640px) {
  .content-component-wrapper--text-image-horizontal .content-component-media {
    order: 1;
  }
  .content-component-wrapper--text-image-horizontal .content-component-body {
    order: 0;
  }
}
.content-component-wrapper--text-image-horizontal .content-component-media img,
.content-component-wrapper--text-image-horizontal .content-component-media picture img {
  aspect-ratio: 680/442;
}

@media (min-width: 640px) {
  .content-component-wrapper--image-vertical-text .content-component-media {
    width: 40%;
  }
}
.content-component-wrapper--image-vertical-text .content-component-media img,
.content-component-wrapper--image-vertical-text .content-component-media picture img {
  aspect-ratio: 442/680;
}

@media (min-width: 640px) {
  .content-component-wrapper--text-image-vertical .content-component-media {
    order: 1;
    width: 40%;
  }
  .content-component-wrapper--text-image-vertical .content-component-body {
    order: 0;
  }
}
.content-component-wrapper--text-image-vertical .content-component-media img,
.content-component-wrapper--text-image-vertical .content-component-media picture img {
  aspect-ratio: 442/680;
}

.paragraph--type--ds-multimidia-de-cards {
  display: flex;
  flex-direction: column;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}
.paragraph--type--ds-multimidia-de-cards .container {
  gap: var(--ds-spacing-gap-18);
  display: flex;
  flex-direction: column;
}
.paragraph--type--ds-multimidia-de-cards .gallery-section-title {
  color: var(--ds-color-text-neutral-black);
  font-size: var(--ds-font-size-heading-sm);
}
.paragraph--type--ds-multimidia-de-cards .ds-info-card--brand > .ds-info-card__title {
  color: var(--ds-color-text-neutral-soft) !important;
}
.paragraph--type--ds-multimidia-de-cards .gallery-section-footer .ds-icon {
  color: var(--ds-color-text-neutral-soft) !important;
}
.paragraph--type--ds-multimidia-de-cards .ds-transition-gallery-card .ds-transition-gallery-card__description {
  color: var(--ds-color-text-neutral-soft) !important;
}

.field--name-field-slots-layout .form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 10px;
}
.field--name-field-slots-layout .form-item {
  margin: 0;
  position: relative;
}
.field--name-field-slots-layout input[type=radio] {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  width: 1px;
  height: 1px;
  z-index: -1;
}
.field--name-field-slots-layout input[type=radio]:checked + label {
  border-color: #0b5cff;
  box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.2);
  background-color: #f3f7ff;
}
.field--name-field-slots-layout input[type=radio][value=_none] + label {
  display: none;
}
.field--name-field-slots-layout input[type=radio][value=half_half] + label {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='38' height='38' rx='4' fill='%23cdd1d9'/%3E%3Crect x='42' y='0' width='38' height='38' rx='4' fill='%23cdd1d9'/%3E%3Crect x='0' y='42' width='38' height='38' rx='4' fill='%23cdd1d9'/%3E%3Crect x='42' y='42' width='38' height='38' rx='4' fill='%23cdd1d9'/%3E%3C/svg%3E");
}
.field--name-field-slots-layout input[type=radio][value=half_half] + label::after {
  content: "Half / Half";
}
.field--name-field-slots-layout input[type=radio][value=full_half] + label {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='80' height='38' rx='4' fill='%23cdd1d9'/%3E%3Crect x='0' y='42' width='38' height='38' rx='4' fill='%23cdd1d9'/%3E%3Crect x='42' y='42' width='38' height='38' rx='4' fill='%23cdd1d9'/%3E%3C/svg%3E");
}
.field--name-field-slots-layout input[type=radio][value=full_half] + label::after {
  content: "Full / Half";
}
.field--name-field-slots-layout input[type=radio][value=half_full] + label {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='38' height='38' rx='4' fill='%23cdd1d9'/%3E%3Crect x='42' y='0' width='38' height='38' rx='4' fill='%23cdd1d9'/%3E%3Crect x='0' y='42' width='80' height='38' rx='4' fill='%23cdd1d9'/%3E%3C/svg%3E");
}
.field--name-field-slots-layout input[type=radio][value=half_full] + label::after {
  content: "Half / Full";
}
.field--name-field-slots-layout input[type=radio][value=full_full] + label {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='80' height='38' rx='4' fill='%23cdd1d9'/%3E%3Crect x='0' y='42' width='80' height='38' rx='4' fill='%23cdd1d9'/%3E%3C/svg%3E");
}
.field--name-field-slots-layout input[type=radio][value=full_full] + label::after {
  content: "Full / Full";
}
.field--name-field-slots-layout label {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  padding: 15px;
  border: 2px solid #8e929c;
  border-radius: 8px;
  cursor: pointer;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80px;
  transition: all 0.2s ease-in-out;
  box-sizing: content-box;
  font-size: 0;
  color: transparent;
}
.field--name-field-slots-layout label:hover {
  border-color: #0b5cff;
}
.field--name-field-slots-layout label::after {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222330;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.2s ease, top 0.2s ease;
}
.field--name-field-slots-layout label:hover::after {
  opacity: 1;
  visibility: visible;
  top: -30px;
}

.paragraph--type--ds-destaque-banner {
  display: flex;
  flex-direction: column;
  gap: var(--ds-spacing-gap-18);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  padding: 5rem 1rem 5rem 1rem;
}
.paragraph--type--ds-destaque-banner .ds-destaque_banner {
  padding: 0 !important;
  margin-bottom: 1rem;
}
.paragraph--type--ds-destaque-banner .ds-destaque_banner .ds-destaque_banner__title {
  font-size: var(--ds-font-size-heading-sm);
  color: var(--ds-color-text-accent-brand-stronger);
}
.paragraph--type--ds-destaque-banner .ds-bg-media ~ .ds-media-content .ds-destaque_banner__title {
  color: var(--ds-color-text-neutral-soft);
}

.banner-divisor {
  border-radius: var(--ds-radious-radious-full);
  display: flex;
  align-items: center;
  padding-top: var(--ds-spacing-padding-18);
  padding-bottom: var(--ds-spacing-padding-18);
}
@media (max-width: 767px) {
  .banner-divisor {
    padding: var(--ds-spacing-padding-24);
    border-radius: var(--ds-radious-size-radious-24);
  }
}
.banner-divisor__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--ds-spacing-gap-32);
}
@media (max-width: 767px) {
  .banner-divisor__inner {
    flex-direction: column;
    text-align: center;
  }
}
.banner-divisor__icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.ds-theme-brand .banner-divisor__icon-wrapper svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ds-color-overlay-neutral-white-pure);
  -webkit-mask-image: linear-gradient(180deg, var(--ds-color-overlay-accent-brand-pure) 0%, var(--ds-color-overlay-accent-brand-zero) 100%);
  mask-image: linear-gradient(180deg, var(--ds-color-overlay-accent-brand-pure) 0%, var(--ds-color-overlay-accent-brand-zero) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.ds-theme-light .banner-divisor__icon-wrapper svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ds-color-overlay-accent-brand-pure);
  -webkit-mask-image: linear-gradient(180deg, var(--ds-color-overlay-accent-brand-pure) 0%, var(--ds-color-overlay-accent-brand-zero) 100%);
  mask-image: linear-gradient(180deg, var(--ds-color-overlay-accent-brand-pure) 0%, var(--ds-color-overlay-accent-brand-zero) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.banner-divisor__content {
  margin: 0;
}
.banner-divisor__action {
  flex-shrink: 0;
}
.banner-divisor__action .ds-icon {
  color: var(--ds-color-neutral-white);
}
@media (max-width: 767px) {
  .banner-divisor__action {
    margin-top: 1rem;
  }
}

.tabs-wrapper-component {
  margin-block: var(--ds-spacing-padding-18, 2rem);
}
.tabs-wrapper-component__header {
  margin-bottom: var(--ds-spacing-padding-40);
  color: var(--ds-color-text-neutral-heavy);
}
.tabs-wrapper-component__title {
  margin-bottom: var(--ds-spacing-padding-24);
  color: var(--ds-color-text-neutral-heavy);
}
.tabs-wrapper-component__description {
  color: var(--ds-color-text-neutral-secondary, inherit);
}
.tabs-wrapper-component__description p:last-child {
  margin-bottom: 0;
}

.tab-item-component__alt {
  width: 100%;
  margin: var(--ds-spacing-gap-16) 0 0;
  padding: 0 var(--ds-spacing-padding-8);
  font-family: var(--ds-font-family-body);
  font-size: 14px;
  font-style: italic;
  font-weight: var(--ds-font-weight-regular);
  line-height: var(--ds-line-height-snug);
  color: var(--ds-color-text-neutral-medium);
  text-align: center;
}

.titulo-texto-imagem .cg-content {
  padding-right: var(--ds-spacing-gap-120);
  padding-left: var(--ds-spacing-gap-120);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .titulo-texto-imagem .cg-content {
    padding-right: 0;
    padding-left: 0;
  }
}
.titulo-texto-imagem .cg-content__subtitle {
  color: var(--ds-color-text-neutral-black);
  font-family: var(--ds-font-family-heading);
  font-size: var(--ds-font-size-heading-sm);
  font-weight: var(--ds-font-weight-bold);
  line-height: var(--ds-line-height-snug);
  margin-bottom: 2rem;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .titulo-texto-imagem .cg-content__subtitle {
    font-size: var(--ds-font-size-heading-xsm);
  }
}
@media (max-width: 639px) {
  .titulo-texto-imagem .cg-content__subtitle {
    font-size: var(--ds-font-size-heading-xsm);
  }
}
.titulo-texto-imagem .cg-content__description {
  color: var(--ds-color-text-neutral-heavy);
  font-family: var(--ds-font-family-body);
  font-size: var(--ds-font-size-body-xl);
  line-height: var(--ds-line-height-relaxed);
  font-weight: var(--ds-font-weight-regular);
}
@media (min-width: 640px) and (max-width: 1023px) {
  .titulo-texto-imagem .cg-content__description {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-lg);
    line-height: var(--ds-line-height-relaxed);
    font-weight: var(--ds-font-weight-regular);
  }
}
@media (max-width: 639px) {
  .titulo-texto-imagem .cg-content__description {
    font-family: var(--ds-font-family-body);
    font-size: var(--ds-font-size-body-lg);
    line-height: var(--ds-line-height-relaxed);
    font-weight: var(--ds-font-weight-regular);
  }
}
.titulo-texto-imagem .cg-content__caption {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 0;
}
@media (max-width: 639px) {
  .titulo-texto-imagem .cg-content__caption {
    font-size: 12px;
    margin-top: 0.5rem;
  }
}
.titulo-texto-imagem .cg-content--with-image .cg-content__split {
  gap: 1.5rem;
}

.paragraphs-tabs {
  display: none !important;
}

/* ========================================================================= */
/* DS PARAGRAPHS BEHAVIOR: Media Background Wrapper                          */
/* ========================================================================= */
.ds-media-wrapper {
  position: relative;
  overflow: hidden;
}

.ds-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.ds-media-content {
  position: relative;
  z-index: 1;
}

/* ===========================
   Section settings
   =========================== */
.menu-open-no-scroll {
  overflow: hidden;
}

.backdrop {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 900;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.58);
}

.ds-section--full_width {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

body {
  min-height: 100vh;
}

.ds-section--spacing-pequeno {
  padding-block: 32px;
}

.ds-section--spacing-medio {
  padding-block: 64px;
}

.ds-section--spacing-grande {
  padding-block: 120px;
}

.ds-section--bg-none {
  background: transparent;
}

.ds-section--bg-none {
  background: transparent;
}

.ds-section--bg-surface {
  background-color: var(--ds-color-gray-100);
}

.ds-section--bg-muted {
  background-color: var(--ds-color-shape-neutral-muted);
}

.ds-section--bg-brand_primary {
  background-color: var(--ds-color-shape-accent-brand-default);
}

.ds-section--bg-brand_primary_darker {
  background-color: var(--ds-color-brand-primary-firjan-darker);
}

.ds-section--bg-brand_secondary {
  background-color: var(--ds-color-brand-secondary-firjan-II);
}

.ds-section--bg-brand_primary,
.ds-section--bg-brand_primary_darker,
.ds-section--bg-brand_secondary {
  color: var(--ds-color-gray-100);
}

.placeholder {
  background-color: transparent !important;
}

.ds-full-bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.ds-full-bleed-safe {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.ds-search-bar .ds-search-bar__icon--end .ds-icon {
  color: var(--ds-color-icon-neutral-heavy) !important;
}

.ds-search-bar .ds-listbox-item {
  background-color: transparent;
  color: var(--ds-color-text-neutral-heavy) !important;
}

.ds-search-bar .ds-listbox-item:hover {
  background-color: var(--ds-color-shape-accent-brand-soft) !important;
  color: var(--ds-color-text-accent-brand-default) !important;
}

.ds-menu li a {
  padding: 1rem;
  text-decoration: underline;
}

.container-content {
  padding-left: var(--ds-spacing-gap-120);
  padding-right: var(--ds-spacing-gap-120);
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
}
@media (max-width: 991px) {
  .container-content {
    padding-right: 0;
    padding-left: 0;
  }
}

.news-page-listing__filters input.button {
  display: none !important;
}

.paragraphs-browser-paragraph-type legend {
  inset-block-start: 0 !important;
}
