@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   BRAZA — Espetaria Gourmet · Lagoa da Conceição
   Sistema: carvão quente + brasa, Anton/Fraunces/Archivo
   ═══════════════════════════════════════════════════ */

:root {
  /* cor */
  --char:    #141110;   /* fundo — preto-marrom de carvão */
  --char-2:  #1d1815;   /* superfícies elevadas */
  --char-3:  #2a211b;   /* bordas e apoios */
  --ash:     #f0e9e1;   /* texto principal — cinza de cinzas */
  --smoke:   #a89a8d;   /* texto secundário — fumaça */
  --brasa:   #f25c26;   /* acento único — a brasa da logo */
  --brasa-2: #ffa02e;   /* par de gradiente — miolo da chama */
  --lagoa:   #7fa89b;   /* sussurro verde — só na seção Onde */

  /* tipo */
  --f-display: "Anton", "Arial Narrow", sans-serif;
  --f-editorial: "Fraunces", Georgia, serif;
  --f-body: "Archivo", "Helvetica Neue", sans-serif;
  --f-mono: "Spline Sans Mono", ui-monospace, monospace;

  /* escala */
  --step-5: clamp(3.2rem, 9.5vw, 7.2rem);
  --step-4: clamp(2.2rem, 5.5vw, 3.9rem);
  --step-3: clamp(1.5rem, 3vw, 2rem);
  --step-1: clamp(1.06rem, 1.6vw, 1.2rem);
  --step-0: 1rem;
  --step--1: .875rem;

  /* ritmo — espaçoso (density 3/10) */
  --space-s: 1.5rem;
  --space-m: 3rem;
  --space-l: clamp(4rem, 9vw, 7.5rem);
  --gutter: clamp(1.25rem, 5vw, 5rem);

  --ease-out: cubic-bezier(.19, 1, .22, 1);
}

/* ── base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--char);
  color: var(--ash);
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* calor ambiente — brasa respirando nos cantos inferiores da tela */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(44% 30% at 10% 106%, rgba(242, 92, 38, .09), transparent 70%),
    radial-gradient(38% 26% at 90% 110%, rgba(255, 160, 46, .05), transparent 70%);
  animation: heat-drift 14s ease-in-out infinite alternate;
}
@keyframes heat-drift {
  from { opacity: .45; transform: translateX(-1.5%); }
  to   { opacity: 1;   transform: translateX(1.5%); }
}

img { max-width: 100%; height: auto; display: block; }

section { scroll-margin-top: 8rem; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: .01em;
}

h2 { font-size: var(--step-4); }
h2 em, h1 em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 350;
  text-transform: none;
  letter-spacing: 0;
  color: var(--brasa);
}

a { color: inherit; }

::selection { background: var(--brasa); color: var(--char); }

:focus-visible {
  outline: 2px solid var(--brasa-2);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--brasa); color: var(--char);
  padding: .75rem 1.25rem; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--step--1);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brasa);
  margin-bottom: 1rem;
}
.eyebrow::before { content: "\2014\00A0"; } /* travessão via escape — imune a problemas de charset */
.eyebrow--lagoa { color: var(--lagoa); }

