#wpadminbar {
  position: fixed;
}

#sv-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  font-family: var(--font-family-primary);
  position: fixed;
  left: 0;
  right: 0;
  top: var(--sv-header-top, 0px);
  width: 100%;
  z-index: 50;
  transition: var(--transition-default);
}

#sv-header .show-mobile {
  display: flex;
}

#sv-header a {
  color: inherit;
  text-decoration: none;
}

#sv-header:before {
  content: "";
  background: transparent;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: var(--transition-default);
}

body.sv-header-variant-solid #sv-header {
  background: transparent;
  backdrop-filter: blur(8px);
}

body.sv-sticky-active #sv-header {
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

body.sv-header-variant-solid #sv-header:before {
  content: none;
}

body.sv-header-variant-solid.sv-sticky-active #sv-header:before {
  content: "";
}

body.sv-sticky-active #sv-header:before,
body.sv-sticky-active.sv-header-variant-solid #sv-header:before {
  background: var(--color-gray-100);
}

body.sv-sticky-active.sv-sticky-hidden #sv-header {
  top: calc(var(--sv-header-top, 0px) - var(--sv-header-height, 72px));
}

body.sv-sticky-active.sv-sticky-visible #sv-header {
  top: var(--sv-header-top, 0px);
}

/* Mantém o overlay de busca ancorado ao viewport mesmo se o sticky estiver "hidden". */
body.sv-search-open.sv-sticky-active.sv-sticky-hidden #sv-header {
  top: var(--sv-header-top, 0px);
}

body:not(.sv-sticky-active) #sv-header {
  top: var(--sv-header-top, 0px);
  box-shadow: none;
}

body.admin-bar #sv-header {
  --sv-header-top: 46px;
}

body.sv-mobile-menu-backdrop-off #sv-header {
  backdrop-filter: none;
  transition: none;
}

#sv-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sv-header .sv-header__bar {
  padding: 0 16px;
}

#sv-header .sv-header__container {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  transition: var(--transition-default);
}

body.sv-sticky-active #sv-header .sv-header__container {
  min-height: 72px;
}

#sv-header .sv-header__container .sv-header__left {
  max-width: 110px;
  display: flex;
}

#sv-header .sv-header__logo-link {
  display: inline-grid;
  line-height: 0;
}

#sv-header .sv-header__logo-image {
  grid-area: 1 / 1;
  display: block;
  max-width: 100%;
  height: auto;
  transition: var(--transition-default);
}

#sv-header .sv-header__logo-image--default {
  opacity: 1;
}

#sv-header .sv-header__logo-image--sticky {
  opacity: 0;
  pointer-events: none;
}

body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__logo-image--default {
  opacity: 0;
  pointer-events: none;
}

body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__logo-image--sticky {
  opacity: 1;
  pointer-events: auto;
}

#sv-header .sv-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

#sv-header .sv-header__cta {
  transition: var(--transition-default);
  white-space: nowrap;
  display: none;
  min-height: 56px;
  max-height: 56px;
  padding: 14px 20px;
  justify-content: center;
  align-items: center;
  color: var(--color-gray-700);
  font-size: var(--px-16);
  font-weight: 500;
  line-height: 1.5em;
  position: relative;
}

#sv-header .sv-header__cta:hover {
  color: var(--color-blue-400);
}

#sv-header .sv-header__cta::before {
  content: "";
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}

body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__cta::before {
  background: transparent;
  border: none;
  backdrop-filter: none;
}

#sv-header .sv-header__cta::after {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 64px;
  border: 1px solid var(--color-gray-100);
  background: var(--color-white);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

#sv-header .sv-header__search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--color-gray-700);
  transition: var(--transition-default);
  display: none;
}

#sv-header .sv-header__search-toggle::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 64px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: transparent;
  transition: var(--transition-default);
}

#sv-header .sv-header__search-toggle:hover::before {
  background: rgba(255, 255, 255, 0.15);
}

body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__search-toggle:hover::before {
  background: transparent;
}

#sv-header .sv-header__search-toggle img {
  transition: var(--transition-default);
  filter: none;
}

body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__search-toggle img {
  filter: brightness(0) saturate(100%);
}

