:root {
  --brown-dark: #2c1810;
  --brown-mid: #5c3d2e;
  --brown-light: #8b5e3c;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #fdf6ee;
  --cream-dark: #f5e6d0;
  --pink: #e8a0a0;
  --pink-dark: #c97070;
  --white: #ffffff;
  --text-dark: #1a0f0a;
  --text-mid: #4a2c1a;
  --shadow: rgba(44, 24, 16, 0.15);
}

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

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}


/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  margin-top: 70px;
  min-height: 100%;
  background: url('../img/bannderAniversario.png') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 5%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 65%
  );
}
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.15) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 560px; */
  text-align: center;
  margin: 0 auto;
  padding: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
}
.hero-visual {
  position: relative;
  z-index: 2;
  max-width: 440px;
}
.hero-img-wrap {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.2),
    rgba(201, 168, 76, 0.05)
  );
  border: 2px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9rem;
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.hero-layout {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  justify-content: center;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Barra contador ─────────────────────────────────────────── */
.aniv-barra {
  background: #2c1a0e;
  padding: 14px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
}
.aniv-barra span { color: var(--cor-dourado); }

/* ── Seções ─────────────────────────────────────────────────── */
.aniv-sec        { padding: 64px 0; }
.aniv-sec--white { background: #fff; }
.aniv-sec--alt   { background: var(--cor-bg-cardapio); }
.aniv-sec--muted { background: var(--cor-bg-muted); }

.aniv-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.aniv-step-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cor-acento);
  margin-bottom: 6px;
}
.aniv-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cor-acento);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.aniv-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: var(--cor-primaria-hover);
  margin: 0 0 6px;
  letter-spacing: -.5px;
}
.aniv-title em { font-style: italic; color: var(--cor-acento); }
.aniv-sub {
  font-size: 13px;
  color: var(--cor-texto-muted);
  margin: 0 0 32px;
  line-height: 1.7;
  max-width: 540px;
}
.aniv-divider {
  width: 40px;
  height: 2px;
  background: var(--cor-acento);
  margin: 10px 0 20px;
}

/* ================================================================
   PASSO 1 — Quantidade
================================================================ */
.aniv-qty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .aniv-qty-grid { grid-template-columns: 1fr; max-width: 300px; }
}

.aniv-qty-card {
  border: 1.5px solid var(--cor-borda-suave);
  border-radius: var(--raio-lg);
  padding: 24px 18px 20px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  position: relative;
  transition: var(--transition);
}
.aniv-qty-card:hover {
  border-color: var(--cor-acento);
  transform: translateY(-4px);
  box-shadow: var(--sombra-lg);
}
.aniv-qty-card.selected {
  border-color: var(--cor-acento);
  background: #fdf6ee;
  box-shadow: 0 0 0 3px rgba(181,101,29,.12);
}
.aniv-qty-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cor-acento);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--raio-pill);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.aniv-qty-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cor-acento);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.aniv-qty-card.selected .aniv-qty-check { display: flex; }
.aniv-qty-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cor-primaria-hover);
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}
.aniv-qty-unit {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  display: block;
  margin-bottom: 14px;
}
.aniv-qty-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cor-acento);
  display: block;
  margin-bottom: 2px;
}
.aniv-qty-per { font-size: 11px; color: #aaa; }

/* Spinner de centos (só para 100) */
.aniv-centos-wrap {
  display: none;
  margin-top: 14px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff7f0;
  border: 1.5px solid var(--cor-acento);
  border-radius: var(--raio-md);
  padding: 10px 16px;
}
.aniv-qty-card.selected .aniv-centos-wrap { display: flex; }

.aniv-centos-wrap input[type="range"] {
  width: 90px;
  accent-color: var(--cor-acento);
}
.aniv-centos-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--cor-acento);
  min-width: 80px;
  text-align: center;
}
.aniv-centos-total {
  font-size: 11px;
  color: var(--cor-texto-muted);
}

/* ================================================================
   PASSO 2 — Sabores: lista compacta estilo menu
================================================================ */
.aniv-flav-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Lista estilo menu */
.aniv-flav-list {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--cor-borda-suave);
  border-radius: var(--raio-lg);
  overflow: hidden;
  background: #fff;
}

