body {
  font-family: "Montserrat", sans-serif;
  margin: 0;

      overflow-x: hidden;
    width: 100%;
}

header {
  position: relative;
  z-index: 20;
}

.menu-maxxa {
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: sticky;
  width:100%;
    top: 0;
    z-index: 100;
  background: var(--main-white);
}

.menu-maxxa__logo-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu-maxxa__logo-links > a > img {
  height: 16px;
}

.logo-links__links {
  display: flex;
  gap: 32px;
}

.logo-links__notification-mobile {
  display: none;
}

.menu-item-wrapper {
  position: relative;
  display: inline-block;
}

.menu-item-wrapper > p {
  color: var(--main-blue);
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.menu-item-wrapper > p.active,
.menu-item-wrapper > p:hover {
  color: var(--light-blue);
}

.menu-item-wrapper > p > img {
  width: 10px;
  transition: transform 0.3s ease;
}

.menu-item-wrapper > p.active > img {
  transform: rotate(-180deg);
}

.mega-menu {
  position: fixed;
  top: 47px;
  left: 0;
  width: 100vw;
  background: var(--main-white);
  padding: 32px 140px;
  z-index: 10;
  border-bottom: 1px solid var(--light-gray);
  border-radius: 0 0 16px 16px;
  margin-top: -20px;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}

.mega-menu--visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.mega-menu__content-list-menu {
  display: flex;
  gap: 32px;
}

.content-list-menu__list {
  display: flex;
  flex-direction: column;
  width: 150px;
  gap:8px;
}

.content-list-menu__list > p {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--dark-gray);
}

.content-list-menu__list > a {
  font-size: 14px;
  text-decoration: none;
  color: var(--main-blue);
}

.content-list-menu__list > a:hover {
  color: var(--light-blue);
}

.menu-maxxa__user {
  display: flex;
  gap: 32px;
  align-items: center;
}

.menu-maxxa__user > a {
  color: var(--main-blue);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

/* Botón flotante móvil */
.menu-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 57px;
  height: 57px;
  padding: 8px;
  background-color: var(--light-blue);
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

.menu-float img {
  max-width: 100%;
  max-height: 100%;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: flex-end;
}

.menu-float__menu-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--main-white);
  border-radius: 32px 32px 0 0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--light-gray);
  transform: translateY(100%);
  opacity: 0;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease-out;
}

.menu-float__menu-mobile.open {
  transform: translateY(0);
  opacity: 1;
}

.menu-float__menu-mobile.closing {
  transform: translateY(100%);
  opacity: 0;
}

.menu-mobile__mobile-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.mobile-content__mobile-icon {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.menu-divider {
  width: 40px;
  height: 4px;
  background-color: var(--light-gray);
  border-radius: 2px;
  margin: 0 auto 16px auto;
}

.mobile-content__mobile-icon > a,
.mobile-content__mobile-icon > p {
  color: var(--main-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.mobile-content__mobile-icon img {
  margin-right: 4px;
}

.mobile-content__menu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-list__menu-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-row__title {
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 600;
}

.menu-row__item {
  color: var(--dark-gray);
  text-decoration: none;
  padding-left: 16px;
}

.divider__grey {
  height: 1px;
  width: 100%;
  background-color: var(--light-gray);
  border-radius: 50%;
}

@media screen and (max-width: 990px) {
  .logo-links__links,
  .menu-maxxa__user,
  .mega-menu {
    display: none;
  }

  .menu-maxxa{
    padding:8px 16px
  }

  .menu-maxxa__logo-links {
    width: 100%;
    justify-content: space-between;
  }

  .logo-links__notification-mobile {
    display: initial;
  }

  .menu-float {
    display: flex;
  }
}
