/*=== Menu de inicio ===*/

/*Menu vertical*/
.swanky{
    display: none;
}

.menu-inicio{
    width: 1000px;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    background-color:#635852;
}

.menu-nav{
    width: 80%; 
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.menu-ul{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style:none;
}

.menu-nav li a{
    background-color:#635852;
    color:#ffffff;
	text-decoration:none;
	padding:6px 12px;
	display:block;
    font-family: serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.menu-nav li a:hover {
    background-color:lightgray;
}

.menu-nav li:hover > ul {
    display:block;
}


.li-botones{
    margin-left; 20px;
}

/*=== Redes Sociales ===*/

/*=== Caja Redes Sociales ===*/
.caja-redes-sociales{
    width: 20%;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}

.caja-interna-rs{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.caja-rs{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.img-rs2{
    display: none;
}

.caja-rs img{
    width: 100%;
    
}

/*=== Hover ===*/

.desvanecer-botones:hover{
    filter: opacity(.5);    
}