.aniv-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-bottom: 0.5px solid var(--cor-borda-suave);
  cursor: pointer;
  transition: background .18s, border-color .18s;
  position: relative;
}
.aniv-menu-item:last-child { border-bottom: none; }
.aniv-menu-item:hover { background: #fdf9f5; }
.aniv-menu-item.selected {
  background: #fdf6ee;
  border-left: 3px solid var(--cor-acento);
}

.aniv-menu-img-wrap {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cor-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aniv-menu-img-wrap img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
}
.aniv-menu-emoji-fb {
  font-size: 24px;
  line-height: 1;
}

.aniv-menu-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.aniv-menu-nome {
  font-size: 13px;
  font-weight: 700;
  color: var(--cor-primaria-hover);
}
.aniv-menu-desc {
  font-size: 11px;
  color: var(--cor-texto-muted);
}

.aniv-menu-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cor-borda-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
  color: transparent;
}
.aniv-menu-check svg {
  width: 10px;
  height: 10px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.aniv-menu-item.selected .aniv-menu-check {
  background: var(--cor-acento);
  color: #fff;
}

/* Categoria pill */
.aniv-cat-pill {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: var(--raio-pill);
  background: rgba(181,101,29,.10);
  color: var(--cor-acento);
  display: inline-block;
  margin-top: 2px;
  width: fit-content;
}

/* Summary pills */
.aniv-sel-summary {
  background: #fdf6ee;
  border: 1.5px solid rgba(181,101,29,.25);
  border-radius: var(--raio-md);
  padding: 12px 14px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--cor-acento);
  font-weight: 700;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.aniv-sel-summary .pill {
  background: var(--cor-acento);
  color: #fff;
  border-radius: var(--raio-pill);
  padding: 3px 10px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.aniv-sel-summary .pill button {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  padding: 0 0 0 2px;
}
.aniv-placeholder {
  color: rgba(181,101,29,.45);
  font-weight: 500;
  font-size: 12px;
}
.aniv-hint {
  font-size: 12px;
  color: var(--cor-texto-suave);
  margin-top: 10px;
}

/* ================================================================
   PASSO 3 — Embalagem
================================================================ */
.aniv-emb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 560px) { .aniv-emb-grid { grid-template-columns: 1fr; } }

.aniv-emb-card {
  border: 1.5px solid var(--cor-borda-suave);
  border-radius: var(--raio-md);
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: var(--transition);
}
.aniv-emb-card:hover { border-color: var(--cor-acento); transform: translateY(-3px); }
.aniv-emb-card.selected {
  border-color: var(--cor-acento);
  background: #fdf6ee;
  box-shadow: 0 0 0 3px rgba(181,101,29,.1);
}
.aniv-emb-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.aniv-emb-name { font-size: 13px; font-weight: 700; color: var(--cor-primaria-hover); display: block; margin-bottom: 3px; }
.aniv-emb-desc { font-size: 11px; color: var(--cor-texto-muted); }

/* ================================================================
   PASSO 4 — Dados + Resumo
================================================================ */
.aniv-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 768px) { .aniv-form-grid { grid-template-columns: 1fr; } }

.aniv-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--cor-texto-muted);
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.aniv-label .req { color: var(--cor-erro); }
.aniv-field { margin-bottom: 14px; }
.aniv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .aniv-row { grid-template-columns: 1fr; } }

/* CEP row */
.aniv-cep-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.aniv-cep-row .drawer-input { flex: 1; }
.aniv-cep-btn {
  background: var(--cor-acento);
  color: #fff;
  border: none;
  border-radius: var(--raio-md);
  padding: 0 16px;
  height: 42px;
  font-size: 12px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.aniv-cep-btn:hover { background: var(--cor-acento-hover); }
.aniv-cep-btn:disabled { opacity: .6; cursor: not-allowed; }
.cep-info {
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  min-height: 18px;
}
.drawer-input[readonly] {
  background: var(--cor-bg-muted);
  color: var(--cor-texto-muted);
  cursor: default;
}

/* Resumo */
.aniv-resumo {
  background: #fff;
  border: 0.5px solid var(--cor-borda-acento);
  border-radius: var(--raio-lg);
  padding: 24px;
  position: sticky;
  top: 24px;
}
.aniv-resumo-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cor-acento);
  margin-bottom: 16px;
}
.aniv-resumo-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 0.5px solid var(--cor-borda-suave);
  font-size: 13px;
  color: var(--cor-texto-medio);
  gap: 8px;
}
.aniv-resumo-row:last-of-type { border: none; }
.aniv-resumo-val {
  font-weight: 700;
  color: var(--cor-primaria-hover);
  text-align: right;
  max-width: 60%;
}
.aniv-resumo-divider {
  border: none;
  border-top: 1.5px solid var(--cor-borda-acento);
  margin: 4px 0 12px;
}
.aniv-resumo-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aniv-resumo-total-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--cor-primaria-hover);
}
.aniv-resumo-total-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--cor-acento);
}

