@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400;700&display=swap');

/* ===== RESET E BODY ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #3D1F0F;
  min-height: 100vh;
  padding: 20px 0;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #2D1508 0%, #3D1F0F 70%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(160, 82, 45, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(139, 69, 19, 0.25) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

/* ===== TÍTULO ===== */
.titulo-cardapio {
  font-size: 64px;
  font-weight: 800;
  color: #FFD700;
  text-align: center;
  margin: 36px 0 18px 0;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

/* ===== GRID ===== */
.grid-cardapio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 92%;
  max-width: 1400px;
  margin: 30px auto 80px auto;
  align-items: start;
  position: relative;
  z-index: 1;
}

.grid-cardapio > * {
  width: 100%;
  box-sizing: border-box;
}

/* ===== CARD ===== */
.card {
  background: 
    radial-gradient(circle at 15% 20%, #8B4513 8px, transparent 8px),
    radial-gradient(circle at 65% 35%, #8B4513 6px, transparent 6px),
    radial-gradient(circle at 40% 60%, #8B4513 7px, transparent 7px),
    radial-gradient(circle at 80% 75%, #8B4513 9px, transparent 9px),
    radial-gradient(circle at 25% 85%, #8B4513 5px, transparent 5px),
    radial-gradient(circle at 90% 15%, #8B4513 7px, transparent 7px),
    radial-gradient(circle at 50% 90%, #8B4513 6px, transparent 6px),
    radial-gradient(circle at 10% 50%, #8B4513 8px, transparent 8px),
    #F5E6D3;
  background-size: 100% 100%;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.card .numero {
  color: #b34b2b;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
}

.card .img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: block;
  border-radius: 10px;
  margin-bottom: 18px;
  background: #e0d4c8;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  line-height: 1.2;
  color: #4a230f;
  font-weight: 700;
}

.card .preco {
  color: #5a2e1a;
  font-weight: 700;
  margin-top: 6px;
  font-size: 18px;
}

/* ===== FOOTER ===== */
.cl-footer {
    width: 100%;
    background: #1e0d04;
    font-family: 'Lato', sans-serif;
    padding: 52px 28px 28px;
    position: relative;
    margin-top: 40px;
}

.cl-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a1a08, #e8b84b 30%, #c9904a 60%, #3a1a08);
}

.cl-footer-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.cl-brand { display: flex; flex-direction: column; gap: 6px; }

.cl-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e8b84b;
    letter-spacing: 4px;
    line-height: 1;
}

.cl-tagline {
    font-size: 0.78rem;
    color: #c9904a;
    letter-spacing: 2px;
    font-style: italic;
    font-weight: 300;
    margin-top: 4px;
}

.cl-ornament { display: flex; align-items: center; gap: 8px; margin: 14px 0 16px; }

.cl-line { flex: 1; max-width: 48px; height: 1px; background: #6b2d0e; }

.cl-diamond {
    width: 7px; height: 7px;
    background: #e8b84b;
    transform: rotate(45deg);
    opacity: 0.7;
}

.cl-info { font-size: 0.82rem; color: #8a5a38; line-height: 2; }
.cl-info strong { color: #c9904a; font-weight: 700; letter-spacing: 0.5px; }

.cl-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    padding-top: 6px;
}

.cl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.cl-btn:hover { transform: translateY(-2px); }
.cl-btn:active { transform: scale(0.98); }

.cl-btn-pedido {
    background: #e8b84b;
    color: #1e0d04;
    box-shadow: 0 4px 20px rgba(232,184,75,0.25);
}
.cl-btn-pedido:hover { box-shadow: 0 6px 28px rgba(232,184,75,0.4); }

.cl-btn-zap {
    background: transparent;
    color: #e8b84b;
    border: 1.5px solid #6b2d0e;
}
.cl-btn-zap:hover { border-color: #e8b84b; box-shadow: 0 4px 16px rgba(232,184,75,0.15); }

.cl-icon { width: 17px; height: 17px; flex-shrink: 0; }

.cl-bottom {
    max-width: 860px;
    margin: 36px auto 0;
    padding-top: 20px;
    border-top: 1px solid #2e1208;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cl-copy { font-size: 0.72rem; color: #4a2510; letter-spacing: 0.5px; font-style: italic; }
.cl-hearts { display: flex; gap: 6px; align-items: center; }
.cl-heart { font-size: 10px; color: #6b2d0e; }

/* ===== RESPONSIVO ===== */
@media (max-width: 1100px) {
  .grid-cardapio { grid-template-columns: repeat(2, 1fr); gap: 22px; width: 94%; }
  .card .img-wrap { height: 200px; }
  .titulo-cardapio { font-size: 48px; }
}

@media (max-width: 700px) {
  .grid-cardapio { grid-template-columns: 1fr; gap: 18px; width: 96%; }
  .card .img-wrap { height: 180px; }
  .titulo-cardapio { font-size: 36px; }
}

@media (max-width: 580px) {
  .cl-footer-inner { grid-template-columns: 1fr; }
  .cl-btns { align-items: stretch; }
  .cl-btn { justify-content: center; }
}

/* ── BOTÃO MUTE ─────────────────────────────────────────── */
#btn-mute {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 999;
    background: rgba(30, 13, 4, 0.75);
    border: 1.5px solid #6b2d0e;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    backdrop-filter: blur(4px);
}

#btn-mute:hover {
    background: rgba(107, 45, 14, 0.9);
    transform: scale(1.1);
}