/* nav.css */

.cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.12rem;
    position: sticky;
    top: 0;
    left: 0;
    background-color: white;
    padding: 1rem 5rem;
    box-shadow: 0 0.21rem 0.4rem rgba(0, 0, 0, 0.1);
    z-index: 999;

    .ancor_logo {
      font-size: 2.5rem;
      color: #000;
      text-decoration: none;

    }

    nav {
  
      & ul {
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        list-style: none;
        font-size: 2rem;
        height: 100%;

        a{
          text-decoration: none;
          color: rgb(65, 15, 15)  ;
          
        }
        
      }
      
  
    }

    & .nav-icones{
      & .nav-icone {
        width: 5rem;

      }

      .nav-icone--menu {
        display: none;
        width: 100%;
      }

      .icone--fechar {
        display: none;
        width: 100%;
      }

    }
 
    
  }
  
  

@media all and (max-width: 570px){


  & .nav-aberto {
    overflow: hidden;

    & .cabecalho {

      & nav {
        background-color: white;

        & ul {
          background-color: white;
          display: flex;
          flex-flow: column;
          align-items: center;
          justify-content: center;
          gap: 2.5rem;
          list-style: none;
          font-size: 2.5rem;
          height: 100%;
          position: fixed;
          z-index: 9999;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
        }
      }

      & .nav-icones {
        display:block;
        & .nav-icone {
          width: 3rem;
     
          &.nav-icone--menu {
            display: none;

          }
          
          &.icone--fechar {
            position: fixed;
            z-index: 9999;
            display: block;
            
          }
        }
  
      }
      
    }
      
  }

  & .cabecalho {

    & nav {
      ul {
  
        display: none;

        a{
          text-decoration: none;
        }
      }
    }

    & .nav-icones {
      display:block;
      & .nav-icone {
        width: 3rem;
   
        &.nav-icone--menu {
          display: block;
          
        }

      }

    }

    .ancor_logo {
      font-size: 2.5rem;
      color: #000;
      text-decoration: none;

    }




    
    
  } */


    


  