/* Botão WhatsApp */
.aniv-btn-wpp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: var(--raio-md);
  font-size: 15px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  letter-spacing: .3px;
  transition: var(--transition);
  margin-top: 20px;
}
.aniv-btn-wpp:hover {
  background: #1ebc57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.aniv-btn-wpp svg { flex-shrink: 0; }

/* ================================================================
   Depoimentos
================================================================ */
.aniv-dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.aniv-dep-card {
  background: #fff;
  border: 0.5px solid var(--cor-borda-acento);
  border-radius: var(--raio-lg);
  padding: 24px;
}
.aniv-dep-stars { color: var(--cor-dourado); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.aniv-dep-text  { font-size: 13px; color: var(--cor-texto-muted); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.aniv-dep-author { display: flex; align-items: center; gap: 12px; }
.aniv-dep-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cor-primaria), var(--cor-acento));
  color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aniv-dep-name { font-size: 13px; font-weight: 700; color: var(--cor-primaria-hover); }
.aniv-dep-loc  { font-size: 11px; color: var(--cor-texto-suave); margin-top: 1px; }

/* ================================================================
   Toast
================================================================ */
.aniv-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--cor-primaria-hover);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--raio-pill);
  font-size: 13px;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  white-space: nowrap;
  box-shadow: var(--sombra-lg);
}
.aniv-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ================================================================
   Badge topo hero
================================================================ */
.aniv-badge-topo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,159,39,.18);
  border: 0.5px solid rgba(239,159,39,.45);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cor-dourado);
  margin-bottom: 18px;
}

/* ================================================================
   Como funciona
================================================================ */
.sec-como { padding: 60px 0; background: var(--cor-bg-muted); }
.sec-title { text-align: center; margin-bottom: 36px; }
.sec-title h2 { font-family: "Playfair Display", serif; font-size: clamp(20px, 3.5vw, 28px); font-weight: 800; color: var(--cor-primaria-hover); margin-bottom: 6px; }
.sec-title p  { font-size: 13px; color: var(--cor-texto-muted); }
.dep-divider  { width: 40px; height: 2px; background: var(--cor-acento); margin: 0 auto 32px; }
.como-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 700px) {
  .como-grid { grid-template-columns: 1fr; }
  .como-seta { display: none; }
}
.como-item { text-align: center; padding: 24px 16px; background: #fff; border-radius: var(--raio-lg); border: 0.5px solid var(--cor-borda-suave); }
.como-seta { display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--cor-acento); padding-top: 24px; }
.como-numero { font-size: 10px; font-weight: 800; letter-spacing: 2px; color: var(--cor-acento); margin: 0 0 8px; }
.como-icone  { font-size: 2rem; display: block; margin-bottom: 10px; }
.como-titulo { font-size: 13px; font-weight: 700; color: var(--cor-primaria-hover); margin-bottom: 6px; }
.como-desc   { font-size: 12px; color: var(--cor-texto-muted); line-height: 1.6; }

/* ================================================================
   FAQ
================================================================ */
.sec-faq { padding: 60px 0; background: #fff; }
.faq-lista { display: flex; flex-direction: column; gap: 0; border: 0.5px solid var(--cor-borda-suave); border-radius: var(--raio-lg); overflow: hidden; }
.faq-item  { border-bottom: 0.5px solid var(--cor-borda-suave); }
.faq-item:last-child { border-bottom: none; }
.faq-pergunta {
  width: 100%; background: none; border: none; padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left; font-size: 13px; font-weight: 600; color: var(--cor-primaria-hover);
  cursor: pointer; gap: 12px; font-family: "Inter", sans-serif;
  transition: background .15s;
}
.faq-pergunta:hover { background: #fdf9f5; }
.faq-icone { font-size: 18px; color: var(--cor-acento); flex-shrink: 0; transition: transform .2s; }
.faq-item--aberto .faq-icone { transform: rotate(45deg); }
.faq-resposta { padding: 0 20px 16px; font-size: 13px; color: var(--cor-texto-muted); line-height: 1.7; }

* Grid de cards */
.aniv-flav-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  border: none;
  background: transparent;
  overflow: visible;
}

/* Card principal */
.aniv-menu-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 2px solid var(--cor-borda-suave);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  padding: 0;
  text-align: left;
  gap: 0;
}
.aniv-menu-item:hover {
  border-color: var(--cor-acento);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(181,101,29,.14);
}
.aniv-menu-item.selected {
  border-color: var(--cor-acento);
  box-shadow: 0 0 0 3px rgba(181,101,29,.15);
}

