:root{
    --colorNegro: #313131;
    --colorRojo:#e01d44;
    --colorAzul:rgba(32,164,204,1) ;
}

body{
    background-color: #f7f7f7;
}

.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.75);
    height: 7rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    background-color: #ffffffd7;
    backdrop-filter: blur(3px);
    position: fixed;
    font-size: 18px;
    width: 100%;
    transition: all 0.1s ease-in-out;
    z-index: 300;
    box-shadow: inset -20px -20px 60px #bebebe,
    inset 20px 20px 60px #ffffff;
    
}
.contenedor-rutas{
    display: flex;
    justify-content: space-between;

}

.nav-links{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 1rem;
   

}

.logo{
    width: 90px;
    height: 80px;
    margin-left: 2rem;
    margin-right: 1rem;
}

.logo img{
    width: 100px;
    height: 40px;
    margin-right: auto;
    transition: all 0.5s ease-in-out;
}

.nav-links a{
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--colorNegro);
    

}

.nav-session{
    width: 50%;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content:center;
}
.nav-session a{
    color:#f5f5f5;
    text-decoration: none;
    width: 30%;
    align-items: center;
    justify-content: center;

}

.contenedor-sesion{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.contenedor-sesion img{
    width: 100px;
    height: 40px;
    
}
.nav-item{
    color:#313131;
    --clippy: polygon(0 0,0 0, 0 100%, 0% 100%);
    transition: all 0.5s ease-in-out;
}

.nav-item::after{
    content: "";
    display: block;
    background-color: var(--colorRojo);
    width: 95%;
    margin-top: 3px;
    height: 3px;
    margin-left: 1px;
    clip-path: var(--clippy);
    border-radius: 1rem;
    transition: clip-path .5s ease-in-out;
}
.nav-item:hover{
   
    color:#e01d44;
   --clippy: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-links .nav-boton{
    color: rgb(243, 243, 243);
    font-size: 15px;
   
}
.nav-boton{
    background-color: var(--colorRojo);
    padding: 5px 10px;
    border-radius: 0.5rem;
    transition: all 0.5s ease-in-out;
    
}
.nav-boton:hover{
    transform: translateY(-4px);
    -webkit-box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.75);
    transition: all 0.2s ease-in-out;
}

.menu-icono{
    display: none;
}


.sticky{
    height: 6.5rem;
    transform: translateY(-45px);
    transition: all 0.2s ease-in-out;
}

.sticky-logo{
    width: 85px;
    height: 75px;
    transition: all 0.2s ;
}

.esconde{
    display:none;
}

@media (max-width:992px){


    
    .nav-container{
        top:5rem;
    }
    .sticky{
        transform: translateY(-5rem);
    }
    .contenedor-rutas{
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 6.5rem;
        background: linear-gradient(45deg, rgba(32, 164, 204, 0.904) 0%, rgb(194, 25, 59) 100%);
        height: 100vh;
        width: 100%;
        z-index: 101;
        clip-path: circle(0 at center);
        transition: clip-path 1s ease-in-out;
        background-size: 200%;
        animation: cambiar-Gradiente-menu 10s ease-in-out infinite;


    }
    @keyframes cambiar-Gradiente-menu{
        0%{
            background-position: 0% 50%;
        }
        50%{
            background-position: 100% 50%;
        }
        100%{
            background-position: 0% 50%;
        }
    }
    .nav-menu-muestra{
        clip-path: circle(100% at center);
        
    }

    .nav-links{
        margin-top: 3rem;
        flex-direction: column;
        justify-content: space-evenly;
        margin-bottom: 1.5rem;
    }
    .nav-links a{
        font-size: 35px;
        color: #eeeeee;
    }

    .nav-item{
        margin-bottom: 1.5rem;
    }

    .nav-item{
        color:#eeeeee;
        --clippy: polygon(0 0,0 0, 0 100%, 0% 100%);
        transition: all 0.5s ease-in-out;
    }
    
    .nav-item::after{
        content: "";
        display: block;
        background-color: #eeeeee;
        width: 95%;
        margin-top: 3px;
        height: 3px;
        margin-left: 1px;
        clip-path: var(--clippy);
        border-radius: 1rem;
        transition: clip-path .5s ease-in-out;
    }
    .nav-item:hover{
        color:rgb(255, 255, 255);
       --clippy: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .menu-icono{
        display: block;
        margin-right: 2rem;
        width: 50px;
        transition: all 0.5s ease-in-out;
        cursor: pointer;

    }

    .nav-boton{
        background-color: var(--colorRojo);
        padding: 5px 10px;
        border-radius: 0.5rem;
        transition: all 0.5s ease-in-out;
        width: 90%;
        
    }
    .contenedor-sesion{
        width: 100%;
    }
    .nav-boton{
        width: 100%;
    }
    .menu-icono:hover{
        transform: scaleY(1.25);
        
    }
    .sticky-menu{
        top: 6.5rem;
    }


}


@media (max-width:576px){

    .logo {
        width: 85px;
        height: 70px;
        transition: all 0.2s ;
    }


}