/* ── botões ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-body); font-weight: 600; font-size: var(--step-0);
  text-decoration: none; cursor: pointer;
  padding: .95rem 1.7rem; border-radius: 2px;
  min-height: 44px;
  transition: transform .2s var(--ease-out), box-shadow .25s var(--ease-out), background-color .2s;
}
.btn svg { width: 1.2em; height: 1.2em; fill: currentColor; flex: none; }

.btn--ember {
  background: linear-gradient(165deg, #a03c12, #6f260a);
  color: var(--ash);
  border: 1px solid rgba(242, 92, 38, .35);
  box-shadow: inset 0 1px 0 rgba(255, 160, 46, .18);
}
.btn--ember:hover {
  background: linear-gradient(165deg, #b84515, #832d0c);
  border-color: rgba(242, 92, 38, .6);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 160, 46, .22), 0 10px 28px rgba(200, 70, 20, .2);
}

.btn--ghost {
  background: transparent;
  color: var(--ash);
  border: 1px solid rgba(240, 233, 225, .18);
}
.btn--ghost:hover { border-color: rgba(242, 92, 38, .55); color: var(--brasa-2); transform: translateY(-2px); }

/* ── nav ──────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 2rem;
  padding: .6rem var(--gutter);
  transition: background-color .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.is-scrolled {
  background: rgba(20, 17, 16, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--char-3);
}

.nav__brand {
  display: flex; align-items: center; gap: .9rem;
  text-decoration: none; margin-right: auto;
}
.nav__tag {
  display: flex; flex-direction: column; gap: .3rem;
  font-family: var(--f-mono);
  font-size: .82rem; letter-spacing: .3em;
  text-transform: uppercase; line-height: 1;
  color: var(--ash);
}
.nav__tag small {
  font-size: .58rem; letter-spacing: .22em;
  color: var(--smoke);
}
@media (max-width: 560px) {
  .nav__tag { display: none; }
}
.nav__logo {
  width: 104px; height: 104px;
  transition: transform .2s var(--ease-out);
}
@media (max-width: 760px) {
  .nav__logo { width: 78px; height: 78px; }
}
.nav__brand:hover .nav__logo { transform: scale(1.06); }
.nav__flame { width: 26px; height: 26px; fill: var(--brasa); }

.nav__links { display: flex; gap: 1.75rem; }
.nav__links a {
  text-decoration: none; font-size: var(--step--1); font-weight: 500;
  color: var(--smoke);
  transition: color .2s;
}
.nav__links a:hover { color: var(--brasa-2); }

.nav__cta { padding: .65rem 1.2rem; font-size: var(--step--1); }

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ── hero ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: end;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 62% center;
  animation: hero-breathe 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-breathe {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--char) 4%, rgba(20,17,16,.55) 45%, rgba(20,17,16,.35) 100%),
    linear-gradient(100deg, rgba(20,17,16,.85) 0%, rgba(20,17,16,.2) 60%);
}

.hero__embers {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) clamp(5rem, 12vh, 8rem);
  max-width: 60rem;
}

.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: var(--step--1);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--brasa-2);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: var(--step-5);
  margin-bottom: 1.5rem;
}
.hero__title em { color: var(--brasa-2); }

/* revelação por linha (mascarada) */
.hero__line { display: block; overflow: hidden; }
.hero__line span {
  display: block;
  transform: translateY(110%);
  animation: line-up .9s var(--ease-out) forwards;
}
.hero__line:nth-child(1) span { animation-delay: .15s; }
.hero__line:nth-child(2) span { animation-delay: .3s; }
.hero__line:nth-child(3) span { animation-delay: .45s; }

@keyframes line-up { to { transform: translateY(0); } }

