/**/
.menu-flotante {
  overflow-y: visible;
  position: fixed;
  top: 20px;
  left: 50%;
  height: 51px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(0, 35, 83, 1) 15%, rgba(0, 52, 140, 1));
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  border-radius: 15px;
  z-index: 1000;
  width: 90%;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.15);
}

/**/
.nav-links {
  display: flex;
  gap: 15px;
  padding-left: 10%;
}

/**/
.nav-links a {
  color: white;
  font-size: 16px;
  line-height: 51px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-family: var(--fuente-poppins);
  font-weight: lighter;
  justify-content: center;
  justify-items: center;
  align-items: center;
}

/**/
.nav-links a:hover {
  color: var(--color-terceiario);
}

/**/
.logo {
  height: 38px;
}

/**/
.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/**/
.identidad {
  position: absolute;
  left: 10px;
  top: 49%;
  transform: translateY(-50%) translateX(-9%);
  height: 51px;
}

/**/
.identidad img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/**/
.dropdown {
  position: relative;
  justify-content: center;
  justify-items: center;
  align-items: center;
}

/**/
.submenu {
  position: absolute;
  top: 100%;
  background: #00348C;
  background: linear-gradient(27deg, rgba(0, 52, 140, 1) 25%, rgba(0, 35, 83, 1) 63%);
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 999;
}

/**/
.submenu a {
  padding: 8px 16px;
  font-family: var(--fuente-poppins);
  white-space: nowrap;
  color: white;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

/**/
.submenu a:hover {
  background-color: var(--color-terceiario);
  color: var(--color-secundario);
}

/**/
.dropdown:hover .submenu {
  display: flex;
}

/**/
.widget-fijo {
  position: fixed;
  top: 90px;
  left: 10%;
  transform: translateX(-40%);
  width: 220px;
  height: 50px;
  padding: 15px 20px;
  border-radius: 12px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/**/
.boton-flotante {
  position: fixed;
  left: 20px;
  width: 250px;
  height: 70px;
  z-index: 999;
  overflow: hidden;
}

/**/
.boton-flotante img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/**/
.icono-flecha {
  display: none;
}



/**/
@media (max-width: 1200px) {
  .menu-flotante {
    height: 38px;
  }

  .nav-links a {
    font-size: 12px;
    line-height: 38px;
  }

  .logo {
    height: 28px;
  }

  .identidad {
    height: 38px;
  }

  .icono-flecha {
    display: none;
  }

  .boton-flotante {
    position: fixed;
    left: 5px;
    width: 198px;
    height: 58px;
  }

  .widget-fijo {
    top: 60px;
    left: 13%;
    transform: translateX(-40%);
  }
}

/**/
@media (max-width: 900px) {

  /* Botón hamburguesa */
  .menu-hamburger {
    margin-left: 40%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    gap: 5px;
    z-index: 20;
  }

  /**/
  .menu-hamburger span {
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    width: 100%;
  }

  /**/
  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(27deg, rgba(0, 52, 140, 1) 25%, rgba(0, 35, 83, 1) 63%);
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    padding: 3px 0;
    border-radius: 15px;
    align-items: center;
  }

  /**/
  .nav-links a {
    font-size: 16px;
    line-height: 38px;
    padding: 0 20px;
  }

  /**/
  .nav-links.active {
    display: flex;
  }

  /**/
  .dropdown .submenu {
    display: none;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  /**/
  .dropdown.open .submenu {
    display: flex;
    flex-direction: column;
    background: var(--color-transparente);
    align-items: center;
  }

  /**/
  .icono-flecha {
    display: inline-flex;
    width: 10px;
    height: 10px;
    transform: rotate(90deg);
  }

  /**/
  .boton-flotante {
    position: fixed;
    left: 5px;
    width: 198px;
    height: 58px;
  }

  .widget-fijo {
    top: 60px;
    left: 15%;
    transform: translateX(-40%);
  }

}

@media (max-width: 680px) {
  .widget-fijo {
    top: 60px;
    left: 15%;
    transform: translateX(-30%);
  }
}

@media (max-width: 500px) {
  .widget-fijo {
    top: 60px;
    left: 20%;
    transform: translateX(-30%);
  }

  .boton-flotante {
    left: 20px;
    width: 152px;
    height: 45px;
  }
}