
  @import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
:root {
    --pink-color:#F2BFCC;
}
img {
    border-style: none;
    height: auto;
    max-width: 100%;
}
a {text-decoration: none;}
.barr__top {
    background: var(--pink-color);
    height: 60px;
    margin-right: 0px;
}
.barr__top h3 {
    font-family: 'Handlee', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 2rem;
}

.bnt__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 280px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    background: var(--pink-color);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
}

.bnt__contact:hover {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 280px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    color: var(--pink-color);
    border-color: var(--pink-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    background: #ffffff;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
}
/****CARDS****/
.product__list .product {
    padding-left: 10px;
    padding-right: 10px;
    flex: 0 0 25%;
    width: 25%;
    margin-bottom: 100px;
}

@media screen and (max-width: 1200px) {
    .product__list .product {
        flex: 0 0 33.333333%;
        width: 33.333333%;
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 768px) {
    .product__list .product {
        flex: 0 0 50%;
        width: 50%;
        margin-bottom: 80px;
    }
}
/*@media screen and (max-width: 500px) {*/
/*    .product__list .product {*/
/*        flex: 0 0 100%;  */
/*        padding: 0 5rem;     */
/*        margin-bottom: 80px;*/
/*    }*/
/*}*/
.infos {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;   
}
.infos h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;    
}
.infos span,
.footer__cart span {
    flex: 1;
}
.infos .value__vj,
.footer__cart .value__vj,
.infos  .value__at,
.footer__cart .value__at,
.infos  .number
.footer__cart .number {
    text-align: right;
}
.infos .btn__add,
.footer__cart .btn__send {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 43px;
    font-size: 14px;
    color: #000;
    border: 1px solid #000;
}
.btn__send:hover {
    background: var(--pink-color);
    border: 1px solid var(--pink-color);
    color: #FFFFFF;
}
.footer__cart .btn__send {
    margin: 10px auto;
    max-width: 80%;
}
.infos .btn__add:hover {
    background: var(--pink-color);
    border: 1px solid var(--pink-color);
    color: #f2f2f2;
}
/**********CART*********/
.bag__fixed {
    position: fixed;
    z-index: 1044;
    right: 21px;
    bottom: 32px;
    background: #f2f2f2;
    padding: 10px;
    border-radius: 50%;
    border: solid 2px var(--pink-color);
}

.cart__item span{   
 font-size: 12px;
 line-height: 1.15;
 margin: .5rem 0;
}
.cart__item h3 {
    font-size: 16px;
}

.icon-pedido {
    margin-left: 10px;
}

.footer {
    background: var(--pink-color);
}

.link-copy {
    color: #FFFFFF;
}

.link-copy:hover {
    color: #000000;
}

.badge-bag {
    position: fixed;
    z-index: 1045;
    right: 19px;
    bottom: 76px;
    background: red;
    padding: 3px;
    border-radius: 50%;
    border: red;
    height: 24px;
    width: 24px;
}

.badge-bag span {
    top: -3px;
    position: relative;
    color: #FFFFFF;
}

.btn-pink {
    color: #fff;
    background-color: #f2bfcc;
    border-color: #f2bfcc;
}
.btn-pink:hover {
    color: #000;
    background-color: #fff;
    border-color: #f2bfcc;
}

.text-name {
    font-size: .8rem;
}