.header {
  
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: relative;
  top:0;
  left:0;  
  width: 100%;
  z-index:1;
  float:left; 
}

.produtos-destaque {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
  }
  
  .produtos-destaque h1 {
    width: 100%;
    margin: 20px 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: rgb(62, 0, 0);

  }
  
  .produto {
    text-align: center;
    margin: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
  }
  
  .produto img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 5px;
  }
  
  .produto h3 {
    margin: 10px 0;
  }
  
  .produto p {
    margin: 5px 0;
  }
  
  .produto button {
    padding: 10px 20px;
    background-color:rgb(62, 0, 0);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  