:root{
  --bg:#0c0c0c;
  --panel:#141414;
  --text:#f5f5f5;
  --muted:#b9b9b9;
  --stroke:#222;

  /* 🔥 COR DO CARDÁPIO */
  --yellow:#ff6a00;
  --yellow2:#ff8a2b;

  --shadow: 0 18px 40px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(255,106,0,.14), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(255,106,0,.10), transparent 55%),
    var(--bg);
  line-height:1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 86px; /* espaço pra bottom bar */
}

a{color:inherit}
.container{max-width:980px; margin:0 auto; padding:16px}
.section-gap{margin-top:18px}

/* ===== Topbar ===== */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,13,.72);
  border-bottom: 1px solid rgba(35,35,44,.7);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 16px;
  max-width:980px; margin:0 auto;
}
.brand{display:flex; align-items:center; gap:10px; min-width:0;}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(180deg, rgba(255,106,0,.22), rgba(255,106,0,.08));
  border:1px solid rgba(255,106,0,.22);
  display:grid; place-items:center;
  overflow:hidden;
}
.logo img{width:100%; height:100%; object-fit:contain; padding:6px}
.brand-text{min-width:0}
.brand h1{
  font-size:14px; margin:0; letter-spacing:.2px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.brand small{display:block; color:var(--muted); font-weight:500; margin-top:2px}

.top-actions{display:flex; align-items:center; gap:10px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.25);
  background: rgba(255,106,0,.10);
  color: var(--yellow2);
  font-weight:800;
  text-decoration:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
}
.pill:active{transform: scale(.98)}
.pill:hover{background: rgba(255,106,0,.14); border-color: rgba(255,106,0,.35)}
.pill .dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,106,0,.14);
}
.iconbtn{
  width:42px; height:42px; border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  display:grid; place-items:center;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.iconbtn:hover{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12)}
.iconbtn:active{transform: scale(.98)}
.icon{font-size:18px}

/* ===== Hero ===== */
.hero{padding: 18px 0 10px;}
.hero-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

/* brilho laranja de leve */
.hero-card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 200px at 20% 0%, rgba(255,106,0,.18), transparent 60%);
  pointer-events:none;
  z-index:1;
}

/* ✅ Imagem do fundo do HERO (vem do HTML) */
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  filter: saturate(1.05) contrast(1.02);
}

/* ✅ Overlay escuro pra texto ficar legível */
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.68), rgba(0,0,0,.90));
  z-index:2;
  pointer-events:none;
}

.hero-inner{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  z-index:3;
}

.kicker{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--yellow2);
  font-weight:900;
  font-size:12px;
  opacity:.95;
}
.kicker .spark{
  width:26px; height:26px; border-radius:10px;
  background: rgba(255,106,0,.16);
  border:1px solid rgba(255,106,0,.22);
  display:grid; place-items:center;
}
.hero h2{
  margin:0;
  font-size: 26px;
  letter-spacing:-.4px;
  line-height:1.1;
}
.hero p{margin:0; color: var(--muted); font-weight: 600;}

.hero-ctas{display:flex; gap:10px; flex-wrap:wrap; margin-top:4px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  height:48px;
  padding:0 14px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing:.2px;
  text-decoration:none;
  border:1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
  user-select:none;
}
.btn:active{transform: scale(.98)}
.btn-primary{
  background: var(--yellow);
  color:#121217;
  box-shadow: 0 10px 22px rgba(255,106,0,.28);
}
.btn-primary:hover{background:#ff7a1a}
.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
  color: var(--text);
}
.btn-ghost:hover{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14)}

.chips{display:flex; gap:10px; flex-wrap:wrap; padding: 0 2px 10px;}
.chip{
  height:38px;
  padding:0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-weight: 850;
  display:inline-flex; align-items:center; gap:8px;
  text-decoration:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.chip:hover{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14)}
.chip:active{transform: scale(.98)}
.chip i{font-style:normal; opacity:.9}

