
@media only screen and  (min-width: 768px) {
    

    body{
width: 90%;
height: 400px;







    }
   
    
    header{
        flex-direction: flex;
       padding-left: 50px;
       width: 80%;
       height: 50%;
    }

    main{
        flex-direction: flex;
        padding-left: 50px;
       width: 50%;
    }

    h2{
        font-size: 38px;
        padding-left: 50px;

       width: 90%;
    }

    form{
        padding-bottom: 50px;
        margin: 0 auto;
        width: 150%
    
    }

    input{
        align-self: flex;
    }

    img{
        display: left;
        height:900px;
        width:1900%;
        
       


    }

    ul{
        text-align: right;
        width: 100%;
    }

}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  font-size: 50px;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 35px;
 
}

/* MENU */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  backdrop-filter: blur(8px);
  background: #1f1f1f;
  list-style: none;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  transition: right 0.3s ease;
  z-index: 1000;
}

/* MENU ABERTO */
.menu.active {
  right: 0;

}

.menu li a {
  text-decoration: none;
  
}


.menu-close {
  display: flex;
  justify-content: flex-end;
}

.menu-close button {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  margin-right: 18px;
}
