header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100%;
    padding: 0;
}

.header-sep {
    height: 88px;
}

/** header-body */
.header-body {
    background-color: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.header-body .wrap {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    padding: 4px 0;
}

.header-logo a {
    display: flex;
    gap: 10px;
    width: fit-content;
}

.header-logo-img {
    height: 80px;
}

/** HEADER SCROLL */
.header__scroll {
    position: fixed;
    background-color: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.header__scroll .header-top {
    display: none;
}

.header__scroll .header-logo img {
    height: 50px;
}

/** header-internas */
.header-internas {
    background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
    .header-logo-img {
        height: 64px;
    }

    .header-sep {
        height: 72px;
    }
}