* {margin: 0;
padding: 0;}

.sec1{width: 100%;
height: 100px;
display: flex;}

#logo {height: 104px;
width: 120px;
margin-left: 50px;}

.ul1 {display: flex;
width: 40%;
height: 60%;
list-style: none;
justify-content: space-between;
margin-left: 100px;}

.ul1>li{color: #FF914D;
margin-right: 15px;
width: 16%;
margin-top: 45px;}

#conta {width: 30px;
height: 30px;
margin-left: 300px;
margin-top: 5px;
}

.carrinho{ width: 30px;
height: 30px;
margin-left: 303px;
margin-top: 5px;}

#pesquisa{width: 30px;
height: 30px;
margin-left: 305px;
margin-top: 5px;}

#txtbarra {width: 200px;
height: 30px;
margin-left: 304px;}

#banner {width: 99.99%;}

#prod1 {width: 400px;
height: 400px;
margin-left: 50px;}
.produtos {
  display: flex;       
  gap: 40px;             
  justify-content: center; 
}

.produto {
  text-align: center;
  max-width: 250px;        
}

.produtos {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 40px;
  justify-content: center;
}

.btn{background-color: #FF914D;
color: white;}



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 2px solid #f0f0f0;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #ff6600;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #222;
}


.quem-somos {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.quem-somos h1 {
  color: #ff6600;
  text-align: center;
  margin-bottom: 40px;
}

.content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.content img {
  width: 40%;
  border-radius: 8px;
}

.content p {
  width: 60%;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}


.botao {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  background-color: #ff6600;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.botao:hover {
  background-color: #cc5200;
}

.centralizado {
  text-align: center;
}


@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  .content img,
  .content p {
    width: 100%;
  }
}