/* ===== Section titles ===== */
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  margin: 18px 0 10px;
  gap:12px;
}
.section-title h3{margin:0; font-size:18px; letter-spacing:-.2px;}
.section-title span{color: var(--muted); font-weight: 650; font-size: 13px;}

/* ===== Accordion ===== */
.accordion{display:flex; flex-direction:column; gap:12px;}
details{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
summary{
  list-style:none;
  cursor:pointer;
  padding: 14px 14px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  user-select:none;
}
summary::-webkit-details-marker{display:none}
.sum-left{display:flex; align-items:center; gap:10px; min-width:0; font-weight: 950;}
.sum-ico{
  width:38px; height:38px; border-radius:12px;
  background: rgba(255,106,0,.16);
  border:1px solid rgba(255,106,0,.22);
  display:grid; place-items:center;
  flex: 0 0 auto;
}

/* ✅ badge mais parecido com cardápio */
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(255,106,0,.14);
  border:1px solid rgba(255,106,0,.28);
  color:#ff9a45;
  font-weight: 950;
  white-space:nowrap;
}

.chev{
  width:34px; height:34px; border-radius: 12px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  display:grid; place-items:center;
  transition: transform .2s ease;
  flex: 0 0 auto;
}
details[open] .chev{transform: rotate(180deg)}
.panel{padding: 0 14px 14px;}

/* ===== Menu cards (sem imagem) ===== */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 6px;
}
.item{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  will-change: transform;
}
.item:hover{border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.04)}
.item:active{transform: scale(.99)}
.item-top{display:flex; align-items:center; gap:12px;}
.item-ico{
  width:44px; height:44px; border-radius: 14px;
  background: rgba(255,106,0,.16);
  border:1px solid rgba(255,106,0,.22);
  display:grid; place-items:center;
  font-size: 20px;
  flex: 0 0 auto;
}
.item-text{min-width:0}
.item-name{margin:0; font-size: 16px; letter-spacing:-.15px; line-height:1.1;}
.item-bottom{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:2px;}
.price{font-weight: 950; font-size: 16px; color: var(--yellow2); letter-spacing:.2px; white-space:nowrap;}
.mini{
  height:42px;
  padding: 0 12px;
  border-radius: 13px;
  background: rgba(37, 211, 102, .14);
  border:1px solid rgba(37, 211, 102, .24);
  color: #dffbe9;
  font-weight: 950;
  text-decoration:none;
  display:inline-flex; align-items:center; gap:8px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.mini:hover{background: rgba(37, 211, 102, .18); border-color: rgba(37, 211, 102, .30)}
.mini:active{transform: scale(.98)}
.mini .wa{font-style:normal}

/* ===== Info blocks ===== */
.info{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 14px;
}
.info h4{margin:0 0 8px; font-size:15px}
.info p{margin:0; color: var(--muted); font-weight:650}
.info a{
  display:inline-flex; margin-top:10px;
  color: var(--yellow2);
  text-decoration:none;
  font-weight:950;
}

/* ===== Footer ===== */
footer{
  padding: 18px 0 26px;
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
  text-align:center;
}
.cta-title{font-size:24px; margin:0}

/* ===== Floating WhatsApp ===== */
.fab{
  position: fixed;
  right: 16px;
  bottom: 92px;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: #25d366;
  color: #0b0b0d;
  display:grid; place-items:center;
  text-decoration:none;
  box-shadow: 0 14px 30px rgba(37,211,102,.25);
  border:1px solid rgba(255,255,255,.12);
  z-index:60;
  transition: transform .18s ease;
}
.fab:active{transform: scale(.98)}
.fab span{font-size:22px}

/* ===== Bottom bar (mobile) ===== */
.bottombar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 72px;
  background: rgba(11,11,13,.82);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(35,35,44,.75);
  z-index:55;
  display:flex;
  align-items:center;
}
.bottombar-inner{
  width:100%;
  max-width:980px;
  margin:0 auto;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding: 10px 16px;
}
.bottombar .btn{
  flex:1;
  height: 52px;
  border-radius: 16px;
}
.bottombar .btn-ghost{flex: .85}

