body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #252525;
}
header {
  background-color: #000000;
  background-position: center;
  color: #fff;
  padding: 5px 0;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2.5em;
  background-color: #000000;
}
header p {
  font-size: 1.2em;
  margin: 10px 0;
}
header img.logo {
 border-radius: 10px;
  width: 400px;
  height: 200px;
}
header p.slogan {
  font-style: italic;
  color: #ccc;
}
/* MODAL BOAS VINDAS */
.modal{
  width: 560px;
  height: 320px;
 background-color: #252525;
  color: white;
  text-align: center;
}
.modal-boas-vindas{
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0,0.5);
  position: fixed;
  top:0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;

}
nav {
  background-color: #0d0d0d;
  color: #fff;
  padding: 10px 0;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
nav ul li {
  margin: 0 100px ;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
nav ul li a:hover {
  text-decoration: underline;
}
section#produtos {
  padding: 20px;
  background-color: #ddd9d9;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
section li {
  border: solid silver 1px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section#produtos h2 {
  font-size: 2em;
  margin-bottom: 10px;
}
section#produtos p {
  font-size: 1.2em;
  margin-bottom: 20px;
  text-align: justify;
}
section#produtos ul.lista-produtos {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}
section#produtos ul.lista-produtos li {
  background-color: #f9f9f9;
  border: 1px solid silver;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  border-style: groove;
}
section#produtos ul.lista-produtos li img {
  width: 100%;
  height: 150px;
  border-radius: 5px;
}
section#sobre,
section#contato {
  padding: 20px;
  background-color: #fff;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
section#sobre h2,
section#contato h2 {
  font-size: 2em;
  margin-bottom: 10px;
}
section#sobre p,
section#contato p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
section#contato form {
  display: flex;
  flex-direction: column;
}
section#contato form label {
  margin-bottom: 5px;
  font-weight: bold;
}

section#contato form input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
section#contato form .botao {
  padding: 10px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.botao{
   font-weight: bold;
   width: 120px;
  height: 50px;
}
.botao:hover{
  color: red;
  background-color: #3f3f3f;
}
section#contato form button:hover {
  background-color: #555;
}
footer {
  background-color: #0d0d0d;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}
#resposta{
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  header h1 {
    font-size: 2em;
  }
  nav ul {
    flex-direction: column;
  }
  nav ul li {
    margin: 10px 0;
  }
  section#produtos ul.lista-produtos {
    grid-template-columns: 1fr;
  }
}
section#produtos ul.lista-produtos li {
  transition: transform 0.3s;
}
section#produtos ul.lista-produtos li:hover {
  transform: scale(1.05);
}
nav ul li a:hover {
  color: #EACB60; 
}
