.produtos__banner{
    display: flex;
    justify-content: space-between;
    padding: 3rem 4rem;
}

.produtos__banner_item{
    color: white;
    text-align: center;
    width: 25%;
}

.banner__item_dia{
    align-self: flex-start;
}

.banner__item_modeladora{
    align-self: center;
}

.banner__item_fashion{
    align-self: flex-end;
}

.banner_img{
    border-radius: 8px;
}
/* até aqui configurações do Banner */

.produtos {
    color: white;
    background-color: black;
    /* display: flex;
    justify-content: space-between; */
    /* width: 100%; */
    padding: 2rem 4rem;
}

.produtos__titulo{
    font-size: 3rem;
    font-weight: 1px;
    margin-left: 4rem;
}

.produtos__lista {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    text-align: center;
    margin: 0 1rem;
    padding: 2rem 0;
}
.produtos__item {
    width: 19%;
    margin-bottom: 3%;
}

.produtos__label{
    color:white;
    font-size: 1.2rem;
}

.produtos__img {
    border-radius: 15%;
    width: 80%;
}

.produtos__botao {
    text-align: center;
    background: black;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
    font-size: 0.8rem;
    padding: 0.4rem;
    width: 30%;
    transition: all .1s ease-in-out;
}

.produtos__botao:hover {
    border: 2px solid white;
    font-weight: bolder;
}