/* ===== JW DYNAMIC MENU + PAGES START ===== */

:root {
  --jw-bg: #030303;
  --jw-gold: var(--gold, #d6a441);
  --jw-gold-light: var(--gold-light, #ffe2a0);
  --jw-text: var(--text, #f8f3e8);
  --jw-muted: var(--muted, #c9bdad);
  --jw-line: rgba(255, 226, 160, .18);
  --jw-font-body: var(--font-body, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  --jw-font-display: var(--font-display, Georgia, "Times New Roman", serif);
}

.nav,
.jw-nav-shell {
  overflow: visible !important;
  z-index: 120 !important;
}

.nav-inner {
  overflow: visible !important;
}

.jw-dynamic-nav {
  display: flex !important;
  align-items: center !important;
  gap: clamp(16px, 2vw, 28px) !important;
  font-family: var(--jw-font-body) !important;
}

.jw-dynamic-nav a,
.jw-menu-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(248, 243, 232, .82);
  text-decoration: none;
  font-family: var(--jw-font-body) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 0;
  transition: color .22s ease, opacity .22s ease;
}

.jw-dynamic-nav a:hover,
.jw-menu-item:hover > .jw-menu-trigger,
.jw-menu-item.is-open > .jw-menu-trigger {
  color: var(--jw-gold-light);
}

.jw-menu-chevron {
  display: inline-block;
  font-size: 14px;
  opacity: .72;
  transform: translateY(-1px);
  transition: transform .22s ease, opacity .22s ease;
}

.jw-menu-item:hover .jw-menu-chevron,
.jw-menu-item.is-open .jw-menu-chevron {
  opacity: 1;
  transform: translateY(-1px) rotate(180deg);
}

.jw-menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.jw-mega {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(1060px, calc(100vw - 32px));
  transform: translateX(-50%) translateY(12px) scale(.985);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .24s ease,
    transform .24s cubic-bezier(.16, 1, .3, 1),
    visibility .24s ease;
  z-index: 999;
}

.jw-menu-item:hover .jw-mega,
.jw-menu-item.is-open .jw-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.jw-mega-inner {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--jw-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 226, 160, .15), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(214, 164, 65, .10), transparent 30%),
    linear-gradient(135deg, rgba(18, 15, 10, .96), rgba(5, 5, 5, .92));
  box-shadow:
    0 34px 120px rgba(0, 0, 0, .62),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.jw-mega-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 20%, transparent 78%, rgba(255,226,160,.07));
}

.jw-mega-head,
.jw-mega-columns,
.jw-mega-footer {
  position: relative;
  z-index: 1;
}

.jw-mega-head {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 1.3fr);
  gap: 20px;
  align-items: end;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,226,160,.13);
}

.jw-mega-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--jw-gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.jw-mega-head strong {
  display: block;
  color: var(--jw-text);
  font-family: var(--jw-font-display) !important;
  font-size: clamp(26px, 2.3vw, 38px);
  line-height: 1;
  letter-spacing: -.045em;
  max-width: 480px;
}

.jw-mega-head p {
  color: rgba(248,243,232,.68);
  font-size: 14px;
  line-height: 1.65;
  max-width: 520px;
}

.jw-mega-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.jw-menu-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jw-menu-group-title {
  color: rgba(255,226,160,.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.jw-solution-card {
  position: relative;
  display: grid !important;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  min-height: 102px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,226,160,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    rgba(255,255,255,.025);
  text-decoration: none;
  color: var(--jw-text) !important;
  transition:
    transform .26s cubic-bezier(.16, 1, .3, 1),
    border-color .26s ease,
    background .26s ease,
    box-shadow .26s ease;
}

.jw-solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,226,160,.34);
  background:
    radial-gradient(circle at 30% 0%, rgba(255,226,160,.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
}

.jw-solution-card.is-featured {
  border-color: rgba(255,226,160,.30);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,226,160,.16), transparent 34%),
    linear-gradient(180deg, rgba(214,164,65,.12), rgba(255,255,255,.025));
}

.jw-solution-number {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--jw-gold-light);
  border: 1px solid rgba(255,226,160,.20);
  background: rgba(255,255,255,.035);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.jw-solution-content strong {
  display: block;
  margin-bottom: 7px;
  color: var(--jw-text);
  font-family: var(--jw-font-display) !important;
  font-size: 20px;
  line-height: 1.06;
  letter-spacing: -.025em;
}

.jw-solution-content small {
  display: block;
  color: rgba(248,243,232,.64);
  font-size: 12.5px;
  line-height: 1.5;
}

.jw-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,226,160,.14);
  color: rgba(248,243,232,.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.jw-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #d6a441;
  box-shadow: 0 0 18px rgba(214,164,65,.7);
}

.jw-status-ativo .jw-status-dot {
  background: #7ee787;
  box-shadow: 0 0 18px rgba(126,231,135,.7);
}

.jw-status-implantacao .jw-status-dot {
  background: #ffe2a0;
  box-shadow: 0 0 18px rgba(255,226,160,.6);
}

.jw-status-planejado .jw-status-dot {
  background: #9aa4b2;
  box-shadow: 0 0 18px rgba(154,164,178,.42);
}

.jw-status-estrategico .jw-status-dot {
  background: #d6a441;
  box-shadow: 0 0 18px rgba(214,164,65,.7);
}