#sv-header .sv-header__mobile-toggle-container {
  display: flex;
  padding: 4px;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
}

#sv-header .sv-header__mobile-toggle {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-default);
  height: 44px;
  width: 44px;
  justify-content: center;
  align-items: center;
  padding: 0;
}

#sv-header .sv-header__mobile-toggle:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(0, 0, 0, 0);
}

#sv-header .sv-header__hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

#sv-header .sv-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-default);
}

body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__hamburger span {
  background: var(--color-gray-900);
}

/* Desktop nav */
#sv-header .sv-header__nav .sv-header__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

#sv-header .sv-header__nav .sv-header__menu > .menu-item > a {
  color: var(--color-gray-900);
  font-size: var(--px-14);
  font-weight: 600;
  line-height: 1;
  padding: 10px 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#sv-header .sv-header__nav .sv-header__menu > .menu-item-has-children > a::after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 5px;
  opacity: 1;
}

/* Esconder CTA quando ele estiver dentro do menu (renderizamos separado). */
#sv-header .sv-header__nav .sv-header__menu > .menu-item.is-header-cta {
  display: none;
}

/* Dropdown padrão desktop (submenu não-mega). */
#sv-header .sv-header__nav .sv-header__menu > .menu-item-has-children {
  position: relative;
}

#sv-header .sv-header__nav .sv-header__menu > .menu-item-has-children::before {
  content: "";
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 45px;
  height: 45px;
  background: url("../../images/menu-parent-indicator.svg") center / contain no-repeat;
  transform: translate(-50%, -16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 61;
  transition: all .1s ease-out;
  transition-delay: 0s, 0s, 0s;
}

#sv-header .sv-header__nav .sv-header__menu > .menu-item-has-children:hover::before,
#sv-header .sv-header__nav .sv-header__menu > .menu-item-has-children:focus-within::before {
  opacity: 1;
  visibility: visible;
  transition-duration: .1s;
  transition-delay: 135ms;
}

#sv-header .sv-header__nav .sv-header__menu > .menu-item-has-children > .sub-menu {
  display: block;
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-gray-100);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-default);
}

#sv-header .sv-header__nav .sv-header__menu > .menu-item-has-children > .sub-menu:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 27px;
}

#sv-header .sv-header__nav .sv-header__menu > .menu-item-has-children:hover > .sub-menu,
#sv-header .sv-header__nav .sv-header__menu > .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Desktop search */
#sv-header .sv-header__search {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1100;
  background: rgba(3, 11, 20, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-default);
}

#sv-header .sv-header__search.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: var(--transition-default);
}

#sv-header .sv-header__search .sv-header__container {
  position: relative;
  width: 100%;
  max-width: 908px;
  min-height: 0;
  margin: 0;
  display: block;
  justify-content: center;
}

#sv-header .sv-header__search .sv-search-form {
  width: 100%;
  padding: 24px;
  margin: 0;
  border: 1px solid var(--color-gray-100);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

#sv-header .sv-header__search .sv-search-form__label {
  margin-bottom: 20px;
  font-size: var(--px-20);
}

#sv-header .sv-search-form__field {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--color-gray-200);
    border-radius: 10px;
    background: #f6f8fb;
    min-height: 52px;
    padding: 10px 12px 10px 44px;
}

#sv-header .sv-header__search-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border: none;
  background: transparent;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  border-radius: 64px;
}

#sv-header .sv-header__search-close:hover,
#sv-header .sv-header__search-close:focus-visible {
  border-color: var(--color-gray-300);
  background: var(--color-gray-50);
  outline: none;
}

#sv-header .sv-header__search-close img {
  display: block;
}

/* Mobile drawer */
#sv-header .sv-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
}

/* Quando logado, respeita a altura da admin bar do WordPress. */
body.admin-bar #sv-header .sv-mobile-drawer {
  top: 46px;
}

@media screen and (min-width: 783px) {
  body.admin-bar #sv-header {
    --sv-header-top: 32px;
  }

  body.admin-bar #sv-header .sv-mobile-drawer {
    top: 32px;
  }
}

#sv-header .sv-mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: var(--transition-default);
}

