/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
  background: #fff8f3;
  color: #4a2e2a;
}

/* =====================
   TOPO
===================== */
.topo {
  background: linear-gradient(135deg, #f7c8c8, #fde2d2);
  padding: 24px 16px;
  text-align: center;
  border-bottom: 3px solid #d4a373;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.topo h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #7a3e3e;
}

.topo p {
  margin-top: 6px;
  font-size: 14px;
  color: #6b4a45;
}

/* =====================
   CATEGORIAS
===================== */
.categorias {
  display: flex;
  background: #fff;
  border-bottom: 1px solid #e6d5c3;
}

.categorias button {
  flex: 1;
  padding: 14px 6px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #7a5c58;
  cursor: pointer;
  transition: all 0.2s ease;
}

.categorias button.ativo {
  color: #b35c44;
  border-bottom: 3px solid #b35c44;
}

/* =====================
   LISTAS
===================== */
.lista {
  display: none;
  padding-bottom: 20px;
}

.lista.ativo {
  display: block;
}

/* =====================
   PRODUTO
===================== */
.produto {
  display: flex;
  background: #ffffff;
  margin: 14px;
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.produto:hover {
  transform: scale(1.01);
}

.produto img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #f0e0d0;
}

/* =====================
   INFO PRODUTO
===================== */
.info {
  margin-left: 12px;
  flex: 1;
}

.info h3 {
  font-size: 15px;
  font-weight: 600;
  color: #5a2f2f;
}

.info p {
  margin: 6px 0;
  font-size: 13px;
  line-height: 1.4;
  color: #6b4a45;
}

.info strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: #b35c44;
}

/* =====================
   BOTÃO PEDIR
===================== */
.info button {
  margin-top: 10px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #b35c44, #d07a5f);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.info button:hover {
  background: linear-gradient(135deg, #9c4c38, #c46a52);
  transform: scale(1.03);
}

/* =====================
   EM BREVE
===================== */
.em-breve {
  padding: 30px;
  text-align: center;
  font-size: 14px;
  color: #8c6b66;
}
/* =====================
   PÁGINA INICIAL
===================== */
.apresentacao {
  height: 100vh;
  background: linear-gradient(135deg, #f7c8c8, #fde2d2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.apresentacao-conteudo h1 {
  font-size: 42px;
  font-weight: 600;
  color: #7a3e3e;
  margin-bottom: 16px;
}

.slogan {
  font-size: 16px;
  color: #6b4a45;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-cardapio {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #b35c44, #d07a5f);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cardapio:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(0,0,0,0.18);
}
/* =====================
   HERO / TOPO PRINCIPAL
===================== */
.hero {
  position: relative;
  height: 320px;
  background-image: url('fundo-doce.jpg'); /* imagem de fundo */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 243, 0.9); /* mesma base do body */
}

.hero-content {
  position: relative;
  background: #ffffff;
  padding: 22px 18px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* STATUS */
.status {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f7c8c8;
  color: #7a3e3e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* LOGO */
.logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 10px auto;
  border-radius: 50%;
  overflow: hidden;

  display: block;
  margin: 10px auto;

  background: #fff;
}

/* TÍTULO */
.hero-content h1 {
  font-size: 18px;
  font-weight: 600;
  color: #5a2f2f;
  margin-top: 6px;
}

/* INFOS */
.infos {
  margin-top: 8px;
  font-size: 12px;
  color: #7a5c58;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* =====================
   BOTÃO WHATSAPP
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #1ebc57);
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}