/* ============================================================
   GRANATTO'S MARMITARIA — sistema visual
   Marrom café + creme · elegante e aconchegante
   Fonts: Cormorant Garamond (display) · Marcellus (rótulos) · Nunito Sans (texto)
   ============================================================ */

:root {
  /* superfícies */
  --paper:       #f6ece0;   /* fundo principal (combina com o logo) */
  --paper-2:     #fbf6ee;   /* cartões claros */
  --cream-deep:  #efe1d0;   /* painéis */
  --cream-line:  #e6d6c1;   /* divisórias suaves */

  /* tinta marrom */
  --ink:         #281910;   /* texto principal */
  --coffee:      #3a2214;   /* marrom da marca (primário) */
  --coffee-700:  #4d3120;
  --coffee-soft: #7a5a44;   /* texto secundário */
  --coffee-faint:#9c8167;

  /* acentos */
  --terra:       #b4532b;   /* terracota — destaques, preços */
  --terra-deep:  #8f3d1d;
  --gold:        #b98a4e;   /* dourado discreto — selos */
  --whats:       #1f7a4d;   /* verde WhatsApp / positivo */
  --whats-deep:  #15603b;

  /* madeira (seções imersivas) */
  --wood:        #1d110a;
  --wood-2:      #2a1810;

  /* tunáveis por Tweaks */
  --accent:      var(--terra);
  --radius:      14px;
  --radius-sm:   9px;

  --shadow-sm: 0 2px 10px rgba(58,34,20,.07);
  --shadow-md: 0 12px 34px rgba(58,34,20,.12);
  --shadow-lg: 0 26px 70px rgba(40,25,16,.20);

  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--coffee);
  font-weight: 600;
  line-height: 1.04;
  margin: 0;
  letter-spacing: .005em;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* rótulos estilo monograma */
.eyebrow {
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 13px;
  color: var(--coffee-soft);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--coffee-faint);
  display: inline-block;
}
.eyebrow:not(.center)::before { display: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: inline-block; }

.section { padding: 96px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(38px, 5vw, 60px); margin: 16px 0 14px; }
.section-head p { color: var(--coffee-soft); font-size: 18px; margin: 0; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; border-radius: 999px;
  padding: 14px 26px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800; font-size: 15px;
  letter-spacing: .01em;
  transition: transform .18s var(--ease), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--coffee); color: #f8efe3; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--coffee-700); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(180,83,43,.28); }
.btn-accent:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn-whats { background: var(--whats); color: #fff; }
.btn-whats:hover { background: var(--whats-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--coffee); border: 1.5px solid var(--cream-line); }
.btn-ghost:hover { border-color: var(--coffee); background: rgba(58,34,20,.04); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,236,224,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled { border-color: var(--cream-line); box-shadow: 0 6px 24px rgba(58,34,20,.06); }
.header-inner { display: flex; align-items: center; gap: 26px; height: 78px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand > span { display: flex; flex-direction: column; justify-content: center; }
.brand img { height: 46px; width: auto; }
.brand-name { font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 25px; color: var(--coffee); line-height: 1; letter-spacing: .02em; }
.brand-sub { font-family: "Marcellus", serif; font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--coffee-soft); margin-top: 3px; }
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a { font-size: 15px; font-weight: 700; color: var(--coffee-soft); position: relative; padding: 6px 0; transition: color .2s; white-space: nowrap; }
.nav a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--accent); transition: width .25s var(--ease); }
.nav a:hover { color: var(--coffee); }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  background: var(--coffee); color: #f6ece0;
  border: none; border-radius: 999px; padding: 11px 18px 11px 16px;
  font-weight: 800; font-size: 14px;
  transition: transform .18s var(--ease), box-shadow .25s;
  box-shadow: var(--shadow-sm);
}
.cart-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cart-count {
  position: absolute; top: -7px; right: -7px;
  min-width: 22px; height: 22px; padding: 0 6px;
  background: var(--accent); color:#fff; border-radius: 999px;
  font-size: 12px; font-weight: 800; display: grid; place-items: center;
  border: 2px solid var(--paper);
}
.menu-toggle {
  display: none;
  position: relative;
  border: 1px solid var(--cream-line);
  border-radius: 12px;
  background: var(--paper-2);
  padding: 10px;
  color: var(--coffee);
  box-shadow: var(--shadow-sm);
}

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; }