#sv-header .sv-mobile-drawer__panel {
  position: relative;
  width: min(330px, 100vw);
  height: 100%;
  background: var(--color-white);
  transform: translateX(100%);
  transition: var(--transition-default);
  display: flex;
  flex-direction: column;
}

#sv-header .sv-mobile-drawer__views {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

#sv-header .sv-mobile-drawer__view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: var(--transition-default);
}

#sv-header .sv-mobile-drawer__view.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

#sv-header .sv-mobile-drawer.is-open .sv-mobile-drawer__overlay {
  opacity: 1;
}

#sv-header .sv-mobile-drawer.is-open .sv-mobile-drawer__panel {
  transform: translateX(0);
}

body.sv-mobile-menu-open {
  overflow: hidden;
}

#sv-header .sv-mobile-drawer__close-row {
  display: flex;
  justify-content: flex-end;
  min-height: 44px;
  padding: 20px 20px 4px 20px;
}

#sv-header .sv-mobile-drawer__context {
  transition: var(--transition-default);
  display: flex;
  padding: 16px;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--color-text);
  font-size: var(--px-18);
  font-weight: 700;
  line-height: 1.5em;
}

#sv-header .sv-mobile-drawer__title {
  font-size: var(--px-16);
  font-weight: 700;
  color: var(--color-gray-900);
  text-align: center;
}

#sv-header .sv-mobile-drawer__back,
#sv-header .sv-mobile-drawer__close {
  border: 0;
  background: transparent;
  padding: 11px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--color-gray-800);
  font-size: 20px;
  line-height: 1;
  transition: var(--transition-default);
  border-radius: 64px;
  border: 1px solid rgba(0, 0, 0, 0);
}

#sv-header .sv-mobile-drawer__back:active,
#sv-header .sv-mobile-drawer__back:focus-visible,
#sv-header .sv-mobile-drawer__close:active,
#sv-header .sv-mobile-drawer__close:focus-visible {
  background: rgba(0, 0, 0, 0.1);
  outline: none;
}

#sv-header .sv-mobile-drawer__close-icon {
  display: block;
  width: 24px;
  height: 24px;
}

#sv-header .sv-mobile-drawer__back-icon {
  display: block;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

#sv-header .sv-mobile-drawer__content {
  --sv-mobile-drawer-padding: 16px;
  padding: var(--sv-mobile-drawer-padding);
  padding-bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 16px;
  border-top: 1px solid var(--color-gray-200);
  justify-content: space-between;
}

#sv-header .sv-mobile-drawer__content.root {
  padding-bottom: 32px;
}

#sv-header .sv-search-form__label {
  color: var(--color-text);
  font-size: var(--px-18);
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 20px;
}

#sv-header .sv-search-form__field-container {
  display: flex;
  flex-direction: column;
}

#sv-header .sv-search-form {
  display: flex;
  flex-direction: column;
  margin: 0;
  transition: var(--transition-default);
  padding: 0 16px 24px 16px;
}

#sv-header .sv-search-form__field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  background: #f6f8fb;
  min-height: 52px;
  padding: 10px 12px 10px 44px;
}

#sv-header .sv-search-form__field:focus-within {
  border-color: var(--color-gray-300);
}

#sv-header .sv-search-form__icon {
  position: absolute;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-600);
}

#sv-header .sv-search-form__icon img {
  display: block;
  width: 20px;
  height: 20px;
}

#sv-header .sv-search-form__field input {
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: var(--px-14);
  color: var(--color-gray-900);
  outline: none;
}

#sv-header .sv-search-form__field input[type="search"] {
  -webkit-appearance: none;
  appearance: none;
}

#sv-header .sv-search-form__field input[type="search"]::-webkit-search-decoration,
#sv-header .sv-search-form__field input[type="search"]::-webkit-search-cancel-button,
#sv-header .sv-search-form__field input[type="search"]::-webkit-search-results-button,
#sv-header .sv-search-form__field input[type="search"]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}

#sv-header .sv-search-form__field input[type="search"]::-ms-clear,
#sv-header .sv-search-form__field input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

#sv-header .sv-search-form__clear {
  position: absolute;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  background: #fff;
  color: var(--color-gray-700);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  transition: var(--transition-default);
}

#sv-header .sv-search-form__clear img {
  display: block;
  width: 18px;
  height: 18px;
}

