.elementor-17 .elementor-element.elementor-element-d680eae{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:stretch;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-17 .elementor-element.elementor-element-da8c59c{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-17 .elementor-element.elementor-element-90a52b1 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-17 .elementor-element.elementor-element-da8c59c{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-90a52b1 *//* =========================================================
   HEADER VALORE RH
========================================================= */

.vr-header {
  --vr-blue: #0d2845;
  --vr-blue-dark: #061a2f;
  --vr-blue-soft: #173b61;
  --vr-gold: #daa437;
  --vr-gold-light: #edbd59;
  --vr-white: #ffffff;
  --vr-text: #10233b;
  --vr-muted: #667386;
  --vr-border: rgba(13, 40, 69, 0.12);
  --vr-header-height: 82px;
  --vr-container: 1280px;
  --vr-ease: cubic-bezier(0.16, 1, 0.3, 1);

  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  width: 100%;

  font-family: "Inter", sans-serif;
}


/* =========================================================
   RESET LOCAL
========================================================= */

.vr-header,
.vr-header *,
.vr-header *::before,
.vr-header *::after {
  box-sizing: border-box;
}

.vr-header a {
  text-decoration: none;
}

.vr-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vr-header button {
  border: 0;
  padding: 0;
  font-family: inherit;
  background: transparent;
  cursor: pointer;
}

body.vr-menu-open {
  overflow: hidden;
}


/* =========================================================
   CORREÇÕES PARA ELEMENTOR
========================================================= */

.elementor-location-header,
.elementor-location-header .elementor-element,
.elementor-location-header .elementor-widget,
.elementor-location-header .elementor-widget-container {
  width: 100%;
  max-width: 100%;
}

.elementor-location-header .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
}


/* =========================================================
   BARRA PRINCIPAL
========================================================= */

.vr-header__bar {
  width: 100%;
  height: var(--vr-header-height);

  background: rgba(6, 26, 47, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    height 0.3s var(--vr-ease),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.vr-header__bar.is-scrolled {
  height: 72px;

  background: rgba(6, 26, 47, 0.99);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08);
}

.vr-header__container {
  width: min(
    calc(100% - 40px),
    var(--vr-container)
  );

  height: 100%;

  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


/* =========================================================
   LOGO
========================================================= */

.vr-header__logo {
  position: relative;

  display: inline-flex;
  align-items: center;

  flex-shrink: 0;

  width: 190px;
  max-width: 190px;
}

.vr-header__logo img {
  display: block;

  width: 100%;
  height: auto;

  max-height: 58px;

  object-fit: contain;
  object-position: left center;
}


/* =========================================================
   MENU DESKTOP
========================================================= */

.vr-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1;

  min-width: 0;
  height: 100%;
}

.vr-nav__list {
  display: flex;
  align-items: center;

  height: 100%;
}

.vr-nav__item {
  position: relative;

  display: flex;
  align-items: center;

  height: 100%;
}

.vr-nav__link {
  position: relative;

  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  padding: 0 12px;

  color: rgba(255, 255, 255, 0.82);

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.vr-nav__link::after {
  content: "";

  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;

  height: 2px;

  background: var(--vr-gold);

  transform: scaleX(0);
  transform-origin: right center;

  transition: transform 0.25s var(--vr-ease);
}

.vr-nav__link:hover,
.vr-nav__link:focus-visible,
.vr-nav__link.is-active,
.vr-nav__dropdown-toggle.is-active,
.vr-nav__item.is-open > .vr-nav__link {
  color: var(--vr-white);
}

.vr-nav__link:hover::after,
.vr-nav__link:focus-visible::after,
.vr-nav__link.is-active::after,
.vr-nav__dropdown-toggle.is-active::after,
.vr-nav__item.is-open > .vr-nav__link::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.vr-nav__dropdown-toggle {
  appearance: none;
}

.vr-nav__chevron {
  width: 14px;
  height: 14px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  opacity: 0.7;

  transition: transform 0.25s ease;
}

.vr-nav__item.is-open .vr-nav__chevron,
.vr-nav__item--dropdown:hover .vr-nav__chevron {
  transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN DE SOLUÇÕES
========================================================= */

.vr-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;

  width: min(760px, calc(100vw - 40px));

  padding: 24px;

  background: var(--vr-white);
  border: 1px solid var(--vr-border);
  border-radius: 18px;

  box-shadow:
    0 28px 80px rgba(6, 26, 47, 0.22),
    0 8px 24px rgba(6, 26, 47, 0.12);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform:
    translateX(-50%)
    translateY(12px);

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.3s var(--vr-ease);
}

.vr-dropdown::before {
  content: "";

  position: absolute;
  top: -14px;
  right: 0;
  left: 0;

  height: 14px;
}

.vr-nav__item--dropdown:hover .vr-dropdown,
.vr-nav__item.is-open .vr-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform:
    translateX(-50%)
    translateY(0);
}

.vr-dropdown__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 24px;

  padding: 0 4px 18px;

  border-bottom: 1px solid var(--vr-border);
}

.vr-dropdown__header strong {
  max-width: 430px;

  color: var(--vr-blue);

  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.vr-dropdown__eyebrow {
  color: var(--vr-gold);

  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vr-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 6px;

  padding-top: 14px;
}

.vr-dropdown__item {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  padding: 13px;

  border-radius: 12px;

  transition:
    background 0.2s ease,
    transform 0.25s var(--vr-ease);
}

.vr-dropdown__item:hover,
.vr-dropdown__item:focus-visible,
.vr-dropdown__item.is-active {
  background: rgba(218, 164, 55, 0.09);
  transform: translateY(-2px);
}

.vr-dropdown__item.is-active {
  box-shadow: inset 3px 0 0 var(--vr-gold);
}

.vr-dropdown__icon {
  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border: 1px solid rgba(218, 164, 55, 0.42);
  border-radius: 10px;

  color: var(--vr-gold);

  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.vr-dropdown__item strong {
  display: block;

  color: var(--vr-blue);

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.vr-dropdown__item small {
  display: block;

  margin-top: 3px;

  color: var(--vr-muted);

  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.45;
}

.vr-dropdown__all {
  min-height: 44px;

  margin-top: 12px;
  padding: 11px 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 11px;

  background: var(--vr-blue);

  color: var(--vr-white);

  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  font-weight: 600;

  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.vr-dropdown__all:hover,
.vr-dropdown__all:focus-visible {
  background: var(--vr-blue-soft);
}

.vr-dropdown__all.is-active {
  box-shadow: inset 3px 0 0 var(--vr-gold);
}

.vr-dropdown__all svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: var(--vr-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.2s ease;
}

.vr-dropdown__all:hover svg,
.vr-dropdown__all:focus-visible svg {
  transform: translateX(4px);
}


/* =========================================================
   AÇÕES E CTA
========================================================= */

.vr-header__actions {
  display: flex;
  align-items: center;

  gap: 10px;

  flex-shrink: 0;
}

.vr-header__cta {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 10px 18px;

  border: 1px solid var(--vr-gold);
  border-radius: 8px;

  background:
    linear-gradient(
      135deg,
      var(--vr-gold-light),
      var(--vr-gold)
    );

  color: var(--vr-blue-dark);

  box-shadow:
    0 8px 24px rgba(218, 164, 55, 0.19);

  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;

  transition:
    transform 0.25s var(--vr-ease),
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.vr-header__cta:hover,
.vr-header__cta:focus-visible {
  transform: translateY(-2px);

  filter: brightness(1.04);

  box-shadow:
    0 12px 28px rgba(218, 164, 55, 0.28);
}

.vr-header__cta svg {
  width: 17px;
  height: 17px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.2s ease;
}

.vr-header__cta:hover svg,
.vr-header__cta:focus-visible svg {
  transform: translateX(3px);
}


/* =========================================================
   HAMBURGER
========================================================= */

.vr-hamburger {
  width: 46px;
  height: 46px;

  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 9px !important;

  background: rgba(255, 255, 255, 0.06) !important;
}

.vr-hamburger span {
  display: block;

  width: 21px;
  height: 2px;

  border-radius: 20px;

  background: var(--vr-white);

  transition:
    transform 0.28s var(--vr-ease),
    opacity 0.2s ease;
}

.vr-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vr-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.vr-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.vr-mobile {
  position: fixed;
  top: var(--vr-header-height);
  right: 0;
  bottom: 0;
  left: 0;

  overflow-y: auto;
  overscroll-behavior: contain;

  background: var(--vr-blue-dark);

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-12px);

  transition:
    opacity 0.24s ease,
    visibility 0.24s ease,
    transform 0.3s var(--vr-ease);
}

.vr-header__bar.is-scrolled + .vr-mobile {
  top: 72px;
}

.vr-mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}

.vr-mobile__content {
  width: min(calc(100% - 40px), 620px);

  margin-inline: auto;
  padding: 18px 0 60px;
}

.vr-mobile__link,
.vr-mobile__toggle {
  width: 100%;
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 15px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;

  color: var(--vr-white) !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.3;
  text-align: left;

  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.vr-mobile__link:hover,
.vr-mobile__link:focus-visible,
.vr-mobile__toggle:hover,
.vr-mobile__toggle:focus-visible,
.vr-mobile__link.is-active,
.vr-mobile__toggle.is-active {
  color: var(--vr-gold-light) !important;
}

.vr-mobile__link.is-active,
.vr-mobile__toggle.is-active {
  padding-left: 10px;
}

.vr-mobile__toggle svg {
  width: 17px;
  height: 17px;

  fill: none;
  stroke: var(--vr-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.25s ease;
}

.vr-mobile__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.vr-mobile__submenu {
  display: grid;

  max-height: 0;

  overflow: hidden;

  padding-left: 14px;

  opacity: 0;

  transition:
    max-height 0.4s var(--vr-ease),
    opacity 0.25s ease;
}

.vr-mobile__submenu.is-open {
  max-height: 620px;
  opacity: 1;
}

.vr-mobile__submenu a {
  display: block;

  padding: 12px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  color: rgba(255, 255, 255, 0.7);

  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 450;
  line-height: 1.4;

  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.vr-mobile__submenu a:hover,
.vr-mobile__submenu a:focus-visible,
.vr-mobile__submenu a.is-active {
  color: var(--vr-gold-light);
}

.vr-mobile__submenu a.is-active {
  padding-left: 8px;
  font-weight: 700;
}

.vr-mobile__submenu .vr-mobile__submenu-all {
  color: var(--vr-gold);
  font-weight: 650;
}

.vr-mobile__submenu .vr-mobile__submenu-all.is-active {
  color: var(--vr-gold-light);
}

.vr-mobile__cta {
  min-height: 52px;

  margin-top: 26px;
  padding: 12px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  border-radius: 8px;

  background:
    linear-gradient(
      135deg,
      var(--vr-gold-light),
      var(--vr-gold)
    );

  color: var(--vr-blue-dark);

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.vr-mobile__cta svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   FOCO E ACESSIBILIDADE
========================================================= */

.vr-header a:focus-visible,
.vr-header button:focus-visible {
  outline: 2px solid var(--vr-gold-light);
  outline-offset: 4px;
}


/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1180px) {

  .vr-header__container {
    width: min(calc(100% - 32px), var(--vr-container));
    gap: 14px;
  }

  .vr-header__logo {
    width: 165px;
    max-width: 165px;
  }

  .vr-nav__link {
    padding-inline: 8px;
    font-size: 12px;
  }

  .vr-header__cta {
    padding-inline: 14px;
    font-size: 11.5px;
  }

}


@media (max-width: 1024px) {

  .vr-nav {
    display: none;
  }

  .vr-header__cta {
    display: none;
  }

  .vr-hamburger {
    display: flex;
  }

  .vr-mobile[hidden] {
    display: block;
  }

}


@media (max-width: 767px) {

  .vr-header {
    --vr-header-height: 72px;
  }

  .vr-header__bar.is-scrolled {
    height: 68px;
  }

  .vr-header__container {
    width: calc(100% - 28px);
  }

  .vr-header__logo {
    width: 150px;
    max-width: 150px;
  }

  .vr-header__logo img {
    max-height: 48px;
  }

  .vr-hamburger {
    width: 43px;
    height: 43px;
  }

  .vr-header__bar.is-scrolled + .vr-mobile {
    top: 68px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .vr-header *,
  .vr-header *::before,
  .vr-header *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}/* End custom CSS */