/* variante: clássico (centralizado) */
.hero-classic { padding: 30px 0 82px; text-align: center; background:
  radial-gradient(120% 90% at 50% -10%, #fbf4ea 0%, var(--paper) 60%); }
.hero-classic .hero-mark { height: 124px; margin: 0 auto 26px; opacity: .96; }
.hero-classic h1 { font-size: clamp(56px, 8.5vw, 104px); font-weight: 600; line-height: .96; }
.hero-classic .lead { max-width: 560px; margin: 22px auto 34px; font-size: 20px; color: var(--coffee-soft); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-tags { display:flex; gap: 26px; justify-content:center; flex-wrap:wrap; margin-top: 44px; color: var(--coffee-soft); font-weight:700; font-size:14px; }
.hero-tags span { display:inline-flex; align-items:center; gap:9px; }

/* variante: split */
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 80px 0 88px; }
.hero-split h1 { font-size: clamp(50px, 6.6vw, 88px); }
.hero-split .lead { font-size: 20px; color: var(--coffee-soft); margin: 22px 0 32px; max-width: 460px; }
.hero-split .hero-cta { justify-content: flex-start; }
.hero-art { position: relative; }

/* variante: imersivo (madeira) */
.hero-wood { color: #f3e7d6; text-align: center; padding: 118px 0 124px; position: relative; }
.hero-wood::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(24,15,11,.66), rgba(10,6,4,.92)),
    linear-gradient(0deg, rgba(125,71,24,.30), rgba(52,28,12,.30)),
    var(--wood);
}
.hero-wood h1 { color: #fbf2e4; font-size: clamp(56px, 8.5vw, 108px); font-weight: 600; }
.hero-wood .hero-mark { height: 110px; margin: 0 auto 24px; filter: brightness(0) invert(1) sepia(.25); opacity:.92; }
.hero-wood .lead { color: #e3d2bd; max-width: 560px; margin: 22px auto 34px; font-size: 20px; }
.hero-wood .hero-tags { color: #cdb89e; margin-top: 44px; }

.hero-pill {
  display:inline-flex; align-items:center; gap:9px;
  background: rgba(58,34,20,.06); border: 1px solid var(--cream-line);
  padding: 8px 16px; border-radius: 999px; font-weight: 800; font-size: 13px;
  color: var(--coffee); letter-spacing:.02em; margin-bottom: 26px;
}
.hero-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(760px, 100%);
  margin: 0 auto 30px;
  padding: 18px 28px;
  border: 1px solid #d9b98a;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(251,246,238,.98), rgba(238,220,195,.98)),
    var(--paper-2);
  color: var(--coffee);
  box-shadow: 0 14px 34px rgba(58,34,20,.12);
  font-weight: 900;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.2;
  letter-spacing: .01em;
}
.hero-launch .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--whats);
  box-shadow: 0 0 0 7px rgba(31,122,77,.16);
  flex: 0 0 auto;
}
.hero-wood .hero-pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color:#f3e7d6; }
.hero-pill .dot { width:7px; height:7px; border-radius:50%; background: var(--whats); box-shadow:0 0 0 4px rgba(31,122,77,.2); }

/* ---------- placeholder "prato" ---------- */
.plate {
  position: relative; aspect-ratio: 1; width: 100%;
  border-radius: 50%;
  background:
    repeating-linear-gradient(135deg, rgba(122,90,68,.06) 0 9px, transparent 9px 18px),
    radial-gradient(circle at 50% 42%, #fdf8f0 0%, #f0e3d2 72%, #e7d6c1 100%);
  box-shadow: inset 0 0 0 2px var(--cream-line), inset 0 0 0 11px var(--paper-2), inset 0 0 0 13px var(--cream-line), var(--shadow-sm);
  display: grid; place-items: center; overflow: hidden;
}
.plate::after { content:""; position:absolute; inset: 22%; border-radius:50%; border:1px dashed var(--coffee-faint); opacity:.4; }
.plate-label {
  font-family: "Courier New", monospace; font-size: 12px; letter-spacing: .06em;
  color: var(--coffee-soft); text-align: center; text-transform: lowercase;
  background: rgba(251,246,238,.7); padding: 5px 11px; border-radius: 6px; z-index:1;
}
/* placeholder retangular (fotos amplas) */
.ph-rect {
  position: relative; width: 100%; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(122,90,68,.05) 0 11px, transparent 11px 22px),
    linear-gradient(160deg, #f3e6d4, #ece0d0);
  box-shadow: inset 0 0 0 1px var(--cream-line);
  display: grid; place-items: center; min-height: 220px;
}
.ph-rect .plate-label { background: rgba(251,246,238,.82); }

/* ---------- CARTÃO de produto ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dish-card {
  background: var(--paper-2); border: 1px solid var(--cream-line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .3s, border-color .3s;
}
.dish-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #dcc7ad; }
.dish-media { padding: 26px 26px 6px; }
.dish-media .plate { width: 74%; margin: 0 auto; }
.dish-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--cream-line);
  background: var(--paper);
}
.dish-body { padding: 6px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.dish-tag { align-self: flex-start; font-family:"Marcellus",serif; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; white-space: nowrap; }
.dish-title { font-size: 28px; margin-bottom: 6px; }
.dish-desc { color: var(--coffee-soft); font-size: 15px; line-height: 1.5; margin: 0 0 18px; flex: 1; }

/* seletor de tamanho */
.size-row { display: flex; gap: 8px; margin-bottom: 16px; }
.size-opt {
  flex: 1; border: 1.5px solid var(--cream-line); background: var(--paper);
  border-radius: var(--radius-sm); padding: 9px 6px; text-align: center;
  transition: all .18s var(--ease);
}
.size-opt .s-name { font-weight: 800; font-size: 13px; color: var(--coffee); }
.size-opt .s-price { font-size: 12px; color: var(--coffee-soft); margin-top: 2px; }
.size-opt:hover { border-color: var(--coffee-faint); }
.size-opt.active { border-color: var(--coffee); background: var(--coffee); }
.size-opt.active .s-name, .size-opt.active .s-price { color: #f6ece0; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 30px; color: var(--coffee); line-height: 1; white-space: nowrap; }
.price small { font-size: 14px; font-family: "Nunito Sans"; font-weight: 700; color: var(--coffee-soft); }

/* tamanhos como produtos independentes */
.size-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.size-list.inline { flex-direction: row; flex-wrap: wrap; }
.size-prod {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; text-align: left; cursor: pointer;
  border: 1.5px solid var(--cream-line); background: var(--paper);
  border-radius: var(--radius-sm); padding: 9px 11px 9px 14px;
  transition: border-color .18s var(--ease), background .18s, box-shadow .25s, transform .18s;
}
.size-list.inline .size-prod { width: auto; flex: 1; min-width: 132px; }
.size-prod:hover { border-color: var(--coffee); background: #fff; box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.sp-info { display: flex; align-items: baseline; gap: 8px; }
.sp-sz { font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 23px; color: var(--coffee); line-height: 1; }
.sp-gram { font-size: 12px; color: var(--coffee-soft); font-weight: 700; }
.sp-buy { display: flex; align-items: center; gap: 11px; }
.sp-price { font-weight: 800; font-size: 15px; color: var(--coffee); white-space: nowrap; }
.sp-add { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; flex-shrink: 0; transition: transform .18s var(--ease); }
.size-prod:hover .sp-add { transform: scale(1.1); }

/* badge de tamanho (card por tamanho) */
.dish-size-line { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ds-badge {
  display: inline-grid; place-items: center; min-width: 30px; height: 30px; padding: 0 9px;
  border-radius: 999px; background: var(--coffee); color: #f6ece0;
  font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 18px; line-height: 1; flex-shrink: 0;
}
.ds-gram { font-size: 13px; font-weight: 800; color: var(--coffee-soft); letter-spacing: .02em; }
.menu-line .ml-top .ds-badge { align-self: center; }

/* feijoada — linha de CTAs */
.feij-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* chamada da feijoada no hero */
.feij-callout {
  display: flex; align-items: center; gap: 16px; text-align: left;
  margin: 34px auto 0; max-width: 760px;
  background: var(--paper-2); border: 1px solid var(--cream-line);
  border-radius: 18px; padding: 20px 26px 20px 20px;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .25s;
}
.hero-classic .feij-callout, .hero-wood .feij-callout { margin-left: auto; margin-right: auto; }
.hero-split .feij-callout { margin-left: 0; }
.feij-callout:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feij-callout.on-dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
.fc-media {
  position: relative; width: 160px; height: 112px; flex-shrink: 0; border-radius: 16px; overflow: hidden;
  background: var(--cream-deep);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); display: grid; place-items: center;
}
.fc-media img, .fc-media video { width: 100%; height: 100%; object-fit: cover; }
.fc-media::before { content: none; }
@keyframes fcSimmer { 0%, 100% { opacity: .45; transform: scale(1); } 50% { opacity: .9; transform: scale(1.14); } }
.fc-label { position: relative; z-index: 2; font-family: "Courier New", monospace; font-size: 9px; line-height: 1.25; color: #f0d9c0; text-align: center; opacity: .85; }
.fc-steam { position: absolute; top: 5px; left: 0; right: 0; display: flex; justify-content: center; gap: 9px; z-index: 3; pointer-events: none; }
.fc-steam i { width: 5px; height: 18px; border-radius: 3px; background: linear-gradient(to top, rgba(255,245,235,0), rgba(255,245,235,.6)); filter: blur(2px); animation: fcSteam 2.8s ease-in-out infinite; }
.fc-steam i:nth-child(2) { animation-delay: .55s; }
.fc-steam i:nth-child(3) { animation-delay: 1.1s; }
@keyframes fcSteam { 0% { opacity: 0; transform: translateY(7px) scaleY(.6); } 40% { opacity: .85; } 100% { opacity: 0; transform: translateY(-13px) scaleY(1.3); } }
.fc-text { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.fc-eyebrow { font-family: "Marcellus", serif; text-transform: uppercase; letter-spacing: .16em; font-size: 10px; color: var(--accent); }
.feij-callout.on-dark .fc-eyebrow { color: var(--gold); }
.fc-title { font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: clamp(30px, 3vw, 40px); color: var(--coffee); line-height: 1; }
.feij-callout.on-dark .fc-title { color: #fbf2e4; }
.fc-sub { font-size: 18px; color: var(--coffee-soft); font-weight: 700; }
.feij-callout.on-dark .fc-sub { color: #cdb89e; }
.fc-cta { display: inline-flex; align-items: center; gap: 7px; background: var(--coffee); color: #f6ece0; font-weight: 800; font-size: 18px; padding: 16px 24px; border-radius: 999px; flex-shrink: 0; white-space: nowrap; transition: background .2s; }
.feij-callout:hover .fc-cta { background: var(--coffee-700); }
.feij-callout.on-dark .fc-cta { background: var(--accent); color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .fc-media::before, .fc-steam i { animation: none; }
}

/* lista estilo cardápio */
.menu-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; }
.menu-line { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--cream-line); }
.menu-line:last-child { border-bottom: none; }
.ml-plate { width: 72px; flex-shrink: 0; }
.ml-main { flex: 1; }
.ml-top { display: flex; align-items: baseline; gap: 12px; }
.ml-top h3 { font-size: 27px; white-space: nowrap; }
.ml-dots { flex: 1; border-bottom: 2px dotted var(--coffee-faint); transform: translateY(-6px); opacity:.5; }
.ml-prices { display: flex; gap: 16px; }
.ml-prices span { font-weight: 800; font-size: 14px; color: var(--coffee-soft); }
.ml-prices b { font-family:"Cormorant Garamond",serif; font-size: 21px; color: var(--coffee); }
.ml-desc { color: var(--coffee-soft); font-size: 15px; margin: 5px 0 12px; }
.ml-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* vitrine (alternado) */
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 30px; }
.showcase-row:nth-child(even) .sc-media { order: 2; }
.sc-media .plate { width: 78%; margin: 0 auto; }
.sc-body h3 { font-size: 40px; margin-bottom: 12px; }
.sc-body .ml-desc { font-size: 17px; }

/* ---------- COMO FUNCIONA ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; padding: 8px; }
.step-num {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  border: 1.5px solid var(--cream-line); background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 30px; line-height: 1; color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.step-num span { display: block; transform: translateY(-4px); }
.step h3 { font-size: 24px; margin-bottom: 6px; }
.step p { color: var(--coffee-soft); font-size: 15px; margin: 0; }

/* ---------- BEBIDAS ---------- */
.section-tint { background: linear-gradient(180deg, var(--cream-deep), var(--paper)); }
.drink-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.drink-card {
  background: var(--paper-2); border: 1px solid var(--cream-line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .22s var(--ease), box-shadow .3s;
}
.drink-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bottle {
  width: 56px; height: 118px; margin-bottom: 14px;
  border-radius: 14px 14px 10px 10px / 28px 28px 10px 10px;
  background: linear-gradient(160deg, #f3e6d4, #e6d4bf);
  box-shadow: inset 0 0 0 1px var(--cream-line), inset 6px 0 14px rgba(255,255,255,.5);
  position: relative;
}
.bottle::before { content:""; position:absolute; top:-12px; left:50%; transform:translateX(-50%); width:20px; height:16px; background:var(--cream-deep); border-radius:4px 4px 0 0; box-shadow: inset 0 0 0 1px var(--cream-line); }
.bottle::after { content:""; position:absolute; inset: 30px 9px 16px; border-radius:8px; background:repeating-linear-gradient(135deg, rgba(122,90,68,.07) 0 7px, transparent 7px 14px); border:1px dashed var(--coffee-faint); opacity:.5; }
.drink-card h3 { font-size: 23px; margin-bottom: 2px; }
.drink-card .d-vol { font-size: 13px; color: var(--coffee-soft); font-weight: 700; margin-bottom: 14px; }
.drink-card .price { font-size: 24px; margin-bottom: 14px; }

/* ---------- FEIJOADA (destaque) ---------- */
.feijoada {
  position: relative; color: #f3e7d6; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(24,15,11,.62), rgba(10,6,4,.9)),
    linear-gradient(0deg, rgba(125,71,24,.32), rgba(52,28,12,.32)),
    var(--wood);
  padding: 100px 0;
}
.feijoada-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feijoada .eyebrow { color: #d7b48b; }
.feijoada .eyebrow::before, .feijoada .eyebrow::after { background: #9c7b56; }
.feijoada h2 { color: #fbf2e4; font-size: clamp(46px, 6vw, 76px); margin: 16px 0 18px; }
.feijoada .lead { color: #e3d2bd; font-size: 19px; max-width: 480px; }
.feij-includes { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.feij-includes li { display: flex; align-items: center; gap: 11px; font-weight: 700; color: #ecdcc6; font-size: 15px; }
.feij-includes li .tick { color: var(--gold); flex-shrink: 0; }
.feij-card {
  background: rgba(251,246,238,.97); color: var(--ink);
  border-radius: 22px; padding: 34px; box-shadow: var(--shadow-lg);
}
.feij-card .plate { width: 66%; margin: 0 auto 22px; }
.feij-product-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--cream-line);
  margin-bottom: 22px;
  background: var(--paper);
}
.feij-serve { display:inline-flex; align-items:center; gap:8px; background: var(--cream-deep); color: var(--coffee); font-weight:800; font-size:13px; padding:7px 14px; border-radius:999px; margin-bottom: 14px; }
.feij-card h3 { font-size: 34px; text-align:center; margin-bottom: 6px; }
.feij-price { text-align:center; margin: 10px 0 22px; }
.feij-price .price { font-size: 48px; }

/* ---------- SOBRE ---------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-photo {
  width: 100%;
  min-height: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 10px;
  border: 1px solid var(--cream-line);
  box-shadow: inset 0 0 0 1px var(--cream-line), var(--shadow-sm);
  background: var(--cream-deep);
}
.about-mark {
  position:absolute;
  right: -12px;
  bottom: -18px;
  height: 96px;
  opacity:.72;
  background: rgba(251,246,238,.88);
  border: 1px solid var(--cream-line);
  border-radius: 999px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}
.about h2 { font-size: clamp(40px, 5vw, 62px); margin: 14px 0 18px; }
.about p { color: var(--coffee-soft); font-size: 18px; margin: 0 0 16px; }
.about-stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.about-stats > div { min-width: 150px; }
.about-stats .num { font-family:"Cormorant Garamond",serif; font-weight:700; font-size: 46px; color: var(--accent); line-height: 1; }
.about-stats .lbl { font-size: 13px; color: var(--coffee-soft); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ---------- AVALIAÇÕES ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--paper-2); border: 1px solid var(--cream-line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 17px; margin-bottom: 14px; }
.review p { font-family: "Cormorant Garamond", serif; font-size: 22px; line-height: 1.35; color: var(--coffee); font-style: italic; margin: 0 0 20px; flex: 1; }
.review-by { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-deep); display:grid; place-items:center; font-family:"Cormorant Garamond",serif; font-weight:700; color: var(--coffee); border:1px solid var(--cream-line); }
.review-by .who { font-weight: 800; font-size: 15px; color: var(--coffee); }
.review-by .when { font-size: 13px; color: var(--coffee-soft); }

/* ---------- CONTATO ---------- */
.contact { background: linear-gradient(180deg, var(--paper), var(--cream-deep)); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact h2 { font-size: clamp(40px, 5vw, 60px); margin: 14px 0 18px; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci { width: 44px; height: 44px; border-radius: 12px; background: var(--paper-2); border:1px solid var(--cream-line); display:grid; place-items:center; color: var(--accent); flex-shrink:0; }
.contact-list .ct-lbl { font-size: 13px; color: var(--coffee-soft); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.contact-list .ct-val { font-weight: 800; font-size: 17px; color: var(--coffee); }
.map-card { background: var(--wood); border-radius: 20px; padding: 36px; color:#f3e7d6; box-shadow: var(--shadow-md); }
.map-card .hours { list-style:none; padding:0; margin:18px 0 0; }
.map-card .hours li { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.1); font-size:15px; }
.map-card .hours li:last-child { border:none; }
.map-card .hours .day { color:#cdb89e; }
.map-card .hours .open { color:#7fd0a3; font-weight:800; }
.map-card .hours .closed { color:#e7c1a6; font-weight:800; }

/* ---------- FOOTER ---------- */
.footer { background: var(--wood-2); color: #cbb59c; padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer img.f-mark { height: 64px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity:.85; }
.footer h4 { color: #f3e7d6; font-family:"Marcellus",serif; font-size: 14px; letter-spacing:.18em; text-transform:uppercase; margin-bottom: 18px; }
.footer a, .footer p { color: #cbb59c; font-size: 15px; }
.footer ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer a:hover { color:#fbf2e4; }
.footer-bottom { padding-top: 24px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size: 13px; color:#9c8167; }

/* ---------- CART DRAWER ---------- */
.overlay { position: fixed; inset: 0; background: rgba(40,25,16,.5); backdrop-filter: blur(3px); z-index: 900; opacity:0; animation: fade .25s var(--ease) forwards; }
@keyframes fade { to { opacity: 1; } }
.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: 440px; max-width: 92vw; z-index: 910;
  background: var(--paper); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(100%); animation: slideIn .34s var(--ease) forwards;
}
@keyframes slideIn { to { transform: translateX(0); } }
.drawer-head { display:flex; align-items:center; justify-content:space-between; padding: 24px 26px; border-bottom: 1px solid var(--cream-line); }
.drawer-head h3 { font-size: 28px; }
.icon-btn { background: var(--paper-2); border:1px solid var(--cream-line); border-radius: 10px; width: 40px; height: 40px; display:grid; place-items:center; color: var(--coffee); transition: all .18s; }
.icon-btn:hover { background: var(--cream-deep); }
.drawer-body { flex: 1; overflow-y: auto; padding: 14px 26px; }
.cart-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--cream-line); }
.cart-item .ci-plate { width: 62px; height: 62px; flex-shrink: 0; }
.cart-item .ci-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--cream-line);
  background: var(--paper-2);
  box-shadow: var(--shadow-sm);
}
.cart-item .ci-info { flex: 1; min-width: 0; }
.cart-item .ci-name { font-weight: 800; font-size: 16px; color: var(--coffee); line-height: 1.2; overflow-wrap: anywhere; }
.cart-item .ci-meta { font-size: 13px; color: var(--coffee-soft); }
.cart-item .ci-price { margin-left: auto; min-width: 72px; text-align: right; white-space: nowrap; font-family:"Cormorant Garamond",serif; font-weight:700; font-size: 20px; color: var(--coffee); }
.qty { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--cream-line); border-radius: 999px; padding: 3px; background: var(--paper-2); margin-top: 8px; }
.qty button { width: 26px; height: 26px; border: none; background: transparent; color: var(--coffee); font-size: 17px; font-weight: 800; border-radius: 50%; display:grid; place-items:center; }
.qty button:hover { background: var(--cream-deep); }
.qty span { min-width: 24px; text-align: center; font-weight: 800; font-size: 14px; }
.link-remove { background:none; border:none; color: var(--coffee-faint); font-size: 13px; font-weight:700; padding:0; margin-top: 6px; text-decoration: underline; }
.link-remove:hover { color: var(--terra-deep); }
.cart-empty { text-align:center; padding: 60px 20px; color: var(--coffee-soft); }
.cart-empty .plate { width: 120px; margin: 0 auto 20px; }
.drawer-foot { padding: 22px 26px; border-top: 1px solid var(--cream-line); background: var(--paper-2); }
.sum-line { display:flex; justify-content:space-between; gap: 14px; font-size: 15px; color: var(--coffee-soft); margin-bottom: 8px; }
.sum-line span:last-child { text-align: right; white-space: nowrap; }
.sum-total { display:flex; justify-content:space-between; align-items:baseline; gap: 14px; margin: 14px 0 18px; }
.sum-total .lbl { font-weight: 800; color: var(--coffee); }
.sum-total .val { white-space: nowrap; font-family:"Cormorant Garamond",serif; font-weight:700; font-size: 34px; color: var(--coffee); }
.menu-drawer { width: 360px; }
.menu-drawer-body { display: flex; flex-direction: column; gap: 24px; padding-top: 24px; }
.mobile-nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--cream-line);
  color: var(--coffee);
  font-size: 18px;
  font-weight: 900;
}
.mobile-menu-actions { display: grid; gap: 12px; margin-top: auto; }
.mobile-menu-action {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  border: 1.5px solid var(--coffee);
  border-radius: 14px;
  background: transparent;
  color: var(--coffee);
  padding: 14px 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 900;
}
.mobile-menu-action.primary { background: var(--coffee); color: #f6ece0; }
.mobile-menu-icon { display: grid; place-items: center; flex: 0 0 auto; }
.mobile-menu-count {
  margin-left: auto;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 0 7px;
  font-size: 12px;
  font-weight: 900;
}

/* ---------- CHECKOUT MODAL ---------- */
.modal-wrap { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 24px; background: rgba(40,25,16,.55); backdrop-filter: blur(4px); overflow-y:auto; opacity:0; animation: fade .25s var(--ease) forwards; }
.modal {
  width: 100%; max-width: 620px; background: var(--paper); border-radius: 22px;
  box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(14px) scale(.98);
  animation: pop .34s var(--ease) forwards; margin: auto;
}
@keyframes pop { to { transform: translateY(0) scale(1); } }
.modal-head { padding: 26px 30px 0; }
.modal-head .eyebrow { margin-bottom: 6px; }
.modal-head h3 { font-size: 34px; }
.steps-bar { display:flex; gap: 8px; margin: 20px 0 0; }
.steps-bar .sb { flex:1; height: 4px; border-radius: 999px; background: var(--cream-line); }
.steps-bar .sb.done { background: var(--accent); }
.modal-body { padding: 24px 30px; max-height: 56vh; overflow-y: auto; }
.field { margin-bottom: 16px; }
.field label { display:block; font-weight: 800; font-size: 13px; color: var(--coffee); margin-bottom: 6px; letter-spacing:.01em; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--cream-line); background: var(--paper-2);
  border-radius: var(--radius-sm); padding: 12px 14px; font-size: 15px; font-family: inherit; color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coffee); box-shadow: 0 0 0 3px rgba(58,34,20,.08); }
.field input.err { border-color: var(--terra); }
.field .hint-err { color: var(--terra-deep); font-size: 12px; font-weight:700; margin-top: 5px; }
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display:grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 14px; }
.pay-opts { display:flex; flex-direction:column; gap: 12px; }
.pay-opt { display:flex; align-items:center; gap:14px; border:1.5px solid var(--cream-line); border-radius: var(--radius-sm); padding: 16px; background: var(--paper-2); transition: all .18s; }
.pay-opt:hover { border-color: var(--coffee-faint); }
.pay-opt.active { border-color: var(--coffee); background: #fff; box-shadow: var(--shadow-sm); }
.pay-opt .pay-ic { width: 44px; height: 44px; border-radius: 10px; background: var(--cream-deep); display:grid; place-items:center; color: var(--coffee); flex-shrink:0; }
.pay-opt.active .pay-ic { background: var(--coffee); color: #f6ece0; }
.pay-opt .pay-t { font-weight: 800; font-size: 16px; color: var(--coffee); }
.pay-opt .pay-d { font-size: 13px; color: var(--coffee-soft); }
.pay-radio { margin-left:auto; width: 22px; height:22px; border-radius:50%; border: 2px solid var(--cream-line); display:grid; place-items:center; flex-shrink:0; }
.pay-opt.active .pay-radio { border-color: var(--coffee); }
.pay-opt.active .pay-radio::after { content:""; width:11px; height:11px; border-radius:50%; background: var(--coffee); }
.pix-box { text-align:center; padding: 10px 0; }
.pix-qr { width: 188px; height: 188px; margin: 0 auto 16px; border-radius: 16px; background: var(--paper-2); border:1px solid var(--cream-line); display:grid; place-items:center; padding: 14px; }
.pix-copy { display:flex; gap: 8px; }
.pix-copy input { font-family:"Courier New",monospace; font-size: 12px; }
.modal-foot { padding: 18px 30px 26px; border-top: 1px solid var(--cream-line); display:flex; align-items:center; justify-content:space-between; gap: 14px; background: var(--paper-2); }
.modal-foot .mf-total { font-size: 14px; color: var(--coffee-soft); }
.modal-foot .mf-total b { font-family:"Cormorant Garamond",serif; font-size: 26px; color: var(--coffee); display:block; }

/* sucesso */
.success { text-align:center; padding: 44px 36px 40px; }
.success .check { width: 88px; height: 88px; margin: 0 auto 22px; border-radius: 50%; background: var(--whats); display:grid; place-items:center; color:#fff; box-shadow: 0 12px 30px rgba(31,122,77,.32); animation: pop .4s var(--ease); }
.success h3 { font-size: 40px; margin-bottom: 10px; }
.success p { color: var(--coffee-soft); font-size: 17px; margin: 0 auto 8px; max-width: 420px; }
.success .order-id { font-family:"Courier New",monospace; font-weight:700; color: var(--coffee); background: var(--cream-deep); display:inline-block; padding: 6px 14px; border-radius: 8px; margin: 8px 0 26px; }

/* ---------- Tweaks badge ---------- */
.tw-hint { position: fixed; left: 18px; bottom: 18px; z-index: 50; background: var(--coffee); color:#f6ece0; font-size:12px; font-weight:800; padding:8px 14px; border-radius:999px; opacity:.0; }

/* ---------- responsivo ---------- */
@media (max-width: 980px) {
  .menu-grid, .reviews, .steps { grid-template-columns: repeat(2, 1fr); }
  .drink-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split, .feijoada-inner, .about, .contact-inner, .showcase-row, .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .hero-split .hero-art, .showcase-row:nth-child(even) .sc-media { order: -1; }
  .about-stats { gap: 24px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero-classic { padding-top: 24px; }
  .hero-launch { padding: 15px 18px; margin-bottom: 24px; text-align: left; }
  .header-inner { height: 72px; gap: 12px; }
  .brand { min-width: 0; flex: 1; gap: 10px; }
  .brand img { height: 42px; flex: 0 0 auto; }
  .brand > span { min-width: 0; }
  .brand-name {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(24px, 8vw, 31px);
  }
  .nav { display: none; }
  .menu-toggle { display: grid; place-items:center; }
  .desktop-actions { display: none !important; }
  .menu-grid, .reviews, .steps, .drink-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .ml-top { flex-wrap: wrap; }
  .ml-dots { display: none; }
  .brand-sub { display:none; }
  .feij-includes { grid-template-columns: 1fr; }
  .about-stats > div { min-width: 128px; }
  .about-stats .num { font-size: 40px; }
  .feij-callout { flex-wrap: wrap; }
  .fc-media { width: 110px; height: 84px; }
  .fc-text { flex-basis: calc(100% - 130px); }
  .fc-sub { font-size: 15px; }
  .fc-cta { width: 100%; justify-content: center; margin-top: 4px; }
  .drawer { max-width: 100vw; }
  .drawer-head { padding: 22px 22px; }
  .drawer-body { padding: 12px 22px; }
  .drawer-foot { padding: 20px 22px; }
  .cart-item { display: grid; grid-template-columns: 62px minmax(0, 1fr); column-gap: 14px; row-gap: 10px; }
  .cart-item .ci-price {
    grid-column: 2;
    justify-self: start;
    margin-left: 0;
    min-width: 0;
    text-align: left;
    font-size: 22px;
  }
  .modal-wrap { padding: 16px; }
  .modal { border-radius: 18px; }
  .modal-head { padding: 24px 24px 0; }
  .modal-body { padding: 22px 24px; }
  .modal .btn-block {
    min-height: 58px;
    padding-right: 18px;
    padding-left: 18px;
    white-space: normal;
    line-height: 1.18;
    text-align: center;
  }
}