.jw-mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,226,160,.13);
}

.jw-mega-footer span {
  color: rgba(248,243,232,.62);
  font-size: 13px;
  line-height: 1.5;
}

.jw-mega-footer a {
  flex: 0 0 auto;
  color: #050505 !important;
  background: linear-gradient(135deg, #ffe2a0, #d6a441);
  border: 1px solid rgba(255,226,160,.36);
  border-radius: 999px;
  padding: 11px 15px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(214,164,65,.18);
}

.jw-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 10%, rgba(214,164,65,.10), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(255,226,160,.07), transparent 26%),
    #030303;
  color: var(--jw-text);
  font-family: var(--jw-font-body);
}

.jw-page-main {
  position: relative;
  padding: 154px clamp(22px, 6vw, 88px) 80px;
  overflow: hidden;
}

.jw-page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.82)),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(0,0,0,.42));
}

.jw-page-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.jw-page-kicker {
  display: inline-flex;
  color: var(--jw-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.jw-page-title {
  max-width: 860px;
  font-family: var(--jw-font-display);
  font-size: clamp(52px, 7vw, 112px);
  line-height: .88;
  letter-spacing: -.075em;
  margin-bottom: 26px;
}

.jw-page-title em {
  color: var(--jw-gold-light);
  font-style: normal;
}

.jw-page-lead {
  max-width: 740px;
  color: rgba(248,243,232,.76);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.75;
  margin-bottom: 34px;
}

.jw-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 58px;
}

.jw-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,226,160,.24);
  color: var(--jw-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
}

.jw-page-btn.primary {
  color: #050505;
  background: linear-gradient(135deg, #ffe2a0, #d6a441);
  box-shadow: 0 18px 50px rgba(214,164,65,.20);
}

.jw-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.jw-page-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,226,160,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018)),
    rgba(255,255,255,.025);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}

.jw-page-card span {
  display: block;
  color: var(--jw-gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.jw-page-card h2 {
  font-family: var(--jw-font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.jw-page-card p {
  color: rgba(248,243,232,.68);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .jw-mega-columns,
  .jw-mega-head,
  .jw-page-grid {
    grid-template-columns: 1fr;
  }

  .jw-mega {
    left: auto;
    right: 0;
    transform: translateY(12px) scale(.985);
    width: min(920px, calc(100vw - 28px));
  }

  .jw-menu-item:hover .jw-mega,
  .jw-menu-item.is-open .jw-mega {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 760px) {
  .jw-dynamic-nav {
    gap: 14px !important;
    overflow-x: auto !important;
    max-width: 100%;
    scrollbar-width: none;
  }

  .jw-dynamic-nav::-webkit-scrollbar {
    display: none;
  }

  .jw-mega {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    width: auto;
    transform: translateY(12px) scale(.985);
  }

  .jw-menu-item:hover .jw-mega {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .jw-menu-item.is-open .jw-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .jw-mega-inner {
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 18px;
    border-radius: 24px;
  }

  .jw-solution-card {
    grid-template-columns: 36px 1fr;
  }

  .jw-page-main {
    padding-top: 132px;
  }

  .jw-page-title {
    letter-spacing: -.06em;
  }
}

/* ===== JW DYNAMIC MENU + PAGES END ===== */

/* ===== JW PT ONLY FIX START ===== */

[data-lang-switch],
.lang-switch,
.language-switch,
.locale-switch,
.i18n-switch,
.lang-toggle,
.language-toggle {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.jw-dynamic-nav {
  font-family: var(--jw-font-body) !important;
}

/* ===== JW PT ONLY FIX END ===== */

/* ===== JW COMPACT PRODUCTS SOLUTIONS MENU CSS START ===== */

.jw-mega-compact {
  width: min(820px, calc(100vw - 32px)) !important;
}

.jw-mega-compact .jw-mega-inner {
  padding: 22px !important;
  border-radius: 28px !important;
}

.jw-compact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jw-compact-grid .jw-solution-card {
  min-height: 112px;
}

.jw-compact-grid .jw-solution-content strong {
  font-size: 19px;
}

.jw-compact-grid .jw-solution-content small {
  font-size: 12.2px;
}

@media (max-width: 760px) {
  .jw-compact-grid {
    grid-template-columns: 1fr;
  }

  .jw-mega-compact {
    width: auto !important;
  }
}

/* ===== JW COMPACT PRODUCTS SOLUTIONS MENU CSS END ===== */

/* ===== JW COMPACT PRODUCTS SOLUTIONS MENU CSS START ===== */

.jw-mega-compact {
  width: min(820px, calc(100vw - 32px)) !important;
}

.jw-mega-compact .jw-mega-inner {
  padding: 22px !important;
  border-radius: 28px !important;
}

.jw-compact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jw-compact-grid .jw-solution-card {
  min-height: 112px;
}

.jw-compact-grid .jw-solution-content strong {
  font-size: 19px;
}

.jw-compact-grid .jw-solution-content small {
  font-size: 12.2px;
}

@media (max-width: 760px) {
  .jw-compact-grid {
    grid-template-columns: 1fr;
  }

  .jw-mega-compact {
    width: auto !important;
  }
}

/* ===== JW COMPACT PRODUCTS SOLUTIONS MENU CSS END ===== */
