.body{
    padding: 90px 20px 0;
}
 .encabezado{
   background: linear-gradient(90deg, #f4f4f7 0%, #d44040d8 50%);
   height: 80px;
    width:100% ;
    top: 0;
    left: 0;
    
    
 }

 .navegacion{
    display: flex;
    justify-content: space-between;
    
 }

 .navegacion-link{
    color: white;
    text-decoration: none;
 }

 .log{
     font-size: 30px;
     font-weight: bold;
     padding: 0 40px;
     line-height: 80px;
 }

 .navegacion_menu{
    display: flex;
    margin-right: 40px;
    list-style: none;
 }

 .item-menu{
     font-size: 18px;
     margin: 0 10px;
     line-height: 80px;
     width: max-content;
 }



.link{
    padding: 8px 12px;
}

.togle{
    color: black;
    background: none;
    border: none;
    font-size:30px ;
    padding: 0 20px;
    line-height: 60px;

    display: none;
}

 @media (max-width:768px){
    .body{
        padding-top: 70px;
    }
     .encabezado{
        height: 60px;
      
     }
    
     .log{
         font-size: 25px;
         font-weight: bold;
         padding: 0 20px;
         line-height: 60px;
     }
    
     .navegacion_menu{
        flex-direction: column;
        margin-right: 20px;
        margin: 0;
        background-color: #d82d2d;
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        align-items: center;
        padding: 20px 0;

        height: calc(100% - 60px);
        overflow-y: auto;

        left: 100%;
        transition: left 0.5s;

        z-index: 100;
     }
    
     .item-menu{
         line-height: 70px;
     }
    
     .link:hover,
        .activar{
        background:none;
        color: #e0e9f0;
     }
    
     .togle{
        display: block;

     }
    
     .nav-menu_visible{
        left: 0;
        z-index: 80;
     }
     
 } 