/* Pré Header */

.preHeader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 35px;
    background: #F0DD92;
    z-index: 999;
    overflow: hidden;
}

.preHeader.loteRelampago {
    background: #FF4949;
}

.preHeader.scroll {
    height: 0;
}

.preHeader .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.preHeader p {
    color: #444444;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.preHeader.loteRelampago p {
    color: #fff;
}

.preHeader p strong {
    font-weight: 900;
}

/* Header */

.headerLanding2022 {
    position: fixed;
    top: 35px;
    height: 65px;
    width: 100%;
    z-index: 9999;
    transition: all 0.2s linear;
}

.headerLanding2022.scroll {
    top: 0;
    height: 50px !important;
    background: #222B37;
    border-bottom: solid 1px #0F1A2A;
}

.headerLanding2022 .container {
    height: 100%;
}

.headerLanding2022 .container .col-sm-12 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */

.headerLanding2022 #logoLanding2022 img {
    transition: all 0.2s linear;
    height: auto;
}

.headerLanding2022.scroll #logoLanding2022 img {
    max-width: 120px;
    transition: all 0.2s linear;
    height: auto;
}

/* Links */

.linksHeader {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.linksHeader a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.linksHeader a + a {
    margin-left: 30px;
}

.linksHeader a img {
    height: auto;
}

.linksHeader a span {
    color: #fff;
    font-weight: bold;
    margin-left: 7px;
}

@media only screen and (max-width: 500px) {

    /* Pré Header */

    .preHeader {
        height: auto;
        padding: 10px 40px;
    }

    .preHeader p {
        font-size: 12px;
        line-height: 16px;
        text-align: center;
    }

    /* Header */

    .headerLanding2022 {
        top: 45px;
    }

    .linksHeader a span {
        display: none;
    }

    .headerLanding2022 .container .col-sm-12 {
        padding: 0;
    }

}