/*FOOTER MENU*/
.footer-menu a {
	font-size: 0.9em;
	color: #fafbf5;
	transition: all .4s;
}
.footer-menu a span {

}
.footer-menu a:hover {
	transform: translateX(5px);
	color: #000;
	display: block;
}

/*ESTILOS HEADER MENU PARA LAPTOPS*/
.topheader {
	background: #fafbf5;
	height: 80px;
	transition: all .4s;
}
.fixed {
/*	background: #fafbf5;*/
    background: #eee;
  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: 80px;
}

/* Menu */
.menu {
  display: flex;
  list-style: none;
  margin: 0;
}

.menu li {
  padding: 0 10px;
}

.menu a {
  color: #333;
  font-size: 0.85em;
  line-height: 50px;
  position: relative;
}

.menu a::after {
  content: "";
  background-color: #008080;
  position: absolute;
  left: 0;
  top: calc(100% - 13px);
  width: 100%;
  height: 2px;

  opacity: 0;
  transition: opacity 0.3s;
}

.menu a.selected::after,
.menu a:hover::after {
  opacity: 0.8;
}

.menu a:hover {
  color: #333;
}

.open-menu,
.close-menu {
  display: none;
}

/*ESTILOS PARA CELULARES*/
@media (max-width: 950px) {
	.topheader {
		height: 100px;
		padding: 0;
	}
  .open-menu,
  .close-menu {
    display: block;
    border: none;
    background: none;
    cursor: pointer;
  }
	
  /* Menu */
	.icon-menu, .icon-cross-mark {
		font-size: 2em;
		color: #008080;
	}
  .menu {
    flex-direction: column;
    position: fixed;
		z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
		border-radius: 0px;
    align-items: center;
    background-color: #fafbf5;
    height: 100%;
    overflow-y: auto;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .menu li {
    padding: 0;
  }

  .menu a {
    color: #333;
    line-height: 50px;
    font-size: 15px;
		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: #008080;
		color: #fafbf5;
		padding: 5px 20px;
		border-radius: 5px;
  }

}