/* GETWINCO_HEADER_V67_CSS */

:root {
  --gw50-navy: #071934;
  --gw50-blue: #0865f5;
  --gw50-line: #dbe5f2;
  --gw50-surface: rgba(255, 255, 255, .97);
}

/* Reset isolado */

.gw50-header,
.gw50-header *,
.gw50-header *::before,
.gw50-header *::after {
  box-sizing: border-box;
}

.gw50-header {
  position: sticky;
  top: 0;
  z-index: 5000;

  width: 100%;
  margin: 0;
  padding: 0;

  border-bottom: 1px solid var(--gw50-line);

  background: var(--gw50-surface);

  box-shadow:
    0 8px 28px rgba(7, 31, 75, .06);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gw50-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;

  margin: 0 auto;
  padding: 0;
}

.gw50-brand {
  min-width: 0;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--gw50-navy);
  text-decoration: none;

  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.gw50-brand-logo {
  width: 41px;
  height: 41px;

  flex: 0 0 41px;

  display: block;
  object-fit: contain;

  border-radius: 11px;
}

.gw50-brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gw50-nav {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.gw50-nav a {
  position: relative;

  color: #35425b;
  text-decoration: none;

  font-size: 13px;
  font-weight: 750;
  line-height: 1;

  transition: color .18s ease;
}

.gw50-nav a > span {
  display: block;
}

.gw50-nav a > small,
.gw50-nav-head,
.gw50-sheet-close {
  display: none;
}

.gw50-nav a:not(.gw50-product-mobile)::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;

  height: 2px;

  border-radius: 999px;

  background: var(--gw50-blue);

  transform: scaleX(0);
  transition: transform .18s ease;
}

.gw50-nav a:hover {
  color: var(--gw50-blue);
}

.gw50-nav a:hover::after {
  transform: scaleX(1);
}

.gw50-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.gw50-product-desktop,
.gw50-login {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 15px;

  border: 1px solid rgba(7, 25, 52, 0.16);
  border-radius: 11px;

  color: var(--gw50-navy);
  background: #f7f9fc;

  text-decoration: none;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;

  white-space: nowrap;
}

.gw50-product-desktop:hover,
.gw50-login:hover {
  border-color: rgba(8, 101, 245, .34);
  color: var(--gw50-blue);
}

.gw50-product-mobile,
.gw50-toggle {
  display: none;
}

/* Mobile */

@media (max-width: 820px) {
  body.gw50-menu-open {
    overflow: hidden;
  }

  body.gw50-menu-open::before {
    content: "";

    position: fixed;
    z-index: 4900;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(5, 18, 44, .48);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .gw50-header {
    position: relative;
    min-height: 64px;
    box-shadow: none;
  }

  .gw50-shell {
    width: min(100% - 22px, 1180px);
    min-height: 64px;

    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .gw50-brand {
    font-size: 18px;
  }

  .gw50-brand-logo {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .gw50-actions {
    gap: 7px;
  }

  .gw50-product-desktop {
    display: none;
  }

  .gw50-login {
    min-width: 69px;
    min-height: 40px;
    padding: 0 13px;
  }

  .gw50-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    margin: 0;
    padding: 0;

    border: 1px solid #d6e1ef;
    border-radius: 11px;

    color: var(--gw50-navy);
    background: #ffffff;

    cursor: pointer;
  }

  .gw50-toggle span {
    width: 18px;
    height: 2px;

    display: block;

    border-radius: 999px;
    background: currentColor;

    transition:
      transform .2s ease,
      opacity .2s ease;
  }

  .gw50-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .gw50-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .gw50-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .gw50-nav {
    position: fixed;
    z-index: 5100;

    top: auto;
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));

    width: auto;
    max-height: min(620px, calc(100dvh - 20px));

    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;

    overflow-y: auto;

    margin: 0;
    padding: 12px;

    border: 1px solid var(--gw50-line);
    border-radius: 25px;

    background: rgba(255, 255, 255, .99);

    box-shadow:
      0 30px 90px rgba(3, 16, 43, .34),
      0 2px 10px rgba(3, 16, 43, .12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(28px) scale(.985);
    transform-origin: bottom center;

    transition:
      opacity .18s ease,
      visibility .18s ease,
      transform .18s ease;
  }

  .gw50-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 7px 12px 9px;
  }

  .gw50-nav-head > div {
    min-width: 0;
  }

  .gw50-nav-head span,
  .gw50-nav-head small {
    display: block;
  }

  .gw50-nav-head span {
    color: var(--gw50-navy);
    font-size: 15px;
    font-weight: 850;
    letter-spacing: -.02em;
  }

  .gw50-nav-head small {
    margin-top: 3px;
    color: #728098;
    font-size: 11px;
    line-height: 1.35;
  }

  .gw50-sheet-close {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    padding: 0 0 2px;
    border: 1px solid #dce5f1;
    border-radius: 50%;
    color: #34435d;
    background: #f5f8fc;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
  }

  .gw50-nav.gw50-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0) scale(1);
  }

  .gw50-nav a {
    width: 100%;
    min-height: 58px;

    display: grid;
    align-content: center;
    gap: 3px;

    padding: 10px 46px 10px 14px;

    border: 0;
    border-radius: 11px;

    color: #172743;
    background: transparent;

    font-size: 14px;
    text-align: left;
  }

  .gw50-nav a:not(.gw50-product-mobile)::before {
    content: "\2192";
    position: absolute;
    top: 50%;
    right: 16px;
    color: #9ba9bc;
    font-size: 18px;
    transform: translateY(-50%);
  }

  .gw50-nav a > span {
    font-weight: 820;
  }

  .gw50-nav a > small {
    display: block;
    color: #74839a;
    font-size: 11px;
    font-weight: 550;
    line-height: 1.35;
  }

  .gw50-nav a::after {
    display: none;
  }

  .gw50-nav a:hover,
  .gw50-nav a:active {
    color: var(--gw50-blue);
    background: #eef5ff;
  }

  .gw50-product-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;

    min-height: 52px !important;
    margin-top: 6px;
    padding: 0 16px !important;

    color: #ffffff !important;

    background:
      linear-gradient(
        135deg,
        #0865f5,
        #0750cf
      ) !important;
  }

  .gw50-product-mobile > span {
    font-weight: 850;
  }
}

@media (max-width: 390px) {
  .gw50-shell {
    width: min(100% - 18px, 1180px);
    gap: 6px;
  }

  .gw50-brand {
    font-size: 16px;
  }

  .gw50-brand-logo {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .gw50-login {
    min-width: 63px;
    padding: 0 10px;
  }

  .gw50-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
