* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
body {
  background: #f4f4f4;
}
nav {
  background: linear-gradient(90deg, #8e2a2a, #c0392b);
  display: flex;
  justify-content: center;
  padding: 15px;
  position: sticky;
  top: 0;
}
nav a {
  color: white;
  margin: 0 20px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
nav a:hover {
  color: #ffd700;
}
header {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url(comidas.JPEG);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
}

header h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

header p {
  font-size: 20px;
}
section {
  max-width: 1000px;
  margin: -60px auto 40px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
h2 {
  margin-bottom: 15px;
  color: #c0392b;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.card:hover {
  transform: translateY(-10px);
  background: #f1c40f;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card:active,
.card:focus {
  background: #fafafa;
  transform: none;
}

button {
  background: #c0392b;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #744743;
}
footer {
  background: #222;
  color: whitesmoke;
  text-align: center;
  padding: 15px;
}
.contato {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -80px;
}
.box-contato {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-align: center;
}
.box-contato h2 {
  margin-bottom: 15px;
  color: #c0392b;
}
.box-contato input,
.box-contato textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.box-contato textarea {
  height: 100px;
  resize: none;
}
.box-contato button {
  width: 100%;
}