* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #fdf6ec, #fbe8d3);
  color: #444;
  line-height: 1.7;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #ca6f1e, #e59866);
  padding: 1rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header h2 a {
  color: #fff;
  text-decoration: none;
  font-family: "Georgia", serif;
  font-size: 1.8rem;
}

header nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.7rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #ffe6cc;
}

.name h2 {
  text-align: center;
  font-size: 2rem;
  color: #ca6f1e;
  margin: 2rem 0;
  position: relative;
}

.name h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #e59866;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 2rem 3rem;
}

.lista div {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid #f3d6b0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18), 0 0 0 2px #fdf0e5 inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}
.lista div:nth-child(1) {
  animation-delay: 0.1s;
}
.lista div:nth-child(2) {
  animation-delay: 0.2s;
}
.lista div:nth-child(3) {
  animation-delay: 0.3s;
}
.lista div:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lista div:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3), 0 0 0 2px #e59866 inset;
  border-color: #e59866;
}

.lista h3 {
  background: linear-gradient(90deg, #e59866, #ca6f1e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.lista ul {
  list-style: none;
}

.lista li {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  padding: 0.3rem;
  border-bottom: 1px dotted #ddd;
  transition: background 0.3s ease;
}

.lista li::before {
  content: "🍽️";
  margin-right: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.lista li:hover::before {
  transform: rotate(15deg) scale(1.2);
}

.lista li:hover {
  background: #fdf0e5;
  transform: scale(1.02);
  transition: transform 0.3s ease, background 0.3s ease;
}

#preco {
  display: inline-block;
  background: linear-gradient(90deg, #f5d6b0, #fce8d8);
  color: #a04000;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  margin-left: 5px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

footer {
  text-align: center;
  background: linear-gradient(90deg, #ca6f1e, #e59866);
  color: #fff;
  padding: 1.5rem;
  margin-top: 3rem;
  font-size: 0.95rem;
  box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.05),
    0 -3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0 0;
}

footer a {
  color: #ffe6cc;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .lista {
    grid-template-columns: 1fr;
    padding: 0 1rem 2rem;
  }
}
