 /* Estilos para el menu escritorio y movil */
    .nxvMenu__wrapper {
      background: #fff;
      font-family: Arial, sans-serif;
      box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
      -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
      -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
    }

    .nxvMenu__topBar {
      display: flex;
      align-items: center;
      height: 90px;
    }

    .nxvMenu__logo {
      padding: 10px 2.5rem 10px 1rem;
      height: 100%;
      box-sizing: border-box;
    }

    .nxvMenu__logo img {
      height: 100%;
    }

    /* ===== Desktop ===== */

    .nxvMenu__desktopList {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      width: 100%;
      justify-content: space-around;
      align-items: center;
      height: 100%;
    }

    .nxvMenu__desktopList>li {
      position: relative;
      flex-grow: 1;
      height: 100%;
    }

    .nxvMenu__desktopList li a {
      font-family: 'Myriad Pro Regular';
      text-align: center;
    }

    .nxvMenu__desktopList a {
      text-decoration: none;
      color: #000;
      padding: 10px;
      display: inline-block;
      height: 100%;
      width: 100%;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #50266e;
      font-size: 1rem;
      line-height: 1rem;
      font-family: "Inter Regular";
      border-right: 1px solid rgb(235, 181, 209);
    }

    .nxvMenu__dropdown {
      list-style: none;
      margin: 0;
      padding: 10px;
      position: absolute;
      top: 100%;
      left: 0;
      width: 220px;
      display: none;
      background: #fff;
      box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
      -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
      -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
    }

    .nxvMenu__dropdown li:hover {
      background: rgba(80, 38, 110, 0.071);
    }

    .nxvMenu__dropdown li a {
      display: block;
      padding: 10px;
      border-bottom: 1px solid rgb(235, 181, 209);
      border-right: none;
    }

    .nxvMenu__dropdown li:last-child a {
      border-bottom: none;
    }

    .nxvMenu__desktopList li:hover .nxvMenu-bottom-line {
      width: 100%;
    }

    .nxvMenu-bottom-line {
      height: 3px;
      background: rgb(207, 37, 134);
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width: 0;
      transition: .1s !important;
    }

    /* Mostrar dropdown desktop */
    @media (min-width: 768px) {
      .nxvMenu__hasDropdown:hover>.nxvMenu__dropdown {
        display: block;
      }
    }

    /* ===== Burger ===== */

    .nxvMenu__toggle {
      display: none;
      margin-left: auto;
      margin-right: 20px;
      font-size: 30px;
      background: transparent;
      border: none;
      cursor: pointer;
    }

    /* ===== Mobile Panel ===== */

    .nxvMenu__mobilePanel {
      display: none;
      padding: 1.5rem 1rem 1rem 1rem;
    }

    /* ===== Responsive ===== */

    @media (max-width: 767px) {

      .nxvMenu__desktopList {
        display: none;
      }

      .nxvMenu__toggle {
        display: block;
      }

      .nxvMenu__wrapper[data-nxv-open="true"] .nxvMenu__mobilePanel {
        display: block;
      }

      .nxvMenu__mobileItem {
        padding: 10px;
       border-bottom: .5px solid #cf2586;
        text-align: start;
      }

      .nxvMenu__mobileItem a {
        text-decoration: none;
        font-family: 'Myriad Pro Regular';
        font-size: 1rem;
        font-weight: bold;
        color: #50266e;
        text-align: start;
      }

      .nxvMenu__mobileItemWithSub>button {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        cursor: pointer;
        border-bottom: .5px solid #cf2586;
        color: #50266e;
        padding: 8px;
        font-family: 'Myriad Pro Regular';
        font-size: 1rem;
        font-weight: bold;
        border-radius: 0;
      }

      .nxvMenu__mobileItemWithSub button a{
        color: #50266e;
      }

      .nxvMenu__mobileSubList {
        display: none;
        padding-left: 20px;
        margin: 10px 0;
      }

      .nxvMenu__mobileSubList li {
        list-style: none;
        padding: .2rem 0;
        text-align: start;
      }

      .nxvMenu__mobileSubList li a {
        text-decoration: none;
        color: #50266e;
        ;
      }

      .nxvMenu__mobileSubList li a:hover {
        color: #cf2586;
        text-decoration: underline;
      }

      .nxvMenu__mobileSubList li a::before {
        content: '🜙';
        font-size: 1.2rem;
        padding-right: .2rem;
      }

      .nxvMenu__mobileItemWithSub[data-nxv-sub-open="true"] .nxvMenu__mobileSubList {
        display: block;
      }

      /* Flechas móviles */
      .nxvMenu__mobileItemWithSub>button::after {
        content: "▼";
        float: right;
        font-size: .9rem;
      }

      .nxvMenu__mobileItemWithSub[data-nxv-sub-open="true"]>button::after {
        content: "▲";
        font-size: .9rem;
      }
    }