.hero__sub {
  font-size: var(--step-1);
  color: var(--smoke);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* entrada suave dos blocos do hero */
.hero-fade {
  opacity: 0; transform: translateY(18px);
  animation: fade-up .8s var(--ease-out) forwards;
}
.hero__eyebrow.hero-fade { animation-delay: .05s; }
.hero__sub.hero-fade { animation-delay: .6s; }
.hero__actions.hero-fade { animation-delay: .75s; }

@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

.hero__scroll {
  position: absolute; bottom: 2rem; right: var(--gutter); z-index: 2;
  width: 1px; height: 64px;
  background: var(--char-3);
  overflow: hidden;
}
.hero__scroll span {
  display: block; width: 100%; height: 40%;
  background: var(--brasa);
  animation: scroll-hint 2.2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0% { transform: translateY(-110%); }
  60%, 100% { transform: translateY(260%); }
}

/* ── revelação por scroll (fora do hero) ──────── */
body:not(.no-motion) .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
body:not(.no-motion) .reveal.is-visible {
  opacity: 1; transform: translateY(0);
}

/* ── a casa ───────────────────────────────────── */
.casa { padding: var(--space-l) var(--gutter); }

.casa__grid {
  display: grid; gap: var(--space-m);
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  align-items: center;
  max-width: 72rem; margin: 0 auto;
}

.casa__text h2 { margin-bottom: 1.5rem; }
.casa__text p { color: var(--smoke); max-width: 32rem; margin-bottom: 1.1rem; }
.casa__text p:first-of-type { color: var(--ash); }

.casa__marks {
  list-style: none; padding: 0;
  margin-top: 2rem;
  display: grid; gap: 1rem;
}
.casa__marks li {
  display: flex; flex-direction: column;
  border-left: 2px solid var(--brasa);
  padding-left: 1rem;
}
.casa__marks strong { font-weight: 600; }
.casa__marks span { color: var(--smoke); font-size: var(--step--1); }

.casa__media { position: relative; }
.casa__media img {
  border-radius: 3px;
  aspect-ratio: 4 / 5; object-fit: cover;
}
/* fachada é paisagem — sem corte vertical */
.casa__media--wide img { aspect-ratio: 3 / 2; }
.casa__media figcaption {
  font-family: var(--f-mono); font-size: .75rem;
  color: var(--smoke); letter-spacing: .08em;
  margin-top: .8rem;
}

@media (max-width: 860px) {
  .casa__grid { grid-template-columns: 1fr; }
  .casa__media { order: -1; max-width: 30rem; }
}

/* ── divisor espeto ───────────────────────────── */
.espeto-divider {
  display: flex; justify-content: center;
  color: var(--char-3);
  padding: .5rem var(--gutter);
}
.espeto-divider svg { width: min(320px, 60vw); height: 16px; }
.espeto-divider--flip svg { transform: scaleX(-1); }

/* o espeto se desenha quando entra em cena */
body:not(.no-motion) .espeto-divider line {
  stroke-dasharray: 282; stroke-dashoffset: 282;
}
body:not(.no-motion) .espeto-divider circle,
body:not(.no-motion) .espeto-divider path { opacity: 0; transition: opacity .5s ease .8s; }
body:not(.no-motion) .espeto-divider.is-visible line {
  animation: espeto-draw 1.1s var(--ease-out) forwards;
}
body:not(.no-motion) .espeto-divider.is-visible circle,
body:not(.no-motion) .espeto-divider.is-visible path { opacity: 1; }
@keyframes espeto-draw { to { stroke-dashoffset: 0; } }

/* ── menu ─────────────────────────────────────── */
.menu {
  position: relative;
  padding: var(--space-l) var(--gutter);
  overflow: hidden;
}
.menu__texture {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .16;
  pointer-events: none;
}
.menu::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--char), transparent 30%, transparent 70%, var(--char));
  z-index: 1;
}

.menu__inner { position: relative; z-index: 2; max-width: 72rem; margin: 0 auto; }
.menu__inner h2 { margin-bottom: var(--space-m); }

.menu__cols {
  display: grid; gap: var(--space-m);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 960px) { .menu__cols { grid-template-columns: 1fr; max-width: 34rem; } }

.menu__group h3 {
  font-size: var(--step-3);
  color: var(--brasa-2);
  border-bottom: 1px solid var(--char-3);
  padding-bottom: .75rem; margin-bottom: 1.25rem;
}
.menu__group ul + h3,
.menu__group .menu__opts + ul { margin-top: 2rem; }

/* proteínas do Ka Churrasco */
.menu__opts {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: .9rem;
}
.menu__opts span {
  font-family: var(--f-mono); font-size: .72rem;
  letter-spacing: .04em;
  color: var(--smoke);
  border: 1px solid var(--char-3); border-radius: 2px;
  padding: .3rem .55rem;
}

