.e24-header {
    width: 100%;
    border-radius: 0 0 12px 12px;
    position: sticky;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.e24-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px 24px 16px;
    background: #fff;
}

.e24-logo-desktop {
    width: 292px;
    height: 54px;
    margin-right: auto;
}

.e24-logo-mobile {
    display: none;
}

.e24-header-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: 16px;
}

.e24-header-icons a {
    text-decoration: none;
    /* height: 38px; */
    color: #fff;
    display: flex;
    align-items: center;
    height: 46px;
    font-weight: 600;
}

.e24-instagram-icon {
    background-color: #59005E;
    border-radius: 30px;
    color: #fff;
    padding: 12px 28px;
    box-sizing: border-box;

    img {
        width: 38px;
        height: 38px;
    }
}

.e24-header-btns {
    display: flex;
    gap: 16px;
}

.e24-btn-whatsapp {
    background: linear-gradient(180deg,rgba(85, 196, 82, 1) 0%, rgba(85, 166, 82, 1) 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 28px 12px 22px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.e24-btn-whatsapp>img {
        width: 22px;
        height: 22px;
    }

.e24-btn-whatsapp:hover {
    background: linear-gradient(180deg,rgb(86, 201, 82) 0%, rgb(87, 169, 84) 100%);
}

.e24-btn-anuncie {
    background: #D81E5C;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.e24-btn-anuncie:hover {
    background: #a1005a;
}

@media (max-width: 1246px) {
    .e24-header-icons {
        margin-right: 16px;
    }
}

@media (max-width: 1232px) {
    .e24-header-container {
        gap: 18px;
    }

    .e24-logo-desktop {
        margin-right: auto;
    }
}

@media (max-width: 971px) {
    .e24-header-icons {
        margin-right: 0;
    }
}

@media (max-width: 600px) {
    .e24-logo-desktop {
        display: none;
    }

    .e24-logo-mobile {
        display: inline;
        background: url("<mw:url value='ThemePath'/>/assets/img/logo_empregos24h_reduzida.svg");
        width: 126px;
        height: 40px;
    }

    .e24-header-icons {
        gap: 9px;
    }

    .e24-header-icons>a {
        padding: 10px 22px;
        font-size: 0.875rem;
        height: 36px;
    }

    .e24-instagram-icon {
        img {
            width: 33px;
            height: 33px;
        }
    }

    .e24-header-btns>a>span>.e24-btn-whatsapp-entre{
        display: none;
    }

    .e24-btn-whatsapp {
        padding: 10px 22px;
        font-size: 0.875rem;
    }

    .e24-btn-whatsapp>img {
        width: 18px;
        height: 18px;
    }

    .e24-btn-anuncie {
        padding: 10px 24px;
        font-size: 0.875rem;
    }
}

@media (max-width: 450px){
    .e24-header-btns {
        width: 100%;
        justify-content: space-between;
        gap: 5px;
    }
}

@media (max-width: 335px) {
    .e24-header-icons>a, .e24-btn-whatsapp, .e24-btn-anuncie  {
        font-size: 0.75rem;
    }
}