#sv-header .sv-search-form__clear.is-hidden {
  opacity: 0;
  transform: scale(0.92);
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-default);
}

#sv-header .sv-search-form__submit {
  border: 0;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: var(--px-14);
  width: 100%;
  max-height: 56px;
  opacity: 1;
  overflow: hidden;
  visibility: visible;
  transition: var(--transition-default);
  margin-top: 20px;
}

#sv-header .sv-search-form__submit.is-hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-default);
  margin-top: 0;
}

#sv-header .sv-mobile-drawer__menu {
  height: 100%;
}

#sv-header .sv-mobile-nav {
  position: relative;
  overflow: hidden;
  height: 100%;
}

#sv-header .sv-mobile-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#sv-header .sv-mobile-nav > ul > .menu-item-has-children > .sub-menu {
  display: none;
}

#sv-header .sv-mobile-panels {
  position: relative;
  overflow: hidden;
  height: 100%;
}

#sv-header .sv-mobile-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-default);
  will-change: opacity;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 32px;
}

#sv-header .sv-mobile-panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#sv-header .sv-mobile-panel.is-prev {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#sv-header .sv-mobile-nav > ul > .menu-item-has-children > a::after,
#sv-header .sv-mobile-panel .menu-item-has-children > a::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../../images/chevron-right-1.svg") center / contain no-repeat;
  margin-left: auto;
}

#sv-header .sv-mobile-nav > ul > .menu-item,
#sv-header .sv-mobile-panel .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

#sv-header .sv-mobile-nav > ul > .menu-item > a,
#sv-header .sv-mobile-panel .menu-item > a {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
  padding: 14px 20px;
  gap: 8px;
  border-radius: 64px;
  border: 1px solid rgba(0, 0, 0, 0);
  color: var(--color-gray-900);
  font-size: var(--px-16);
  font-weight: 500;
  line-height: 1.5em;
  transition: var(--transition-default);
}

@media (hover: hover) and (pointer: fine) {
  #sv-header .sv-mobile-nav > ul > .menu-item > a:hover,
  #sv-header .sv-mobile-panel .menu-item > a:hover {
    border-color: rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0.1);
  }
}

#sv-header .sv-mobile-nav > ul > .menu-item > a:active,
#sv-header .sv-mobile-nav > ul > .menu-item > a:focus-visible,
#sv-header .sv-mobile-panel .menu-item > a:active,
#sv-header .sv-mobile-panel .menu-item > a:focus-visible {
  border-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.1);
  outline: none;
}

#sv-header .menu-item:is(.has-menu-item-icon, .has-menu-item-description) > a {
  display: flex;
  padding: 8px;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  transition: var(--transition-default);
  background: var(--color-white);
}

#sv-header .menu-item:is(.has-menu-item-icon, .has-menu-item-description) > a:hover,
#sv-header .menu-item:is(.has-menu-item-icon, .has-menu-item-description) > a:focus-visible {
  background: linear-gradient(90deg, #bfffd2 0%, #c8fffc 42.31%, #fff 100%);
}

#sv-header .menu-item.has-menu-item-icon > a .sv-menu-item__icon {
  display: flex;
  padding: 12px;
  border-radius: 8px;
  background: var(--color-green-50);
  transition: var(--transition-default);
}

#sv-header .menu-item.has-menu-item-icon > a:hover .sv-menu-item__icon,
#sv-header .menu-item.has-menu-item-icon > a:focus-visible .sv-menu-item__icon {
  border-radius: 8px;
  background: var(--color-green-100);
}

#sv-header .menu-item:is(.has-menu-item-icon, .has-menu-item-description) > a .sv-menu-item__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1 0 0;
}

#sv-header .menu-item:is(.has-menu-item-icon, .has-menu-item-description) > a .sv-menu-item__text .sv-menu-item__label {
  font-weight: 700;
}

#sv-header .menu-item:is(.has-menu-item-icon, .has-menu-item-description) > a .sv-menu-item__text .sv-menu-item__description {
  color: var(--color-gray-600);
  font-size: var(--px-14);
  font-weight: 400;
}

