/*BARRA SUPERIOR*/
	.barrasuperior {
		background: #F0F3FA;
		display: block;
		font-size: 0.8em;
		height: 26px;
		margin: auto;
	}
	.grupo-barrasuperior {
	  max-width: 1200px;
		margin: auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 26px;
	}
	.columna-barrasuperior {
		display: flex;
		align-items: center;
	}
	.superior-img {
		width: 17px;
		margin-right: 10px;
	}
	.lineavertical {
		width: 2px;
		height: 18px;
		margin-right: 10px;
		background: #0F4395;
	}
	.columna-barrasuperior p {
		display: flex;
		align-items: center;
		margin-right: 10px;
		color: #0F4395;
	}
	.redes-sociales {
		display: flex;
	}
	.redes-img {
		width: 17px;
	}
	.columna-barrasuperior a {
		opacity: 0.7;
		margin: 5px;
	}
	.columna-barrasuperior a:hover {
		opacity: 1;
	}

/*ESTILOS HEADER MENU PARA LAPTOPS*/
.topheader {
	background: #fff;

	transition: all .4s;
}
.fixed {
	background: #fff;
  position: fixed;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
}
.logoprincipal {
	width: 180px;
}
.topnav {
  display: flex;
  justify-content: space-between;
	align-items: center;
	padding: 0 10px;
  max-width: 1200px;
  margin: 0 auto;
	height: 70px;
}

/* Menu */
.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0px 10px;
	background: #F0F3FA;
	border-radius: 30px;
}

.menu li {
  padding: 0 15px;
}

.menu a {
  color: #003E53;
  font-size: 0.8em;
  line-height: 50px;
  position: relative;
}

.menu a::after {
  content: "";
  background-color: #0F4395;
  position: absolute;
  left: 0;
  top: calc(100% - 13px);
  width: 100%;
  height: 4px;

  opacity: 0;
  transition: opacity 0.3s;
}

.menu a.selected::after,
.menu a:hover::after {
  opacity: 0.8;
}

.menu a:hover {
  color: var(--primary-color);
}

.open-menu,
.close-menu {
  display: none;
}

.WA-superior {
	background: #D5EBED;
	border-radius: 50%;
	padding: 5px;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.contacta-sup {
	display: flex;
	align-items: center;
	font-size: 0.8em;
	color: #0F4395;
}
li .cotiza-boton  {
	background: #0F4395;
	border-radius: 20px;
	padding: 0 10px;
	color: #fff;
}
li .cotiza-boton:hover {
	color: #fff;
}
/*ESTILOS PARA CELULARES*/
@media (max-width: 950px) {
/*BARRA SUPERIOR*/
	.barrasuperior {
		height: 10px;
	}
	.grupo-barrasuperior {
		display: none;
	}
	.topheader {
		height: 70px;
		padding: 0;
	}
	.contacta-sup {
		display: none;
	}
  .open-menu,
  .close-menu {
    display: block;
    border: none;
    background: none;
    cursor: pointer;
  }
	
  /* Menu */
	.icon-menu, .icon-cross-mark {
		font-size: 2em;
		color: #0F4395;
	}
  .menu {
    flex-direction: column;
    position: fixed;
		z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
		border-radius: 0px;
    align-items: center;
    background-color: #F0F3FA;
    height: 100%;
    overflow-y: auto;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .menu li {
    padding: 0;
  }

  .menu a {
    color: #0F4395;
    line-height: 50px;
    font-size: 20px;
		transition: all .4s;
  }

  .close-menu {
    align-self: flex-end;
    padding: 20px 15px;
  }

  .menu_opened {
    opacity: 1;
    pointer-events: all;
  }

  .open-menu:focus:not(:focus-visible),
  .close-menu:focus:not(:focus-visible) {
    outline: none;
  }

  .menu a::after {
    content: none;
  }

  .menu a:hover,
  .menu a.selected {
    background: #0F4395;
		color: #D5EBED;
		padding: 5px 20px;
		border-radius: 5px;
  }
li .cotiza-boton  {
	background: #0F4395;
	border-radius: 20px;
	padding: 0 10px;
	color: #fff;
}
}