

@media (max-width: 650px) {
  body {
    /* background: url(../images/bgResponsivoHome.jpg) no-repeat center; */
    background-size: cover;
    background-attachment: fixed;
  }

  .backgroundHome{
    /* background: url(../images/bgResponsivoHome.jpg) no-repeat center; */
    background-size: cover;
    background-attachment: fixed;
  }

  .background{
    /* background: url(../images/bgResponsivo.jpg) no-repeat center; */
    background-size: cover;
    background-attachment: fixed;
  }

  /* Menu */

  .cabecalho {
    display: flex;
    flex-direction: row;
    gap: 0;
    position: relative;
  }
  .cabecalho nav{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  

  .logo {
    left: 25px;
    top: 5px;
    margin: 0;
    margin-top: 20px;
    margin-left: 20px;
    height: 100px;
    width: 100px;
  }

  .cabecalho .menu {

    display: none;
    width: 60px;
    height: 60px;
    align-self: flex-end;
    flex-direction: column;
 
  }

  nav{
    width: 100%;
    height: 100px;
    position: relative;
  }

  .menuHamburguer{
    width: 100px;
    height: 100px;
    position: absolute;
    right:0;
    display: flex;
    
  }

  span{
    margin-left: 40px;
  }
  

  .cabecalho nav label{
    display: flex;
    flex-direction: column;
    
  }
  .hamburguer{
    background-color: white;
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    top: 29px;
    left: 15px;
    transition: 0.6s ease-in-out; 
  }

 

  .cabecalho .hamburguer:before,
  .cabecalho .hamburguer:after{
    background-color: white;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.3s ease-in-out;
  }


  .cabecalho .hamburguer:before{
    top: -10px;
  }

  .cabecalho .hamburguer:after{
    bottom: -10px;
  }

  .cabecalho input{
    display: none;
  }

  .cabecalho input:checked ~ label .hamburguer{
    transform: rotate(45deg);
  }

  .cabecalho input:checked ~ label .hamburguer:before{
    transform: rotate(90deg);
    top: 0;
  }

  .cabecalho input:checked ~ label .hamburguer:after{
    transform: rotate(90deg);
    bottom: 0;

  } 
  .cabecalho .menuHamburguer{
    display: block;
  }

  .cabecalho nav .menu{
    display: none;
  }
  .cabecalho nav input:checked ~ ul{
    display: block;
    /* animation: delapraca 0.5s;  */
  }

  .apresentacaoDiv h1{
    color: white;
    font-size: 25px;
  }

  @-webkit-keyframes delapraca {
    0% {
      opacity: 0;
      transform:translateX(50px)
    }

    100% {
      opacity: 1;
      transform:translateX(0)
    }
  }


  .cabecalho nav{
    z-index: 1;
  }

  .cabecalho nav ul{
    width: 200px;
    padding-top: 50px;
    width: 200px;
    position: absolute;
    right: 0;
  }

  nav li{
    text-align: right;
    width: 150px;
    margin-left: -20px;
  }

  .item:hover{
    transform: scale(1.8);
    border-bottom: none;
  }



  body{
    padding: 20px;
  }


}