/* Menú */
  .nav-container {
    max-width: 1100px;    
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .nav-logo{ 
    max-width: 90px;
  }
    nav {
      background-color: white;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      display: block;
      padding: 13px;
      color: #005780;
      text-decoration: none;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
    }    

    /* Submenú */
    nav ul li ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      min-width: 180px;
      flex-direction: column;
      z-index: 1000;
    }

    nav ul li ul li {
      width: 100%;
    }

    nav ul li:hover > ul {
      display: block;
    }

    nav ul li ul li a {
      padding: 7px 15px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
    }    
    .nav-botonera {
      display: flex;
      flex-direction: column;
      row-gap: 7px;
    }
    .nav-botonera a {
      background: linear-gradient(316deg, rgba(78, 69, 204, 1) 0%, rgba(9, 9, 121, 1) 52%, rgba(83, 160, 176, 1) 100%);
      color: white;
      text-decoration: none;
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 35px;
      padding-right: 35px;
      border-radius: 90px;
      text-align: center;
      font-size: 12px;
      font-weight: 600;
    }
  /* Fin Menú */

@media screen and (max-width: 768px) {
  nav {
    display: none !important;
  }
}