.cabecalho{
    justify-content: space-between;
    display: flex;
    width: 100%;
    height: 80px;
    background-color: rgb(255, 255, 255);
    border-bottom: 2px solid black;
}

/* Futuramente, este botão abrirá o menu lateral com links para "Sobre a empresa" e "Vitrine */
.btn-menu{
    
    display: flex;
    width: 50px;
    height: 50px;
    background-color: rgb(255, 255, 255);
    justify-content: center;
    border: 0px;
    margin: 10px;
}

.img-menu{
    width: 50px;
    height: 50px;
    background-color: rgb(250, 250, 250);
}

.logo{
    align-content:flex-start;
    height: 100%;
}

.titulo{
    text-align: center;
}

.vitrine{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 30px;
}
/*telas pequenas(celular)*/
@media (max-width: 600px) {
  .vitrine {
    flex-direction: column;
    align-items: center;
  }
}
/*modifica a imagem do produto*/
.container .produtos img{
    height: 320px;
    width: 290px;
}  
/*img e informacao */
.produtos{
    list-style-type: none;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    border: 1px solid rgb(0, 0, 0);
    height: 460px;
    width: 300px;
    border-radius: 10px;
}
.nome-produto{
    font-size: 20px;
    font-weight:bold;
    margin: 0%;
    text-align: center;
}

.informacao{
    background-color: rgb(255, 255, 255);
    padding: 10px;
    font-size: 20px;
    height: 180px;
    text-align:left;
}
body{
  background-color: rgb(255, 255, 255);
  margin: 0px; 
}

.rodape{
    flex-direction: row;
    justify-content: center;
    text-align: center;
    color: rgb(83, 83, 83);
    background-color: rgb(255, 255, 255);
    height: 80px;
    font-weight: bold;
    font-size: 20px;
}