* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol,
li {
    list-style: none;
}

body{
    width: 100vw;
    height: 100vh;
}

header {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100px;
    font-size: 14px;
}

.primeiraParte {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(0, 0, 0, .5);
    padding: 0 40px; /* espaço só dos lados */
}

.nossasMarcas {
    display: flex;
    align-items: center;
    gap: 5px;
}

.listaItens {
    display: flex;
    gap: 20px;
}

.listaItens li {
    padding-left: 15px; /* espaço antes da barrinha */
}

.listaItens li a {
    text-decoration: none;
    color: inherit;
}

.listaItens li a:hover {
    color: dodgerblue;
    transition: 0.3s ease;
}

.barrinha li:not(:first-child) {
    border-left: 1px solid rgba(0,0,0,.3);
}

.segundaParte {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-size: 12px;
    background-color: #ebd8e583;
    padding: 0 40px; /* espaço só dos lados */
}

.logo{
    height: 24px;
}

.icons {
    width: 70px;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
}


/*****************************************************************************************************************************/
/* MAIN */

main{
    height: auto;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
}

.conjunto-cards{
    height: 100%;
    width: 80vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.card{
    height: 40vh;
    width: 32vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    box-shadow: black 0 1px 10px;
    border-radius: 4px;
    text-align: start;
    gap: 12px;
    padding: 12px;
}

.imgProduto{
    height: 40%;
    width: 60%;
}

.nomeProduto{
    font-size: 2rem;
    font-weight: bolder;
}

.preco{
    font-size: 2rem;
    font-weight: bolder;
}