#sv-header .sv-mobile-cta {
  display: inline-flex;
  min-height: 64px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 64px;
  border: 1px solid var(--color-gray-100);
  background: var(--color-white);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: var(--color-gray-700);
  font-size: var(--px-18);
  font-weight: 500;
  line-height: 1.5em;
  transition: var(--transition-default);
}

#sv-header .sv-mobile-cta:hover,
#sv-header .sv-mobile-cta:focus-visible {
  border-color: var(--color-gray-200);
  color: var(--color-blue-400);
  outline: none;
}

@media (min-width: 768px) {
  #sv-header .sv-header__bar {
    padding: 0 24px;
  }
}

@media (min-width: 1025px) {
  #sv-header .sv-header__bar {
    padding: 0 64px;
  }

  #sv-header .sv-header__container {
    min-height: 112px;
    gap: 0;
    justify-content: flex-end;
  }

  #sv-header .sv-search-form__field-container {
    position: relative;
  }

  #sv-header .sv-header__search .sv-search-form {
    background: transparent;
    border: none;
    min-height: 180px;
    justify-content: center;
  }

  #sv-header .sv-search-form__field {
    min-height: 72px;
    padding: 10px 20px 10px 54px;
    border: 1px solid var(--color-gray-300);
    background: var(--color-gray-50);
  }

  #sv-header .sv-header__search .sv-header__container {
    position: relative;
  }

  #sv-header .sv-header__search .sv-header__container::before {
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    border-radius: 20px;
  }

  #sv-header .sv-header__search .sv-header__container::after {
    content: "";
    position: absolute;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border: 1px solid var(--color-gray-100);
    background: var(--color-white);
    border-radius: var(--Border-Radius-Large, 16px);
  }

  #sv-header .sv-search-form__field input {
    padding-right: 202px;
    color: var(--color-gray-500);
    font-size: var(--px-18);
    line-height: 1.5em;
  }

  #sv-header .sv-search-form__icon img {
    width: 26px;
    height: 26px;
  }

  #sv-header .sv-search-form__clear {
    right: 156px;
  }

  #sv-header .sv-search-form__submit {
    margin: 0;
    position: absolute;
    top: 50%;
    right: 8px;
    max-width: 130px;
    transform: translateY(-50%);
    height: 56px;
    min-height: var(--height-button-input-medium, 56px);
    padding: 14px 20px;
    border-radius: 64px;
    box-shadow: 0 2px 1px -1.5px var(--color-blue-300) inset;
    border: 1px solid var(--color-primary);
    font-size: 16px;
  }

  #sv-header .sv-header__container .sv-header__left {
    max-width: 126px;
    display: flex;
    margin-right: auto;
  }

  #sv-header .sv-header__nav.show-desktop {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 4px;
    margin-right: 6.3%;
    flex-shrink: 0;
  }

  body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__nav.show-desktop {
    background: transparent;
    border-color: transparent !important;
    backdrop-filter: none;
  }

  #sv-header .sv-header__nav .sv-header__menu > .menu-item > a {
    color: var(--color-white);
    font-size: var(--px-15);
    font-weight: 500;
    line-height: 1.5em;
    display: inline-flex;
    min-height: 56px;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 64px;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: var(--transition-default);
  }

  body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__nav .sv-header__menu > .menu-item > a {
    color: var(--color-gray-900);
  }

  #sv-header .sv-header__nav .sv-header__menu > .menu-item > a:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__nav .sv-header__menu > .menu-item > a:hover {
    background: rgba(0, 0, 0, 0.1);
  }

  #sv-header .sv-header__search-toggle {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__search-toggle {
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  body:is(.sv-sticky-active, .sv-header-variant-solid) #sv-header .sv-header__search-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
  }

  #sv-header .sv-header__mobile-toggle-container {
    display: none;
  }

  #sv-header .sv-header__cta {
    display: flex;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  #sv-header .sv-header__container {
    justify-content: space-between;
    gap: 8px;
  }

  #sv-header .sv-header__container .sv-header__left {
    margin: 0;
  }

  #sv-header .sv-header__nav.show-desktop {
    margin-right: 0;
  }

  #sv-header .sv-header__nav .sv-header__menu > .menu-item > a {
    padding: 14px 14px;
  }

  #sv-header .sv-header__right {
    gap: 8px;
  }
}
