.top-bar {
    background-color: var(--primaryColor);
    border: 1px solid var(--borde-1);
}

.top-bar__inner {
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ======================================== */
.top-bar__sales,
.top-bar__social {
    display: flex;
    gap: 20px;
}

.top-bar__item {
    color: var(--white);
}

.top-bar__item a {
    color: var(--white);
    text-decoration: none;
}

/* ======================================= */
.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}


.social-icon-whatsapp {
    background-color: var(--whatsApp);
}

.social-icon-whatsapp .fa-whatsapp {
    color: var(--white);
    font-size: 25px;
}

.social-icon-facebook {

    background-color: var(--facebook);
}

.social-icon-facebook .fa-facebook {
    color: var(--white);
    font-size: 25px;
}

.social-icon-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-instagram .fa-instagram {
    color: var(--white);
    font-size: 25px;
}

/* =================================== */
/* =================================== */
/* =================================== */

@media (max-width:1024px) {
    .top-bar {
        display: none;
    }
}