/* Foto grande no topo */
.aniv-menu-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cor-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.aniv-menu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.aniv-menu-emoji-fb {
  font-size: 56px;
  line-height: 1;
}

/* Overlay sutil na foto quando selecionado */
.aniv-menu-item.selected .aniv-menu-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(181,101,29,.10);
}

/* Corpo do card */
.aniv-menu-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 14px 16px 16px;
  flex: 1;
}

/* Tags */
.aniv-menu-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.aniv-menu-tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(181,101,29,.10);
  color: var(--cor-acento);
}

/* Nome */
.aniv-menu-nome {
  font-size: 15px;
  font-weight: 700;
  color: var(--cor-primaria-hover);
  line-height: 1.2;
  margin-bottom: 5px;
}

/* Descrição completa */
.aniv-menu-desc {
  font-size: 12px;
  color: var(--cor-texto-muted);
  line-height: 1.6;
  display: block;
  margin-bottom: 12px;
}

/* Rodapé do card com label de seleção */
.aniv-menu-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--cor-borda-suave);
}
.aniv-menu-sel-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--cor-acento);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.aniv-menu-sel-label::before { content: "○  Selecionar"; }
.aniv-menu-item.selected .aniv-menu-sel-label::before { content: "✓  Selecionado"; color: #2d7a2d; }
.aniv-menu-item.selected .aniv-menu-sel-label { color: #2d7a2d; }

/* Check flutuante sobre a foto */
.aniv-menu-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 2px solid var(--cor-borda-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s, border-color .18s;
  color: transparent;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.aniv-menu-check svg { width: 12px; height: 12px; stroke-linecap: round; stroke-linejoin: round; }
.aniv-menu-item.selected .aniv-menu-check {
  background: var(--cor-acento);
  border-color: var(--cor-acento);
  color: #fff;
}

/* Esconde pill antigo */
.aniv-cat-pill { display: none; }

/* ── Filtros ── */
.aniv-flav-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.filtro-btn {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--cor-borda-suave);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--cor-texto-muted);
  cursor: pointer;
  transition: all .15s;
  font-family: "Inter", sans-serif;
}
.filtro-btn:hover { border-color: var(--cor-acento); color: var(--cor-acento); }
.filtro-btn--ativo { background: var(--cor-acento); border-color: var(--cor-acento); color: #fff !important; }

/* ── Contador (4 bolinhas) ── */
.aniv-flav-counter {
  font-size: 12px;
  color: var(--cor-texto-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aniv-flav-counter-dots { display: flex; gap: 5px; }
.aniv-flav-counter-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cor-borda-suave);
  transition: background .2s;
}
.aniv-flav-counter-dot.filled { background: var(--cor-acento); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .aniv-flav-list { grid-template-columns: 1fr 1fr; gap: 12px; }
  .aniv-menu-img-wrap { height: 120px; }
  .aniv-menu-nome { font-size: 13px; }
  .aniv-menu-desc { font-size: 11px; }
  .aniv-menu-info { padding: 10px 12px 12px; }
}
@media (max-width: 380px) {
  .aniv-flav-list { grid-template-columns: 1fr; }
}

/* ── CEP automático ── */
.cep-loading-icon {
  display: inline-block;
  width: 12px; height: 12px;
  border: 2px solid rgba(181,101,29,.3);
  border-top-color: var(--cor-acento);
  border-radius: 50%;
  animation: cep-spin .7s linear infinite;
  margin-right: 4px;
  vertical-align: middle;
}
@keyframes cep-spin { to { transform: rotate(360deg); } }
.drawer-input[readonly].preenchido {
  background: #f5fdf0; color: #2d7a2d; font-weight: 600; border-color: #b8e0b8;
}
.aniv-cep-btn { font-size: 11px; padding: 0 12px; opacity: .65; }

/* ── WhatsApp pulse ── */
@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.25); }
  50%       { box-shadow: 0 8px 32px rgba(37,211,102,.50); }
}
.aniv-btn-wpp { animation: wpp-pulse 2.5s ease-in-out infinite; }
.aniv-btn-wpp:hover { animation: none; }

/* ================================================================
   SABORES — estilo cardápio (igual ao index) com seleção como input
   Cole no FINAL do css/aniversario.css (substitui o bloco anterior)
================================================================ */

/* Grid de cards */
.aniv-flav-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  border: none;
  background: transparent;
  overflow: visible;
}