/* combo especial — o destaque da casa */
.menu__combo {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-s); flex-wrap: wrap;
  border: 1px solid rgba(242, 92, 38, .38); border-radius: 3px;
  background: rgba(242, 92, 38, .05);
  padding: 1.5rem 2rem;
  margin: var(--space-m) 0;
}
.menu__combo h3 {
  font-family: var(--f-display); font-size: var(--step-3);
  text-transform: uppercase; color: var(--brasa);
  margin-bottom: .5rem;
}
.menu__combo p { color: var(--ash); max-width: 46rem; }
.menu__combo > .price {
  font-family: var(--f-mono); font-size: var(--step-3);
  color: var(--brasa-2); white-space: nowrap;
}
.menu__combo > .price::before { content: "R$ "; font-size: .55em; color: var(--smoke); }

.menu__cols--extras { margin-top: var(--space-m); }

.menu__group ul { list-style: none; padding: 0; display: grid; gap: 1.1rem; }

.menu__group li {
  display: flex; align-items: baseline; gap: .5rem;
  transition: transform .25s var(--ease-out);
}
.menu__group li:hover { transform: translateX(5px); }
.menu__group .item strong { transition: color .2s; }
.menu__group li:hover .item strong { color: var(--brasa-2); }
.menu__group .item { display: flex; flex-direction: column; min-width: 0; }
.menu__group .item strong { font-weight: 600; }
.menu__group .item small { color: var(--smoke); font-size: var(--step--1); }
.menu__group .dots {
  flex: 1;
  border-bottom: 1px dotted var(--char-3);
  transform: translateY(-4px);
  min-width: 1.5rem;
}
.menu__group .price {
  font-family: var(--f-mono); font-weight: 500;
  color: var(--brasa-2);
  white-space: nowrap;
}
.menu__group .price::before { content: "R$ "; font-size: .7em; color: var(--smoke); }

.menu__note {
  margin-top: var(--space-m);
  font-family: var(--f-editorial); font-style: italic;
  color: var(--smoke); font-size: var(--step-1);
  max-width: 38rem;
}

/* ── experiência ──────────────────────────────── */
.exp { padding: var(--space-l) var(--gutter); max-width: 78rem; margin: 0 auto; }
.exp h2 { margin-bottom: var(--space-m); }

.exp__gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.exp__gallery figure {
  overflow: hidden; border-radius: 3px;
  aspect-ratio: 3 / 4;
}
.exp__gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.exp__gallery figure:hover img { transform: scale(1.045); }

@media (max-width: 760px) {
  .exp__gallery { grid-template-columns: repeat(2, 1fr); }
  .exp__gallery figure:first-child { grid-column: span 2; aspect-ratio: 16 / 10; }
}

.exp__quote {
  margin: var(--space-l) auto 0;
  max-width: 46rem; text-align: center;
}
.exp__quote p {
  font-family: var(--f-editorial); font-style: italic; font-weight: 300;
  font-size: var(--step-3); line-height: 1.35;
}
.exp__quote cite {
  display: block; margin-top: 1rem;
  font-family: var(--f-mono); font-style: normal;
  font-size: var(--step--1); color: var(--smoke); letter-spacing: .1em;
}

/* ── onde estamos ─────────────────────────────── */
.onde {
  position: relative;
  padding: var(--space-l) var(--gutter);
  overflow: hidden;
}
.onde__embers {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.onde__grid { position: relative; z-index: 1; }

.onde__grid {
  max-width: 46rem; margin: 0 auto;
}

.onde__text h2 { margin-bottom: 1.5rem; }
.onde__text h2 em { color: var(--lagoa); }

.onde__info { font-style: normal; display: grid; gap: 1rem; margin-bottom: 2rem; }
.onde__info p { color: var(--smoke); }
.onde__info strong { color: var(--ash); font-weight: 600; }

.onde__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }

.onde__tip {
  color: var(--smoke); font-size: var(--step--1);
  border-left: 2px solid var(--lagoa);
  padding-left: 1rem; max-width: 28rem;
}


