.promo-head {
    width: 100%;
    padding: 1rem 0 2rem;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 10px;
}

.promo-head__title {
    font-size: 24px;
}

.promo-head__description {
    font-size: 16px;
}

.--hidemov {
    display: none;
}
.--hidedesk {
    display: block;
}

.product-container {
    margin: 0 auto;
    width: 90%;
}

.product-card {
    margin: 10px 0 20px;
    padding: 14px 15px;
    width: 100%;
    height: auto;
    max-height: 240px;
    display: grid;
    grid-template-columns: 150px auto;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    border-radius: 12px;
}
.product-card__image{
    width: 95%;
    max-width: 150px;
    justify-self: flex-start;
}
.product-card__info{
    width: 100%;
    display: grid;
    align-self: flex-start;
    column-gap: 6px ;
}
.product-card__info .product-card__tag{
    margin-bottom: 8px;
    width: max-content;
    padding: 3px 4px;
    border-radius: 5px;
    color: #712b71;
    background-color: #f6ecf6;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}
.product-card__brand{
    font-size: 14px;
    color: #737578;
}
.product-card__name{
    font-size: 15px;
}
.product-card__brand-name{
    margin-bottom: 4px;
}
.product-card__text-desde{
    font-size: 14px;
}
.product-card__text-soon{
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
}
.product-card__button-shop{
    border-radius: 20px;
    margin: 5px 0;
    font-size: 14px;
    height: 38px;
    width: 100%;
    max-width: 155px;
    font-weight: bold;
    text-decoration: underline;
    font-size: 18px;
}

.barra-promo{
    display: none;
}

@media (min-width:758px) {
    .promo-head{
        padding: 3rem 0 0.5rem;
        gap: 4px;
    }
    .promo-head__title {
        font-size: 32px;
    }

    .promo-head__description {
        font-size: 28px;
    }

    .--hidedesk {
        display: none;
    }

    .--hidemov {
        display: block;
    }

    .barra-promo{
        margin: 0rem auto 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 877px;
        height: 64px;
        font-size: 32px;
        color: var(--white);
        border-radius: 6px;
        background-color: var(--darkBlue);
        text-align: center;
    }
    .product-container{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2%;
    }
    .product-card{
        width: 100%;
        max-width: 230px;
        height: max-content;
        max-height: none;
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: left;
    }
    .product-card__info .product-card__tag{
            margin-bottom: 5px;
    }
    .product-card__name{
        font-size: 18px;
    }
    .product-card__image{
        max-width: 208px;
    }
}