.header {
    /* position: relative; */
    overflow: hidden;
}

.header-logo {
    margin: 0;
}

.header-logo img{
  width:150px;
}

.menu-icon {
    display: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    margin: 0;
}

.menu-icon img {
    width: 100%;
    height: 100%;
}

.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    margin: 0;
    overflow: hidden;
}

.menu > li {
    list-style: none;
}

.menu > li > a {
    color: #009582;
    text-decoration: none;
    font-size: 20px;
}

@media screen and (width < 1150px) {

    .header {
        flex-direction: column;
        gap: 20px;
        padding: 20px !important;
    }

    .menu {
        flex-direction: column;
        align-items: start;
        /* position: fixed; */
        background-color: #fff;
        /* top: 0;
        right: 0; */
        width: 100%;
        height: 0;
        transition: height .3s ease-in;
        /* transform: translateX(100%); */
        z-index: 10;
    }

    .menu-icon {
        display: inline;
        align-self: flex-start;
    }

    .menu-active {
        /* transform: translateX(0%); */
        height: auto;
        padding: 50px 20px;
    }

}

/* Reescritura */
.menu{
    gap: 0;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #159585;
  color: #fff;
}

.header .active {
  background-color:#159585;
  color: #fff;
}


.header li a {
  display: block;
  padding: 20px 15px 20px 15px;
  margin: 0;
  text-decoration: none;
}

@media screen and (width < 900px) {
    .menu > li {
        list-style: none;
        width: 100%;
    }
    .header li a {
        padding: 10px 15px 5px 15px;
        margin: 0;
      }
      .menu-active {
        padding: 0;
    }
    .menu-icon {
        align-self: flex-end;
    }
}

@media screen and (width < 900px){
    .menu-icon {
        align-self: flex-end;
        position: absolute;
        top: 20px;
    }
}

@media screen and (width < 1150px){
    .header {
        flex-direction: column;
        gap: 0;
        padding: 5px !important;
    }
}

@media screen and (width < 900px){
    .menu-active {
        padding: 0;
        margin-top: 50px;
    }
}