
#menu {

	background:#150721; 
	height: 60px;
	padding-right: 30px;
	border-radius: 0px;
	position: relative; /* Añadido */
}

#menu-logo {
  position: absolute; /* Añadido */
  width: 40px;
  left: 30px; /* Ajusta la posición izquierda según tu diseño */
  top: 50%; /* Ajusta la posición verticalmente según tu diseño */
  transform: translateY(-50%); /* Centra verticalmente */
}
#menu ul, #menu li {
	margin: 0 auto;
	padding: 0;
	list-style: none
}
#menu ul {
	width: 100%;
	text-align: right;
}
#menu li {
	display: inline-block;
	position: relative;
}
#menu a {
	display: block;
	line-height: 60px;
	padding: 0 14px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 18px;
}

#menu .selecion{
	font-weight: 900;
}

#menu a.dropdown-arrow:after {
	content: "\25BE";
	margin-right: 5px;
}
#menu li a:hover::after {
	width: 100%;
  }
  @keyframes moveInRight {
	0% {
	  transform: translateX(-100%);
	}
	100% {
	  transform: translateX(0);
	}
  }
  #menu li a:hover::after {
	animation: moveInRight 0.3s ease;
  }

#menu li a::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 0;
	height: 1px;
	color: 300;
	background-color: #ffffff;
	transition: width 0.3s ease;
  }


#menu input {
	display: none;
	margin: 0;
	padding: 0;
	height: 60px;
	width: 100%;
	opacity: 0;
	cursor: pointer
}
#menu label {
	display: none;
	line-height: 60px;
	text-align: center;
	position: absolute;
	right: 35px
}
#menu label:before {
	font-size: 1.6em;
	color: #FFFFFF;
	content: "\2261"; 
	margin-right: 20px;
}
#menu ul.sub-menus{
	height: auto;
	overflow: hidden;
	width: 170px;
	background: #180826;
	position: absolute;
	z-index: 99;
	display: none;
}
#menu ul.sub-menus li {
	display: block;
	text-align: right;
	width: 100%;
}
#menu ul.sub-menus a {
	color: #FFFFFF;
	font-size: 16px;
}
#menu li:hover ul.sub-menus {
	display: block
}
#menu ul.sub-menus a:hover{
	background: #F2F2F2;
	color: #444444;
}
@media screen and (max-width: 800px){
	#menu {position:relative}
	#menu ul {background:#180826;position:absolute;top:100%;right:0;left:0;z-index:3;height:auto;display:none;text-align:right;}
	#menu ul.sub-menus {width:100%;position:static;}
	#menu ul.sub-menus a {padding-right:30px;}
	#menu li {display:block;float:none;width:auto;}
	#menu input, #menu label {position:absolute;top:0;right:0;display:block}
	#menu input {z-index:4}
	#menu input:checked + label {color:#FFFFFF}
	#menu input:checked + label:before {content:"\00d7"}
	#menu input:checked ~ ul {display:block}
}

/* PIE DE LA PAGINA FOOTER */
.pie2{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	background-color: #f0f0f0; /* Color de fondo del footer */
  }

.pie1{
	width: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	background-color: #f0f0f0; /* Color de fondo del footer */
  }
  
  .pie-lado-izquierdo,.pie-lado-derecho {
	margin:0 50px;
  }
  .pie-lado-izquierdo p{
	color: #9747FF;
  }
    
  .redes {
	display: flex;
  }
  
  .redes a {
	margin-right: 10px;
	transition: 0.5s;
	
	
  }
  .redes a img{
	width: 30px;
	height: 30px;
  }
 

  .redes a:hover {
	scale: 1.2;
  }

  @media screen and (max-width: 800px){

	.pie2{
		position: static; 
	}

  }
  