/* ===== Reveal animations ===== */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* ===== Desktop tweaks ===== */
@media (min-width: 760px){
  body{padding-bottom: 26px}
  .bottombar{display:none}
  .fab{bottom: 18px}
  .hero-inner{padding:22px}
  .hero h2{font-size: 34px}
  .grid{grid-template-columns: 1fr 1fr}
  .topbar-inner{padding:14px 16px}
}

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{transition:none !important}
  .reveal{opacity:1; transform:none}
}

/* ===== Upgrade: meta no card (tag + ver mais) ===== */
.item-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:6px;
}

.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
  color: var(--yellow2);
  font-weight:950;
  font-size:12px;
  line-height:1;
  white-space:nowrap;
}

.ver-mais{
  margin-left:auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-weight: 900;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.ver-mais:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}

.ver-mais:active{
  transform: scale(.98);
}

/* ingredientes no card, 2 linhas */
.item-desc{
  margin:8px 0 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.25;

  max-height: calc(1.25em * 2);
  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ===== iFood style bottom sheet ===== */
body.sheet-open{
  overflow: hidden;
}

.sheet-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 999;
}

.sheet{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;

  background: rgba(18,18,23,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.10);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;

  transform: translateY(110%);
  transition: transform .28s cubic-bezier(.2,.9,.2,1);
  box-shadow: 0 -20px 40px rgba(0,0,0,.50);

  padding: 10px 14px 18px;

  max-height: 78vh;
  overflow: hidden;
}

.sheet-handle{
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  margin: 6px auto 12px;
}

.sheet-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

.sheet-title{
  margin:0;
  font-size: 16px;
  letter-spacing: -.2px;
}

.sheet-close{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--text);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.sheet-close:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.sheet-close:active{ transform: scale(.98); }

/* ✅ imagem do item dentro do sheet */
.sheet-image{
  width: 100%;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
  margin-top: 10px;
  display: none;
  border: 1px solid rgba(255,255,255,.10);
}

.sheet-body{
  margin-top: 10px;
  overflow: auto;
  max-height: calc(78vh - 120px);
  padding-bottom: 6px;
}

.sheet-text{
  margin: 0;
  color: rgba(255,255,255,.86);
  font-weight: 650;
  font-size: 14px;
  line-height: 1.45;
}

.sheet-actions{
  margin-top: 12px;
  display:flex;
  gap:10px;
}

.sheet-order{
  width: 100%;
}

/* Estado aberto */
.sheet-open .sheet-overlay{
  opacity: 1;
  pointer-events: auto;
}

.sheet-open .sheet{
  transform: translateY(0);
}

/* no desktop, centraliza e deixa menor */
@media (min-width: 760px){
  .sheet{
    left: 50%;
    right: auto;
    width: 420px;
    transform: translate(-50%, 110%);
    border-radius: 18px;
    bottom: 18px;
    border: 1px solid rgba(255,255,255,.10);
    max-height: 72vh;
  }

  .sheet-open .sheet{
    transform: translate(-50%, 0);
  }

  .sheet-body{
    max-height: calc(72vh - 120px);
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .sheet, .sheet-overlay, .ver-mais, .sheet-close{ transition: none !important; }
}
/* ===== FUNDO COM TEXTURA ESCURA (MADEIRA) ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: 
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)),
    url("fundo.png") center/cover no-repeat;

  /* escurece ainda mais e reduz contraste */
  filter: brightness(0.5) contrast(0.9);

  opacity: 0.6; /* controla a presença da madeira */
  
  z-index: -1;
  pointer-events: none;
}
/* ===== AJUSTE FINO (FUNDO + CARDS) ===== */


/* melhora os cards (efeito vidro leve) */
.card,
.menu-card,
.item-card {
  background: rgba(18, 18, 18, 0.85) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* leve destaque no hover (fica mais vivo) */
.card:hover,
.menu-card:hover,
.item-card:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}