      .navbarRegular{
        font-family: 'CreatoDisplay_Regular', sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size:14px;
        line-height:14px;
      }
      
      
      .navbar{
        display:flex;
        width:100%;
        height:93px;
        padding:19px 109px 28px 124px;
        justify-content:space-between;
        background-color:brown;
        align-items:center;
        position:fixed;
        top:0;
      }
      
      .navbarLogo{
        display:flex;
        background-color:black;
        width:285px;
        height:30px;
        flex-shrink:0;
      }
      
      .navbarMenu{
        display:flex;
        width:fit-content;
        gap:47px;
        background-color:green;
        align-items:center;
      }
      
      .navbarSeccion{
        display:flex;
        flex-direction:column;
        justify-content:space-between;
      }
      
      .navbarSeccion a{
        text-decoration: none;
        cursor: pointer;
        outline: none; 
        padding: 13px 39px;
        background-color:pink;
        color:white;
      }
      

       .navbarSeccion.navbarContacto a{
        text-decoration: none;
        cursor: pointer;
        outline: none; 
        padding: 12px 20px;
        background-color:grey;
        color:white;
        border-radius:6px;
      }
      
      .navbarLinea{
        width:100%;
        height:2px;
        background-color:yellow;
        flex-shrink:0;
      }