/* Standalone Navbar + Footer (sin dependencia de Adobe Muse) */
:root {
  --lqa-blue: #4868ad;
  --lqa-cyan: #30b9e0;
  --lqa-text: #3f3f3f;
  --lqa-footer-dark: #3a4a84;
  --lqa-footer-dark-2: #212632;
}

.lqa-standalone-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  z-index: 999997;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 48, 89, 0.12);
}

.lqa-standalone-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.lqa-standalone-nav__logo img {
  width: auto;
  height: 42px;
  display: block;
}

.lqa-standalone-nav__menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lqa-standalone-nav__menu a {
  position: relative;
  height: 74px;
  display: inline-flex;
  align-items: center;
  font-family: Lato, sans-serif;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--lqa-blue);
  text-decoration: none;
  font-weight: 700;
}

.lqa-standalone-nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.lqa-standalone-nav__menu a.is-active::after {
  background: #193a7a;
}

.lqa-standalone-nav__menu a:hover::after {
  background: var(--lqa-cyan);
}

.lqa-standalone-nav__menu a.is-active,
.lqa-standalone-nav__menu a:hover {
  color: var(--lqa-cyan);
}

.lqa-standalone-nav__toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--lqa-blue);
  font-size: 28px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

.lqa-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999998;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lqa-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lqa-mobile-menu__panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  box-sizing: border-box;
}

.lqa-mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lqa-mobile-menu__top img {
  height: 38px;
}

.lqa-mobile-menu__close {
  border: 0;
  background: transparent;
  color: var(--lqa-blue);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.lqa-mobile-menu__list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  text-align: center;
}

.lqa-mobile-menu__list a {
  display: block;
  padding: 12px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--lqa-blue);
  font: 700 22px/1.2 Lato, sans-serif;
  letter-spacing: 1.8px;
}

.lqa-mobile-menu__list a.is-active {
  color: var(--lqa-cyan);
}

.lqa-standalone-footer {
  background: var(--lqa-footer-dark-2);
  color: #fff;
  padding: 18px 20px 0;
  font-family: Lato, sans-serif;
  /* z-index: 9999999999999999; */
}

.lqa-standalone-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lqa-standalone-footer__brand img {
  height: 35px;
  width: auto;
}

.lqa-standalone-footer__brand {
  transition: opacity 0.2s ease;
}

.lqa-standalone-footer__brand:hover {
  opacity: 0.75;
}

.lqa-standalone-footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lqa-standalone-footer__links a {
  transition: opacity 0.2s ease;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
}

.lqa-standalone-footer__links a:hover {
  opacity: 0.75;
}

.lqa-standalone-footer__meta {
  width: 100%;
  margin-top: 14px;
  padding: 12px 16px;
  background: #2f2f35;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
}

.lqa-standalone-footer__meta a {
  color: inherit;
  transition: opacity 0.2s ease;
}

.lqa-standalone-footer__meta a:hover {
  opacity: 0.75;
}

body.lqa-nav-mounted {
  padding-top: 74px !important;
}

body.lqa-menu-open {
  overflow: hidden !important;
}

/* Oculta header/footer Muse para usar versión standalone */
#u229-bw,
#u63165-bw,
#menuu63166,
#u63195,
#u72993-bw,
#u72994-bw,
nav[id^="menuu729"],
#pamphletu69270,
#pamphletu31615,
#pamphletu41223,
#u109140,
#u109148,
#u111818,
#u111820 {
  display: none !important;
}

@media (max-width: 900px) {
  .lqa-standalone-nav {
    height: 60px;
  }

  .lqa-standalone-nav__inner {
    padding: 0 14px;
  }

  .lqa-standalone-nav__logo img {
    height: 34px;
  }

  .lqa-standalone-nav__menu {
    display: none;
  }

  .lqa-standalone-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.lqa-nav-mounted {
    padding-top: 60px !important;
  }

  .lqa-standalone-footer__inner {
    justify-content: center;
    text-align: center;
  }

  .lqa-standalone-footer__links {
    justify-content: center;
  }
}
