@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;1,14..32,400&display=swap");
@import url("theme-light.css");

:root {
  --nav-white: #ffffff;
  --nav-purple: #8b5cf6;
  --nav-highlight: #c084fc;
  --nav-pill-bg: linear-gradient(-7.68934deg, rgb(0, 0, 0) 50%, rgb(41, 41, 41) 124%);
  --nav-pill-shadow: inset 0.5px 0.5px 0 0 rgba(134, 134, 134, 0.5);
  --nav-link: #999999;
  --nav-link-hover: #ffffff;
}

html[data-text-size="small"] { font-size: 14px; }
html[data-text-size="standard"] { font-size: 16px; }
html[data-text-size="large"] { font-size: 19px; }
html[data-text-size="extra"] { font-size: 22px; }

html[data-text-weight="medium"] body { font-weight: 500; }
html[data-text-weight="bold"] body { font-weight: 700; }

html[data-text-size="small"] .shop-head h1,
html[data-text-size="small"] .hx-chat-inbox h2,
html[data-text-size="small"] .hx-monitor-head h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
html[data-text-size="standard"] .shop-head h1 { font-size: clamp(2.25rem, 4.6vw, 3.6rem); }
html[data-text-size="large"] .shop-head h1,
html[data-text-size="large"] .hx-chat-inbox h2,
html[data-text-size="large"] .hx-monitor-head h1 { font-size: clamp(2.5rem, 5vw, 3.9rem); }
html[data-text-size="extra"] .shop-head h1,
html[data-text-size="extra"] .hx-chat-inbox h2,
html[data-text-size="extra"] .hx-monitor-head h1 { font-size: clamp(2.85rem, 5.4vw, 4.3rem); }

.navbar-wrapper,
.navbar-wrapper *,
.navbar-wrapper *::before,
.navbar-wrapper *::after {
  box-sizing: border-box;
}

.hydra-boot {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  pointer-events: auto;
}
html.is-booting .hydra-boot { display: flex; }
.hydra-boot__glow {
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 38%, transparent 70%);
  pointer-events: none;
}
.hydra-boot__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.hydra-boot__logo {
  width: min(240px, 52vw);
  height: auto;
  display: block;
  will-change: transform, opacity;
  filter: drop-shadow(0 20px 50px rgba(255,255,255,0.12));
}
.hydra-boot__bar {
  width: min(160px, 42vw);
  height: 2px;
  border-radius: 99px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.hydra-boot__bar i {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform-origin: left center;
  transform: scaleX(0);
}

.navbar-wrapper {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  right: 0;
  padding: 28px 48px 0;
  pointer-events: none;
}

.navbar-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  pointer-events: none;
  position: relative;
}
.navbar-bar.is-compact {
  justify-content: space-between;
}
.nav-pill--links.is-away {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
}

.navbar-bar > * {
  pointer-events: auto;
}

.nav-pill {
  display: flex;
  align-items: center;
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  border-radius: 100px;
  background: var(--nav-pill-bg);
  box-shadow: var(--nav-pill-shadow);
  border: 0;
}

.nav-pill--brand {
  padding: 10px 22px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
}

.navbar,
.nav-pill--links {
  padding: 16px 32px;
  gap: 56px;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 56px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--nav-link);
}

.nav-links a {
  color: var(--nav-link);
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: normal;
  white-space: nowrap;
  transition: color 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--nav-link-hover);
  font-weight: 400;
}

.nav-pill--actions {
  gap: 10px;
  padding: 8px 8px 8px 14px;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  color: #000;
}

.nav-cta span {
  font-size: 15px;
  line-height: 1;
}

.nav-lang-btn {
  min-width: 36px;
  height: 32px;
  padding: 0 10px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: #eee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  box-shadow: none;
}

.nav-lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.nav-lang-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #d1cbdc;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.nav-lang-mobile:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-lang-mobile .nav-lang-code {
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

html[data-lang="en"] .nav-link-code-btn.is-copied .nav-link-code-value::after {
  content: " copied";
}

