/* ============================================
   PREMIUM NAVBAR
   ============================================ */

.header {
  top: 0;
  z-index: 999;
  width: 100%;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navBar {
  width: 100%;
  
}

.navBar__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-inner-page .navBar {
  background-color: #fff;
}

.navBar__logo {
  width: 168px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.navBar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navBar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
}

.navBar__links li {
  display: block;
}

.navBar__links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 8px;
  color:var(--color-Primary1) !important;
  font-family: "font_medium";
  font-size: 18px;
  white-space: nowrap;
  position: relative;
}

.navBar__links a::after {
  content: "";
  position: absolute;
  right: 14px;
  left: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 20px;
  background: var(--color-Primary1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.navBar__links a:hover,
.navBar__links a.active {
  color: var(--color-Primary1) !important;
  background: rgba(255, 255, 255, 0.06);
}

.navBar__links a:hover::after,
.navBar__links a.active::after {
  transform: scaleX(1);
}

.navBar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navBar__cta,
.ctm-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(0, 250, 206, 0.7);
  background: linear-gradient(135deg, #00FACE 0%, #00FACE 100%);
  color: #172436 !important;
  font-family: "font_bold";
  font-size: 15px;
  box-shadow: 0 16px 35px rgba(0, 250, 206, 0.2);
  white-space: nowrap;
}

.navBar__cta:hover,
.ctm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 250, 206, 0.3);
}

.navBar__toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.navBar__toggle .navicon {
  position: relative;
}

.logo-menu {
  width: 100%;
  text-align: center;
  padding: 10px 24px 0;
}

.logo-menu img {
  max-width: 165px;
  height: auto;
}

.btn-nav-res {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

@media (max-width: 1200px) {
  .navBar__inner {
    min-height: 82px;
  }

  .navBar__logo {
    width: 142px;
    height: 58px;
  }

  .navBar__links {
    display: none;
  }

  .navBar__toggle {
    display: inline-flex;
  }
}

@media (max-width: 576px) {
  .navBar__inner {
    min-height: 76px;
    width: 92%;
  }

  .navBar__logo {
    width: 124px;
    height: 52px;
  }

  .navBar__cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .navBar__toggle {
    width: 42px;
    height: 42px;
  }

  .menu_responsive {
    width: min(330px, 88vw);
  }
}
