/*MENU*/
.contenedor-menu{
    background-color: #80849c;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
}
.check-falso {
    display: none;
}
.menu{
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: space-between;
    padding-left: 0;
}
#menu a {
    font-family: 'LocatorBold';
    color: white;
    text-decoration: none;
    padding-bottom: 2px;
}
.active{
    color: #c06f4f !important;
}
.menu a:active, .menu a:hover {
    border-bottom: solid 2px #000000;
    cursor: pointer;
    padding-bottom: 0px !important;
}
.logo{
    width: 70%;
    height: auto;
}
/*FOOTER*/
.footer {
    margin-top: -0.5rem;
    padding: 4rem 0;
    background-color: #80849c;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.titulo4{
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}
.icon-redes{
    width: 30px;
    height: 30px;
    margin: 0 1rem;
}
/*Responsive menu*/
@media screen and (max-width: 767px){
    .contenedor-menu {
        display: block;
        padding: 1rem;
    }
    .check-falso{
        display: block;
    }
    #menuToggle{
        display: block;
        position: relative;
        top: 35px;
        left: 0;
        z-index: 2;
        -webkit-user-select: none;
        user-select: none;
        height: 50px;
    }
    #menuToggle a{
        text-decoration: none;
        color: #ffffff;
        transition: color 0.3s ease;
        display: block;
    }
    #menuToggle input{
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: 0;
        cursor: pointer;
        opacity: 0;
        z-index: 2; 
        -webkit-touch-callout: none;
    }
    #menuToggle span{
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #343a40;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        opacity 0.55s ease;
    }
    #menuToggle span:first-child{
        transform-origin: 0% 0%;
    }
    #menuToggle span:nth-last-child(2){
        transform-origin: 0% 100%;
    }
    #menuToggle input:checked ~ span{
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
    }
    #menuToggle input:checked ~ span:nth-last-child(3){
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }
    #menuToggle input:checked ~ span:nth-last-child(2){
        transform: rotate(-45deg) translate(0, -1px);
    }
    #menu{
        display: block;
        width: auto;
        margin: -50px 0 0 -50px;
        padding: 50px;
        padding-top: 50px;
        background: #80849c;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }
    #menu li{
        padding: 8px 0;
        font-size: 16px;
    }
    #menuToggle input:checked ~ ul{
        transform: none;
    }           
}