.nav{
    width: 100%;
    height: 130px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 100px;
    transition: all 400ms ease;
}

.navBckColor{
    background-color: black;
    transition: all 400ms ease;
}

.linkNav{
    margin: 15px 50px;
    color: white;
    text-decoration: none;
    font-family: var(--text);
    opacity: 80%;
    position: relative;
    transition: all 400ms ease;
    z-index: 11;
    cursor: pointer;
    opacity: 0;
}

.linkNav::after{
    content: '';
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: all 400ms ease;
    transform: scaleX(0);
    transform-origin: left;
}

.navLogo{
    width:200px;
    height:100px;
    background-image: url(img/luc1.png);
    background-position: center;
    background-size:111%;
    background-repeat: no-repeat;
}


.linkNav:hover::after{
    transition: all 400ms ease;
    transform: scaleX(1);
    transform-origin: left;
}

.linkNav:hover{
    opacity: 100%;
    transition: all 400ms ease;
}

.red{
    margin: 15px;
    color: black;
    text-decoration: none;
    font-family: var(--red);
    padding: 12px 40px;
    background-color: transparent;
    border: solid 2px black;
    border-radius: 100px;
    transition: all 400ms ease;
}

.red:hover{
    background-color: var(--rojo);
    transition: all 400ms ease;
    border: solid 2px red;
    color: white;
}


@media (max-width:1050px) {
    .nav{
        padding: 0 40px;
    }
}

.logoMain{
    display: none;
}

@media (max-width:900px) {
    .nav{
        position: fixed;
        padding: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 400ms ease;
        transform: translateX(-100%);
        background-color: black;
        display:none;
    }
    .navTrue{
        transition: all 400ms ease;
        transform: translateX(-100%);
    }

    .navFalse{
        transition: all 400ms ease;
        transform: translateX(0%);
    }

    .linkNav{
        font-size: 24px;
        text-align: left;
        color:white;
    }

    .logoNav{
        display: none;
    }

    .red{
        font-size: 24px;
    }

    .burger{
        z-index: 2000;
        width: 50px;
        height: 20px;
        position: fixed;
        top: 40px;
        right: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        display: none;
    }

    .lineOne{
        width: 40px;
        height: 3px;
        background-color: white;
        transition: 250ms ease;
        border-radius: 100px;
        position: relative;
        z-index: 2000;
    }

    .lineTwo{
        width: 40px;
        height: 3px;
        margin-top: 10px;
        background-color: white;
        transition: 250ms ease;
        border-radius: 100px;
        position: relative;
        z-index: 2000;
    }

    .oneChange{
        transition: all 250ms ease;
        transform: rotate(45deg) translate(7px, 7px);
        background-color: orange;
    }

    .twoChange{
        transition: all 250ms ease;
        margin-top: 0;
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: orange;
    }

    .navLogo{
        display: none;
    }

    .logoMain{
        width: 200px;
        height: 100px;
        top:10px;
        display: block;
        position: absolute;
        background-image: url(img/luc1.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        z-index: 111;
        left: 50%;
        transform: translateX(-50%);
    }
}


@media (max-width:500px) {
    .logoMain{
        width: 150px;
        height: 70px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}


.oneNone{
    width: 50px;
    height: 3px;
    transition: all 250ms ease;
    transform: none;
}

.twoNone{
    width: 50px;
    height: 3px;
    transition: all 250ms ease;
    transform: none;
}


.mainTrue{
    display: block;
}

.mainFalse{
    display: none;
}

.nav.navFalse {
    transform: translateX(0);
    z-index: 1500;
}

.nav.navTrue {
    transform: translateX(-100%);
}

.oneChange {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: orange;
}

.twoChange {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: orange;
}