.nav-theme-btn {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #c8c4d0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: none;
}

.nav-theme-btn:hover {
  background: transparent;
  border: 0;
  color: #ffffff;
}

.nav-theme-btn svg,
.nav-theme-mobile svg {
  width: 20px;
  height: 20px;
}

.nav-theme-btn .nav-theme-moon,
.nav-theme-mobile .nav-theme-moon,
.nav-theme-label-dark {
  display: none !important;
}

html[data-theme="light"] .nav-theme-btn .nav-theme-sun,
html[data-theme="light"] .nav-theme-mobile .nav-theme-sun,
html[data-theme="light"] .nav-theme-label-light {
  display: none !important;
}

html[data-theme="light"] .nav-theme-btn .nav-theme-moon,
html[data-theme="light"] .nav-theme-mobile .nav-theme-moon {
  display: block !important;
}

html[data-theme="light"] .nav-theme-label-dark {
  display: inline !important;
}

.nav-theme-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #d1cbdc;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.nav-theme-mobile:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-user,
.nav-pill--actions {
  display: flex;
  align-items: center;
}

.nav-profile {
  position: relative;
  flex-shrink: 0;
}

.nav-profile-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px 0 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-profile-btn:hover,
.nav-profile.open .nav-profile-btn {
  background: transparent;
}

.nav-avatar {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  overflow: hidden;
  background: #2c2c35;
}

.nav-avatar[hidden] {
  display: none !important;
}

.nav-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.nav-username {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #eee;
  flex-shrink: 1;
  min-width: 3.5ch;
}

.nav-caret {
  width: 14px;
  height: 14px;
  color: #b8b4c4;
}

.nav-profile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 200px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  border-radius: 14px;
  background: rgba(8, 8, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 120;
}

.nav-profile.open .nav-profile-menu {
  display: flex;
}

.nav-profile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #d1cbdc;
  text-decoration: none;
}

.nav-profile-menu a svg {
  width: 16px;
  height: 16px;
}

.nav-profile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-profile-menu .nav-logout {
  color: #f87171;
}

.nav-profile-menu .nav-logout:hover {
  background: rgba(248, 113, 113, 0.12);
  color: #fca5a5;
}

.nav-link-code {
  padding: 10px 12px 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link-code-mobile {
  margin: 0;
  padding: 10px 14px;
  border-bottom: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-link-code-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #9b96a8;
  margin-bottom: 6px;
}

.nav-link-code-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.nav-link-code-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-link-code-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.nav-link-code-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #cecece;
}

.nav-link-code-btn.is-copied .nav-link-code-value::after {
  content: " copiado";
  letter-spacing: 0;
  font-size: 10px;
  font-weight: 700;
  color: #6ee7b7;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 28rem;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0.5px 0.5px 0 0 rgba(134, 134, 134, 0.35);
  border-radius: 24px;
  padding: 20px;
  flex-direction: column;
  gap: 8px;
  z-index: 199;
  pointer-events: auto;
  font-family: Inter, sans-serif;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  color: #cecece;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-page-offset {
  padding-top: 7.25rem !important;
}

@media (max-width: 1100px) {
  .nav-links,
  .navbar,
  .nav-pill--links {
    gap: 32px;
  }

  .navbar-wrapper {
    padding: 22px 28px 0;
  }
}

@media (max-width: 960px) {
  .navbar-bar {
    gap: 10px;
  }

  .nav-links,
  .nav-username,
  .nav-caret {
    display: none;
  }

  .navbar,
  .nav-pill--links {
    padding: 0;
    width: 54px;
    min-width: 54px;
    justify-content: center;
    gap: 0;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
  }
}

@media (max-width: 640px) {
  .navbar-bar {
    gap: 8px;
  }

  .navbar-wrapper {
    padding: 16px 16px 0;
  }

  .nav-pill--brand {
    padding: 8px 16px;
  }

  .nav-logo {
    height: 22px;
  }

  .nav-pill--actions {
    padding: 6px 6px 6px 10px;
    gap: 8px;
  }

  .nav-cta {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }

  .nav-theme-btn {
    display: none;
  }

  .nav-username {
    display: none;
  }

  .nav-cart-drawer {
    width: 100%;
  }
}

