header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 174px;
    z-index: 999;
    transition: all .5s;
    background-color: #ffffff;
}
header .nav-header {
    width: 100%;
    display: flex;
    align-items: center;
}
header ul {
    list-style: none;
    display: flex;
    margin-bottom: 0;
    margin-left: auto;
}
header ul li {
    margin-right: 35px;
}
header ul li a {
    font-family: 'Unimed SB';
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}
header .btn-cta {
    margin: 0;
}
header .box-logo img {
    transition: all .3s;
}

header.scroller {
    height: 104px;
    padding: 15px 0;
    box-shadow: 1px 2px 8px rgba(200, 200, 200, 0.6);
}
header.scroller .box-logo img {
    height: 74px;
    width: auto;
}
header.scroller .btn-cta {
    padding: 13px 29px;
}

header.menu-transparente {
    background-color: transparent !important;
}

.close-menu {
    display: none;
}

@media (max-width: 992px) {
    header {
        height: 124px;
    }
    header .box-logo img {
        height: 84px;
        width: auto;
    }
    header ul,
    header .btn-cta {
        display: none;
    }

    header.active {
        height: 100vh;
    }
    header.active .nav-header .open-menu {
        order: 0;
    }
    header.active .nav-header .close-menu {
        order: 1;
    }
    header.active .nav-header ul {
        order: 2;
        display: flex;
        flex-direction: column;
        position: absolute;
        z-index: 99;
        top: 164px;
        width: 100%;
        left: 0;
    }
    header.active .nav-header ul li {
        text-align: right;
        margin-right: 12px;
        margin-bottom: 20px;
    }
    header.active .nav-header ul li a {
        font-size: 24px;
        padding: 15px 5px;
    }
    header.active .btn-cta {
        display: flex;
        position: absolute;
        z-index: 99;
        bottom: 40px;
    }
    header.active .close-menu {
        display: flex;
        margin-left: auto;
        width: 47px;
        height: 37px;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .open-menu {
        width: 45px;
        height: 35px;
        background-color: transparent;
        border: none;
        margin-left: auto;
        cursor: pointer;
    }

    header.active .open-menu {
        display: none !important;
    }
}