/* ── footer ───────────────────────────────────── */
.footer {
  border-top: 1px solid var(--char-3);
  color: var(--smoke); font-size: var(--step--1);
}
.footer__map { height: clamp(260px, 38vh, 380px); }
.footer__map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  /* mapa em tom noturno, casando com o carvão do site */
  filter: invert(.92) hue-rotate(180deg) grayscale(.25) contrast(.9);
}
.footer__inner {
  padding: var(--space-m) var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
}
.footer__brand { display: flex; align-items: center; gap: 1rem; margin-right: auto; }
.footer__logo { width: 88px; height: 88px; }
.footer__links { display: flex; gap: 1rem; }
.footer__links a {
  text-decoration: none;
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 .25rem;
}
.footer__links a:hover { color: var(--brasa-2); }

/* ── whatsapp flutuante ───────────────────────── */
.whats-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(29, 24, 21, .9);
  border: 1px solid rgba(242, 92, 38, .45);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform .2s var(--ease-out), background-color .25s, border-color .25s;
}
.whats-float svg { width: 26px; height: 26px; fill: var(--brasa); transition: fill .25s; }
.whats-float:hover {
  transform: scale(1.07);
  background: linear-gradient(165deg, #a03c12, #6f260a);
  border-color: rgba(242, 92, 38, .7);
}
.whats-float:hover svg { fill: var(--ash); }

/* ── movimento reduzido ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__line span { transform: none; }
  .hero-fade { opacity: 1; transform: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__embers, .onde__embers, .hero__scroll { display: none; }
  body::after { animation: none; opacity: .6; }
  .hero__bg { animation: none; }
  .espeto-divider line { stroke-dashoffset: 0 !important; }
  .espeto-divider circle, .espeto-divider path { opacity: 1 !important; }
}

/* ── página de pedido ─────────────────────────── */
.pedido-page { padding-top: 8rem; }

.pedido {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 var(--gutter) 9rem;
}
.pedido__head h1 { font-size: var(--step-4); margin-bottom: 1rem; }
.pedido__head h1 em {
  font-family: var(--f-editorial); font-style: italic;
  font-weight: 350; text-transform: none; color: var(--brasa);
}
.pedido__intro { color: var(--smoke); max-width: 34rem; }
.pedido__noscript { margin-top: 2rem; color: var(--smoke); }
.pedido__noscript a { color: var(--brasa-2); }

.pedido__grupo { margin-top: var(--space-m); }
.pedido__grupo h2 {
  font-size: var(--step-3); color: var(--brasa-2);
  border-bottom: 1px solid var(--char-3);
  padding-bottom: .6rem; margin-bottom: .5rem;
}

.item-pedido {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(42, 33, 27, .6);
  transition: background-color .2s;
}
.item-pedido.tem-itens .item-pedido__info > strong { color: var(--brasa-2); }
.item-pedido__info { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.item-pedido__info small { color: var(--smoke); }
.item-pedido__info select {
  margin-top: .25rem; max-width: 15rem;
  background: var(--char-2); color: var(--ash);
  border: 1px solid var(--char-3); border-radius: 2px;
  padding: .45rem .6rem; font-family: var(--f-body); font-size: var(--step--1);
}
.item-pedido__preco { font-family: var(--f-mono); color: var(--smoke); font-size: var(--step--1); }

.stepper { display: flex; align-items: center; gap: .25rem; flex: none; }
.stepper__btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--char-2); color: var(--ash);
  border: 1px solid var(--char-3); border-radius: 2px;
  font-size: 1.25rem; line-height: 1; cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s var(--ease-out);
}
.stepper__btn:hover { border-color: var(--brasa); color: var(--brasa-2); }
.stepper__btn:active { transform: scale(.94); }
.stepper__qtd {
  min-width: 2.2rem; text-align: center;
  font-family: var(--f-mono); font-weight: 500;
}

