body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('img/fundo\ da\ pagina.jpg');
}

header {
  background-color: #ffee00;
  align-items: center;
  display: flex;
  border: 2px solid #000;
}

#logo {
  height: 10%;
}

#sobre {
  text-align: center;
  padding: 40px;
  background-image: url('img/fundo\ da\ pagina.jpg');
}

.container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.column-text {
  display: flex;
  align-items: center;
  max-width:  100%;
  box-sizing: border-box;
  border: 3px solid #000000;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #ffffff;

  
  

  flex-basis: calc(50% - 40px); /* 50% width with margins and paddings */
}

h6 {
  font-size: 50px;
  font-family: 'Roboto', sans-serif;
  margin-top: -10px;
  margin-bottom: -3px;
}

h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  display: inline;
  max-width: 100%;
}

.column-text img {
  max-width: 70%;
  border-right: 3px solid #000000;
  padding-right: 20px;
}

.column-image img:hover {
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
}

.column-text,
.column-image {
  max-width: 100%;
}

.column h1 {
  text-align: center;
  margin-left: 80px;
  font-size: 70px;
}

.column img {
  max-width: 30%;
  margin-left: 50px;
}

.discount {
  color: green;
}

.product:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

#produtos {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: space-between;
 
}

.product {
  flex: 1;
  width: calc(50% - 2%);
  margin: 1%;
  padding: 20px;
  border: 3px solid #000000;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product img {
  max-width: 100%;
  height: auto;
  border-bottom: 3px solid #000000;
  padding-bottom: 10px;
}

.product h2 {
  margin: 10px 0;
}

.product p {
  margin-bottom: 10px;
  font-size: 14px;
}

.product button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 10px;
}

.product button:hover {
  background-color: #45a049;
}

footer {
  background-color: #ffee00;
  padding: 10px;
  text-align: center;
  margin-top: 10%;
  border: 3px solid #000000;
}

@media (max-width: 768px) {
  .product {
    flex: 30%;
  }
}
  .column-text img {
    max-width: 50%;
  }
@media (max-width: 640px) {
  #produtos {
      flex-direction: column;
      padding: 10px;
      align-items: center;
  
  .column {
      text-align: center;
      width: 100%;
  }
  .column-text img {
    max-width: 50%;
  }
}
header .column img {
  display: none;
}
}


@media (max-width: 430px) {
  footer {
    margin-top: 5%; /* Ajuste a margem superior para telas menores */
  }

  .column-text {
    flex-direction: column;
    padding: 5px; /* Ajuste o padding para telas menores */
  
}

  header {
    padding: 5px; /* Ajuste o padding para telas menores */
  }
}