@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Roboto:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

body {
    margin: 0;
    background-image: url(../img/FUNDO\ CINA\ PNG.png);
    overflow-x: hidden;
}
.conteiner-fluid-callaction{
    margin-top: 15px;
}
.conteiner-fluid-bestsellers {
    width: 100%;
    height: auto;
    margin-top: 2em;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 0px 300px 0px 300px;
}

.conteiner-fluid-bestsellers-items {
    width: auto;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;

}

.conteiner-fluid-bestsellers-items .conteiner-fluid-product-item img {
    width: 250px;
    height: 280px;
    margin: 9px;
    display: flex;
    justify-content: center;
    transition: transform .2s;
    box-shadow: 5px 10px 8px #8888884b;

}

.conteiner-fluid-bestsellers-items .conteiner-fluid-product-item {
    margin-bottom: 25px;
}

.conteiner-fluid-bestsellers-items .conteiner-fluid-product-item img:hover {
    transform: scale(1.1);
}

/*1440*/
@media (max-width: 1440px) {
    .conteiner-fluid-bestsellers{
        padding: 0px 200px 0px 200px;
    }
    .conteiner-fluid-bestsellers-items .conteiner-fluid-product-item img {
        width: 230px;
        height: 250px;
    }
    .conteiner-fluid-bestsellers-items .conteiner-fluid-product-item {
        margin-bottom: 20px;
    }
}
/*1400*/
@media (max-width: 1400px){
    .conteiner-fluid-bestsellers-items .conteiner-fluid-product-item img {
        width: 210px;
        height: 240px;
    }
}
/*1024*/
@media (max-width: 1024px) {
    .conteiner-fluid-bestsellers{
        padding: 0px 110px 0px 110px;
    }
    .conteiner-fluid-bestsellers-items .conteiner-fluid-product-item img {
        width: 180px;
        height: 210px;
    }
    .conteiner-fluid-bestsellers-items .conteiner-fluid-product-item {
        margin-bottom: 15px;
    }
}
/*768*/
@media (max-width: 768px){
    .conteiner-fluid-bestsellers-items .conteiner-fluid-product-item img {
        width: 170px;
        height: 200px;
    }
    .conteiner-fluid-bestsellers-items .conteiner-fluid-product-item {
        margin-bottom: 10px;
    }
}
/*430*/
@media (max-width: 430px){
    .conteiner-fluid-bestsellers{
        padding: 0px 60px 0px 60px;
    }
    .conteiner-fluid-bestsellers-items .conteiner-fluid-product-item img {
        width: 130px;
        height: 160px;
    }
}
/*380*/
@media (max-width: 380px){
    .conteiner-fluid-bestsellers{
        padding: 0px 50px 0px 50px;
    }
    .conteiner-fluid-bestsellers-items .conteiner-fluid-product-item img {
        width: 110px;
        height: 140px;
    }
}
/*330*/
@media (max-width: 330px){
    .conteiner-fluid-bestsellers{
        padding: 0px 40px 0px 40px;
    }
    .conteiner-fluid-bestsellers-items .conteiner-fluid-product-item img {
        width: 100px;
        height: 130px;
    }
}