@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;700&family=Great+Vibes&display=swap");

body {
  font-family: "Cormorant Garamond", serif;
  background: #f8f5f2;
  color: #333333;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  overflow-x: hidden;
}

h1 {
  font-family: "Great Vibes", cursive;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  padding-bottom: 15px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #d4af37, #4169e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid #d4af37;
}

h2 {
  font-family: "Great Vibes", cursive;
  font-size: 3.2rem;
  color: #4169e1;
  border-bottom: 2px dashed #d4af37;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 1px;
}

/* Menu de navegação estilo abas */
.menu {
  max-width: 960px;
  margin: 0 auto;
  background-color: transparent;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: 0 20px;
  position: sticky;
  top: 0;
  background: #f8f5f2;
  z-index: 10;
  border-bottom: 4px solid #daa520;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 0 5px;
}

.menu a {
  display: block;
  padding: 15px 35px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35em;
  color: #4169e1;
  background-color: #f8f5f2;
  border: 1px solid #e0e0e0;
  border-bottom: none;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  top: 1px;
  white-space: nowrap;
}

.menu a:hover {
  background-color: #fff0f5;
  color: #daa520;
  border-color: #daa520;
}

.menu a.active {
  background-color: #fffbf0;
  border-color: #d4af37;
  color: #d4af37;
  font-weight: 700;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  top: 0;
  pointer-events: none;
}

/* Conteúdo principal */
.content-container {
  max-width: 960px;
  margin: 40px auto 80px auto;
  background: white;
  padding: 30px 40px;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}

/* Cardápio - estrutura dos produtos */
.produtos-lista {
  list-style: none;
  padding: 0;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.produto {
  background: #fff;
  border: 3px solid #ffc0cb;
  border-radius: 18px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(255, 192, 203, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.produto:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 192, 203, 0.3);
  border-color: #ff69b4;
}

.produto .foto {
  height: 180px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.produto .foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.produto .descricao {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.produto .descricao h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  color: #4169e1;
  margin-bottom: 10px;
}

.produto .descricao p {
  flex-grow: 1;
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.produto .preco {
  color: #d4af37;
  font-weight: bold;
  font-size: 1.4em;
  text-align: right;
  margin-bottom: 15px;
  text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1);
}

.btn {
  text-decoration: none; /* Remove a linha embaixo */
  color: white; /* Rosa choque */
  background-color: #ff69b4; /* Fundo rosa choque */
  padding: 12px 25px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ff007f; /* Rosa mais escuro no hover */
  color: white; /* Texto branco no hover */
}

/* Contato */
#contato {
  padding: 40px 20px;
  text-align: center;
  background-color: white;
  border-radius: 15px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 8px 15px rgba(255, 192, 203, 0.2);
}

#contato h2 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: #4169e1;
  margin-bottom: 20px;
}

#contato p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

#contato .btn {
  padding: 12px 25px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #fff7fb;
  color: #3d2153;
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
  border-top: 2px solid #d4af37;
  margin-top: 50px;
}

/* Responsividade simples */
@media (max-width: 768px) {
  .menu ul {
    flex-wrap: wrap;
  }
  .menu a {
    padding: 10px 15px;
    font-size: 1.1em;
    margin: 3px 0;
    flex: 1 1 30%;
    text-align: center;
  }
  .content-container {
    margin: 20px 10px 40px 10px;
    padding: 20px;
  }
  .produtos-lista {
    max-width: 100%;
    padding: 0 10px;
    justify-content: center;
  }
  .produto {
    width: 100%;
    max-width: 350px;
  }
}
