body {
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;

  background: url('imagens/logo.jpeg') no-repeat center center fixed;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85); /* controla transparência */
  z-index: -1;
}

background-size: contain;
background-repeat: no-repeat;
background-position: center;

/* BANNER */
.banner {
  width: 100%;
  height: 250px;
  background: url('banner.jpg') center/cover no-repeat;
}

/* LOGO */
.logo {
  width: 300px;
  margin-top: -60px;
  border-radius: 50%;
  border: 5px solid white;
  background: white;
}

/* TEXTOS */
h1 {
  margin-top: 10px;
}

.frase {
  color: #555;
}

/* BOTÕES */
.botoes {
  margin: 15px 0;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 5px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.whats {
  background: #25D366;
}

.cardapio {
  background: #8B4513;
}

/* PRODUTOS */
.produtos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* CARD */
.card {
  background: white;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* IMAGEM */
.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* TEXTO */
.card p {
  margin: 10px 0;
  font-weight: bold;
}