* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f4f6fa;
  color: #333;
}

header {
  background-color: #280269;
  color: white;
  padding: 1rem 2rem;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-bar h1 {
  font-size: 25px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  height: 275px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero a {
  color: rgb(13, 203, 7);
  text-decoration: none;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}

.hero-text {
  color: white;
  text-shadow: 2px 2px 4px #000;
  padding: 2rem;
  position: absolute;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

main {
  padding: 5px;
  max-width: 900px;
  margin: 2rem auto;
}

main .titulo {
  text-align: center;
  color: #280269;
  text-shadow: #000 1px 1px 2px;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.card h1 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
  text-shadow: none;
}

.menu-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card p {
  margin: 10px 0 5px;
  line-height: 1.5;
}

.card ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.card li {
  margin-bottom: 5px;
}

.card .price {
  font-size: 22px;
  color: #2e7d32;
  margin-top: 10px;
  font-weight: bold;
  text-shadow: #025302 1px 1px 2px;
}

footer {
  background-color: #280269;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  width: 100%;
}