/* Card principal */
.aniv-menu-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 2px solid var(--cor-borda-suave);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  padding: 0;
  text-align: left;
  gap: 0;
}
.aniv-menu-item:hover {
  border-color: var(--cor-acento);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(181,101,29,.14);
}
.aniv-menu-item.selected {
  border-color: var(--cor-acento);
  box-shadow: 0 0 0 3px rgba(181,101,29,.15);
}

/* Foto grande no topo */
.aniv-menu-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cor-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.aniv-menu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.aniv-menu-emoji-fb {
  font-size: 56px;
  line-height: 1;
}

/* Overlay sutil na foto quando selecionado */
.aniv-menu-item.selected .aniv-menu-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(181,101,29,.10);
}

/* Corpo do card */
.aniv-menu-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 14px 16px 16px;
  flex: 1;
}

/* Tags */
.aniv-menu-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.aniv-menu-tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(181,101,29,.10);
  color: var(--cor-acento);
}

/* Nome */
.aniv-menu-nome {
  font-size: 15px;
  font-weight: 700;
  color: var(--cor-primaria-hover);
  line-height: 1.2;
  margin-bottom: 5px;
}

/* Descrição completa */
.aniv-menu-desc {
  font-size: 12px;
  color: var(--cor-texto-muted);
  line-height: 1.6;
  display: block;
  margin-bottom: 12px;
}

/* Rodapé do card com label de seleção */
.aniv-menu-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--cor-borda-suave);
}
.aniv-menu-sel-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--cor-acento);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.aniv-menu-sel-label::before { content: "○  Selecionar"; }
.aniv-menu-item.selected .aniv-menu-sel-label::before { content: "✓  Selecionado"; color: #2d7a2d; }
.aniv-menu-item.selected .aniv-menu-sel-label { color: #2d7a2d; }

/* Check flutuante sobre a foto */
.aniv-menu-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 2px solid var(--cor-borda-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s, border-color .18s;
  color: transparent;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.aniv-menu-check svg { width: 12px; height: 12px; stroke-linecap: round; stroke-linejoin: round; }
.aniv-menu-item.selected .aniv-menu-check {
  background: var(--cor-acento);
  border-color: var(--cor-acento);
  color: #fff;
}

/* Esconde pill antigo */
.aniv-cat-pill { display: none; }

/* ── Filtros ── */
.aniv-flav-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.filtro-btn {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--cor-borda-suave);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--cor-texto-muted);
  cursor: pointer;
  transition: all .15s;
  font-family: "Inter", sans-serif;
}
.filtro-btn:hover { border-color: var(--cor-acento); color: var(--cor-acento); }
.filtro-btn--ativo { background: var(--cor-acento); border-color: var(--cor-acento); color: #fff !important; }

/* ── Contador (4 bolinhas) ── */
.aniv-flav-counter {
  font-size: 12px;
  color: var(--cor-texto-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aniv-flav-counter-dots { display: flex; gap: 5px; }
.aniv-flav-counter-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cor-borda-suave);
  transition: background .2s;
}
.aniv-flav-counter-dot.filled { background: var(--cor-acento); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .aniv-flav-list { grid-template-columns: 1fr 1fr; gap: 12px; }
  .aniv-menu-img-wrap { height: 120px; }
  .aniv-menu-nome { font-size: 13px; }
  .aniv-menu-desc { font-size: 11px; }
  .aniv-menu-info { padding: 10px 12px 12px; }
}
@media (max-width: 380px) {
  .aniv-flav-list { grid-template-columns: 1fr; }
}

/* ── CEP automático ── */
.cep-loading-icon {
  display: inline-block;
  width: 12px; height: 12px;
  border: 2px solid rgba(181,101,29,.3);
  border-top-color: var(--cor-acento);
  border-radius: 50%;
  animation: cep-spin .7s linear infinite;
  margin-right: 4px;
  vertical-align: middle;
}
@keyframes cep-spin { to { transform: rotate(360deg); } }
.drawer-input[readonly].preenchido {
  background: #f5fdf0; color: #2d7a2d; font-weight: 600; border-color: #b8e0b8;
}
.aniv-cep-btn { font-size: 11px; padding: 0 12px; opacity: .65; }

/* ── WhatsApp pulse ── */
@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.25); }
  50%       { box-shadow: 0 8px 32px rgba(37,211,102,.50); }
}
.aniv-btn-wpp { animation: wpp-pulse 2.5s ease-in-out infinite; }
.aniv-btn-wpp:hover { animation: none; }