/* barra fixa do carrinho */
.carrinho-bar {
  position: fixed; inset: auto 0 0 0; z-index: 70;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem var(--gutter);
  padding-bottom: calc(.9rem + env(safe-area-inset-bottom));
  background: rgba(20, 17, 16, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--char-3);
}
.carrinho-bar__info { display: flex; flex-direction: column; line-height: 1.3; }
.carrinho-bar__info span { color: var(--smoke); font-size: var(--step--1); }
.carrinho-bar__info strong { font-family: var(--f-mono); font-size: var(--step-1); color: var(--brasa-2); }

/* painel de resumo */
.resumo { position: fixed; inset: 0; z-index: 80; }
.resumo__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .6); }
.resumo__sheet {
  position: absolute; inset: auto 0 0 0;
  max-height: 88dvh; overflow-y: auto;
  background: var(--char-2);
  border-top: 1px solid var(--char-3);
  border-radius: 12px 12px 0 0;
  padding: 1.5rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  max-width: 44rem; margin: 0 auto;
}
@media (min-width: 720px) { .resumo__sheet { border-radius: 12px 12px 0 0; } }
.resumo__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.resumo__head h2 { font-size: var(--step-3); }
.resumo__fechar {
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--char-3); border-radius: 2px;
  color: var(--smoke); font-size: 1.4rem; cursor: pointer;
}
.resumo__fechar:hover { color: var(--brasa-2); border-color: var(--brasa); }

.resumo__lista { list-style: none; padding: 0; display: grid; gap: .5rem; }
.resumo__lista li {
  display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px dotted var(--char-3); padding-bottom: .5rem;
}
.resumo__lista strong { font-family: var(--f-mono); color: var(--brasa-2); font-weight: 500; }
.resumo__total {
  display: flex; justify-content: space-between;
  margin: 1rem 0 1.5rem; font-size: var(--step-1);
}
.resumo__total strong { font-family: var(--f-mono); color: var(--brasa-2); }

.resumo__form { display: grid; gap: 1.1rem; }
.campo { display: grid; gap: .4rem; }
.campo > span, .campo legend {
  font-size: var(--step--1); font-weight: 600;
}
.campo small { color: var(--smoke); font-size: .78rem; }
.campo input[type="text"], .campo textarea {
  background: var(--char); color: var(--ash);
  border: 1px solid var(--char-3); border-radius: 2px;
  padding: .8rem .9rem; font-family: var(--f-body); font-size: 1rem;
  width: 100%;
}
.campo textarea { font-family: var(--f-mono); font-size: .8rem; word-break: break-all; resize: none; }
.campo input:focus-visible, .campo textarea:focus-visible, .item-pedido__info select:focus-visible {
  outline: 2px solid var(--brasa-2); outline-offset: 1px;
}
.campo--radio { border: 0; padding: 0; margin: 0; }
.campo--radio label {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem 0; min-height: 44px; cursor: pointer;
}
.campo--radio input { accent-color: var(--brasa); width: 1.15rem; height: 1.15rem; }

.pix {
  border: 1px solid rgba(242, 92, 38, .38); border-radius: 3px;
  background: rgba(242, 92, 38, .05);
  padding: 1.25rem; display: grid; gap: 1rem;
}
.pix__label { font-size: var(--step--1); }
.pix__label strong { color: var(--brasa-2); }
.pix__qr { width: min(220px, 60vw); margin: 0 auto; background: #fff; padding: 10px; border-radius: 4px; }
.pix__qr svg { display: block; width: 100%; height: auto; }
.pix__nota { color: var(--smoke); font-size: .8rem; }

.resumo__enviar { justify-content: center; }

/* destaque do link de pedido na nav e CTA no cardápio */
.nav__links .nav__pedido { color: var(--brasa-2); font-weight: 600; }
.nav__links .nav__pedido:hover { color: var(--brasa); }

.menu__pedido {
  margin-top: var(--space-m);
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.menu__pedido span { color: var(--smoke); font-size: var(--step--1); max-width: 24rem; }

/* hidden vence qualquer display de classe */
[hidden] { display: none !important; }