.nav-cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-cart-btn i { width: 20px; height: 20px; }
.nav-cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-cart-count.is-on { display: inline-flex; }

html.nav-cart-open,
html.nav-cart-open body,
body.nav-cart-open,
.agy-page.nav-cart-open {
  overflow: hidden !important;
}

.agy-page.nav-cart-open {
  overflow-x: visible !important;
}

.nav-cart-veil {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1110;
  width: min(428px, 100vw);
  height: auto;
  max-height: none;
  background: #080808;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -40px 0 80px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  padding: max(28px, env(safe-area-inset-top)) 28px max(28px, env(safe-area-inset-bottom));
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  font-family: Inter, sans-serif;
  color: #fff;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
}
.nav-cart-drawer.is-open {
  transform: none;
  visibility: visible;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .nav-cart-drawer { transition: none; }
  .hydra-boot, .hydra-boot__logo, .nav-pill { transition: none !important; }
}
.nav-cart-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}
.nav-cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-cart-drawer__head h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.6px;
  color: #fff;
}
.nav-cart-drawer__close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.nav-cart-drawer__close:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.nav-cart-drawer__list {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-cart-drawer .shop-cart-empty {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
  padding: 28px 0;
}
.nav-cart-drawer .shop-cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  grid-template-areas:
    "img info trash"
    "img qty qty";
  column-gap: 16px;
  row-gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  border-radius: 0;
  color: #fff;
  overflow: hidden;
}
.nav-cart-drawer .shop-cart-item img {
  grid-area: img;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  background: #111;
}
.nav-cart-drawer .shop-cart-item__info { grid-area: info; min-width: 0; padding-top: 2px; }
.nav-cart-drawer .shop-cart-item strong {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-cart-drawer .shop-cart-item__info span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #8a8a8a;
}
.nav-cart-qty {
  grid-area: qty;
  display: inline-grid;
  grid-template-columns: 40px 44px 40px;
  align-items: stretch;
  width: 124px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  overflow: hidden;
  background: #111;
}
.nav-cart-drawer .shop-cart-qty-btn {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-cart-drawer .shop-cart-qty-btn:hover { background: #fff; color: #111; }
.nav-cart-drawer .shop-cart-qty-btn:disabled { opacity: 0.28; cursor: default; background: transparent; color: #fff; }
.nav-cart-drawer .shop-cart-qty-btn + .shop-cart-qty-val,
.shop-cart-qty-val {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border-left: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #fff;
  background: #0c0c0c;
}
.nav-cart-drawer .shop-cart-trash {
  grid-area: trash;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: transparent;
  color: #9a9a9a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
}
.nav-cart-drawer .shop-cart-trash:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: transparent;
}
.nav-cart-drawer .shop-cart-trash svg { width: 15px; height: 15px; }
.nav-cart-drawer__foot {
  padding-top: 22px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nav-cart-drawer .shop-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #888;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-cart-drawer .shop-total strong {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.8px;
  text-transform: none;
}
html .nav-cart-drawer #btnFinalizar,
html .nav-cart-drawer .nav-cart-checkout,
html .nav-cart-drawer .btn,
html .nav-cart-drawer .btn-primary,
html[data-theme="light"] .nav-cart-drawer #btnFinalizar,
html[data-theme="light"] .nav-cart-drawer .btn-primary {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 100px;
  background: #fff !important;
  color: #111 !important;
  box-shadow: none !important;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
html .nav-cart-drawer #btnFinalizar:hover,
html .nav-cart-drawer .nav-cart-checkout:hover,
html .nav-cart-drawer .btn-primary:hover {
  background: #e8e8e8 !important;
  color: #111 !important;
  transform: none;
  box-shadow: none !important;
}
html .nav-cart-drawer #btnFinalizar span {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
}
.nav-cart-drawer .shop-cart-aviso { color: #fca5a5; font-size: 12px; margin: 0; }
