/* =============================================================================
   BEEF CONTAINER — boutique de carnes
   00 Tokens e temas · 01 Base · 02 Motor (entradas) · 03 Botões e rótulos
   04 Abertura (portas) · 05 Header e menu · 10 Hero · 11 Faixa · 12 Diferencial
   13 Kits · 14 Como funciona · 15 Avaliação · 16 Localização · 17 FAQ
   18 CTA final · 19 Rodapé · 20 Flutuantes · 90 Responsivo · 99 Movimento reduzido
   ============================================================================= */

/* -----------------------------------------------------------------------------
   00. Tokens
   -------------------------------------------------------------------------- */
:root {
  --gold: linear-gradient(120deg, #f6e2a6 0%, #d9b25f 28%, #fff1c7 50%, #b3883a 74%, #7d5a1f 100%);
  --gold-v: linear-gradient(180deg, #f6e2a6 0%, #d9b25f 35%, #fff1c7 55%, #b3883a 80%, #7d5a1f 100%);
  --gold-solid: #c9a24e;
  --on-gold: #1a1407;

  /* O container é sempre petróleo, nos dois temas */
  --steel: #012535;
  --steel-deep: #01151d;

  --gutter: clamp(16px, 4vw, 56px);
  --container: 1320px;
  --section-y: clamp(64px, 7vw, 120px);
  --block-y: clamp(48px, 6vw, 88px);
  --header-h: 84px;

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;

  --font-display: "Anton", "Arial Narrow", sans-serif;   /* títulos: força do "CONTAINER" da logo */
  --font-sub: "Oswald", "Arial Narrow", sans-serif;       /* subtítulos, perguntas, citação */
  --font-label: var(--font-sub);                            /* rótulos, menu e botões */
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.76, 0, .24, 1);
}

/* Escuro: petróleo #012535 aprofundado para dar peso ao dourado */
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #011821;
  --bg-soft: #011e29;
  --surface: #02283a;
  --surface-2: #033246;
  --text: #f3efe7;
  --text-soft: #c5cdcf;
  --muted: #8d9fa5;
  --line: rgba(243, 239, 231, .09);
  --line-strong: rgba(243, 239, 231, .18);
  --rib: rgba(243, 239, 231, .035);
  --gold-ink: #e3c47b;
  --glass: rgba(2, 40, 58, .62);
  --shadow: 0 40px 90px -40px rgba(0, 0, 0, .75);
  --glow: rgba(217, 178, 95, .16);
  --gold-text: var(--gold);
}

/* Claro: marfim quente, texto quase preto, dourado mais fechado para manter contraste */
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f3ec;
  --bg-soft: #efe8dc;
  --surface: #fffdf9;
  --surface-2: #f3ece0;
  --text: #14191c;
  --text-soft: #3b4448;
  --muted: #6b6a66;
  --line: rgba(20, 25, 28, .09);
  --line-strong: rgba(20, 25, 28, .18);
  --rib: rgba(20, 25, 28, .045);
  --gold-ink: #86621f;
  --glass: rgba(255, 253, 249, .72);
  --shadow: 0 40px 80px -44px rgba(70, 48, 12, .35);
  --glow: rgba(201, 162, 78, .22);
  --gold-text: linear-gradient(120deg, #9c7226 0%, #6f4f16 38%, #b3883a 58%, #5f4312 100%);
}

/* -----------------------------------------------------------------------------
   01. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  transition: background-color .6s var(--ease-out), color .6s var(--ease-out);
}

img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
ul, ol { list-style: none; }
address { font-style: normal; }
::selection { background: #d9b25f; color: #14191c; }
:focus-visible { outline: 2px solid var(--gold-solid); outline-offset: 4px; border-radius: 8px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); transition: background-color .6s var(--ease-out); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; top: 12px; left: 12px; z-index: 500;
  padding: 10px 18px; border-radius: 999px;
  background: var(--surface); color: var(--text); box-shadow: var(--shadow);
  transform: translateY(-180%); transition: transform .3s var(--ease-out);
}
.skip:focus { transform: none; }

/* Textura de papel/filme: estática, só dá corpo às cores chapadas */
.grain {
  position: fixed; inset: 0; z-index: 250; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .5 0 0 0 0 .5 0 0 0 0 .5 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Texto dourado. background-clip corta acentos e descidas: padding + margem compensam */
.gold-text {
  background: var(--gold-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: .08em .04em .18em;
  margin: -.08em -.04em -.18em;
}
/* Quebrado em palavras: o degradê vai em cada palavra (pai com transform nos filhos não pinta o clip) */
.is-split .gold-text,
.gold-text.is-split { background: none; -webkit-text-fill-color: currentColor; padding: 0; margin: 0; }
.is-split .gold-text .w > span,
.gold-text.is-split .w > span {
  background: var(--gold-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: .28em .06em 0 .02em; margin: -.28em -.06em 0 -.02em; /* sem folga em cima o acento fica transparente */
}

/* Nervuras de container: motivo da marca, sempre muito sutil */
.ribs-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, var(--rib) 0 1px, transparent 1px 30px);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 75%);
}

html.menu-open, html.lightbox-open, html.modal-open { overflow: hidden; }

/* Troca de tema com View Transition: nada de transição de cor atrapalhando o recorte */
html.theme-vt *, html.theme-vt *::before, html.theme-vt *::after { transition: none !important; }
::view-transition-old(root), ::view-transition-new(root) { animation: none; mix-blend-mode: normal; }

/* -----------------------------------------------------------------------------
   02. Motor: revelação e palavras
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-expo);
  transition-delay: var(--d, 0s);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

.js [data-split]:not(.is-split) { opacity: 0; }
/* padding compensado: sem ele o overflow corta acento (ã, é) e descida (ç, g, p) */
/* folga maior em cima: títulos em caixa alta levam acento acima da letra (Ó, Í) */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding: .26em .02em .16em; margin: -.26em -.02em -.16em; }
.js [data-split] .w > span {
  display: inline-block;
  transform: translate3d(0, 115%, 0) rotate(4deg);
  transform-origin: 0 100%;
  transition: transform 1.2s var(--ease-expo);
  transition-delay: calc(var(--i, 0) * 55ms + var(--d, 0s));
}
.js [data-split].is-in .w > span { transform: none; }

.sw { transition: opacity .3s linear; }
.js [data-scrub-words] .sw { opacity: .16; }

/* Hero: entra quando as portas abrem */
.js [data-hero-in] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 1.1s var(--ease-out), transform 1.3s var(--ease-expo);
  transition-delay: var(--d, 0s);
}
.is-ready [data-hero-in] { opacity: 1; transform: none; }

.is-failsafe [data-reveal],
.is-failsafe [data-hero-in],
.is-failsafe [data-split],
.is-failsafe [data-split] .w > span { opacity: 1 !important; transform: none !important; }
.is-failsafe .doors,
.is-failsafe .final__leaf,
html:not(.js) .final__leaf { display: none !important; }

/* -----------------------------------------------------------------------------
   03. Botões e rótulos
   -------------------------------------------------------------------------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 26px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em; line-height: 1.2;
  white-space: nowrap;
  transition: box-shadow .5s var(--ease-out), background-color .4s var(--ease-out), color .4s var(--ease-out), border-color .4s;
}
.btn__icon { width: 18px; height: 18px; flex: none; }
.btn__arrow { width: 18px; height: 18px; flex: none; transition: transform .5s var(--ease-expo); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--gold {
  color: var(--on-gold);
  background: var(--gold); background-size: 180% 100%; background-position: 0% 50%;
  box-shadow: 0 14px 34px -14px rgba(201, 162, 78, .75), inset 0 1px 0 rgba(255, 255, 255, .55), inset 0 -1px 0 rgba(0, 0, 0, .15);
  transition: background-position .8s var(--ease-out), box-shadow .5s var(--ease-out);
}
/* brilho que atravessa o botão no hover */
.btn--gold::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .7) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform .9s var(--ease-out);
}
.btn--gold:hover { background-position: 100% 50%; box-shadow: 0 20px 44px -14px rgba(201, 162, 78, .9), inset 0 1px 0 rgba(255, 255, 255, .55); }
.btn--gold:hover::after { transform: translateX(110%); }

.btn--line {
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn--line::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--gold); opacity: 0; transform: scale(.6);
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-expo);
}
.btn--line:hover { color: var(--on-gold); box-shadow: inset 0 0 0 1px transparent; }
.btn--line:hover::before { opacity: 1; transform: none; }

.btn--sm { padding: 11px 18px; font-size: .84rem; gap: 9px; }
.btn--sm .btn__icon { width: 16px; height: 16px; }
.btn--lg { padding: 18px 30px; font-size: 1rem; }
.btn--xl { padding: 22px 38px; font-size: 1.08rem; }
.btn--block { width: 100%; }

.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 22px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold-text); }

.title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 1rem + 3.2vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: .005em;
  word-spacing: .02em;
  text-transform: uppercase;
  text-wrap: balance;
}
/* o destaque dourado fica na mesma fonte do título: só a cor muda */
.title em, .hero__title em, .final__title em { font-style: normal; font-weight: 400; }

/* Rótulos, menu e botões em Oswald (condensada: um pouco maior para manter a leitura) */
.eyebrow, .kicker, .visit__label, .footer__label, .rating__label, .quote figcaption,
.kit__price, .grill__hint, .menu__nav small, .status {
  font-family: var(--font-label); font-weight: 500;
}
.eyebrow, .kicker { font-size: .8rem; }
.btn, .kit__cta { font-family: var(--font-label); font-weight: 500; letter-spacing: .07em; text-transform: uppercase; }

.head { position: relative; margin-bottom: var(--block-y); max-width: 820px; }
.head--center { margin-inline: auto; text-align: center; }
.head--center .kicker { justify-content: center; }
.head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.head--split > div { max-width: 720px; }
.head__lead { max-width: 25rem; color: var(--text-soft); font-size: 1.05rem; }

.section-cta { margin-top: clamp(40px, 5vw, 64px); display: flex; }
.section-cta--center { justify-content: center; }

/* -----------------------------------------------------------------------------
   04. Abertura: portas do container
   -------------------------------------------------------------------------- */
.doors { display: none; }
.js .doors {
  position: fixed; inset: 0; z-index: 400; display: block; pointer-events: none;
  perspective: 2200px;
}
.no-doors .doors { display: none; }

.doors__leaf, .final__leaf {
  position: absolute; top: 0; bottom: 0; width: 50.2%;
  background:
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, .055) 0 2px, transparent 2px 20px,
      rgba(0, 0, 0, .22) 20px 23px, transparent 23px 42px),
    linear-gradient(180deg, #02334a 0%, var(--steel) 45%, var(--steel-deep) 100%);
  backface-visibility: hidden;
}
.doors__leaf--l, .final__leaf--l { left: 0; transform-origin: 0 50%; box-shadow: inset -1px 0 0 rgba(227, 196, 123, .45); }
.doors__leaf--r, .final__leaf--r { right: 0; transform-origin: 100% 50%; box-shadow: inset 1px 0 0 rgba(227, 196, 123, .45); }

/* barras de travamento douradas */
.doors__bar {
  position: absolute; top: 6%; bottom: 6%; width: 7px; border-radius: 4px;
  background: var(--gold-v);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .25), 4px 0 12px rgba(0, 0, 0, .35);
}
.doors__bar::before, .doors__bar::after {
  content: ""; position: absolute; left: -7px; width: 21px; height: 10px; border-radius: 3px;
  background: var(--gold);
}
.doors__bar::before { top: 18%; }
.doors__bar::after { bottom: 18%; }
.doors__leaf--l .doors__bar:nth-child(1), .final__leaf--l .doors__bar:nth-child(1) { right: 16%; }
.doors__leaf--l .doors__bar:nth-child(2), .final__leaf--l .doors__bar:nth-child(2) { right: 40%; }
.doors__leaf--r .doors__bar:nth-child(1), .final__leaf--r .doors__bar:nth-child(1) { left: 16%; }
.doors__leaf--r .doors__bar:nth-child(2), .final__leaf--r .doors__bar:nth-child(2) { left: 40%; }

.doors__leaf { transition: transform 1.6s var(--ease-in-out), opacity .6s ease 1.1s; }
.doors-open .doors__leaf--l { transform: rotateY(-92deg) translateX(-8%); opacity: 0; }
.doors-open .doors__leaf--r { transform: rotateY(92deg) translateX(8%); opacity: 0; }

.doors__seal {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  width: min(230px, 48vw);
  transform: translate(-50%, -50%);
  display: grid; justify-items: center; gap: 18px;
  opacity: 0;
  transition: opacity .8s var(--ease-out), transform 1.2s var(--ease-expo);
}
.doors__seal img { width: 100%; filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .5)); }
.doors__line { position: relative; width: 70%; height: 1px; background: rgba(255, 255, 255, .15); overflow: hidden; }
.doors__line i { position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease-in-out) .2s; }
.doors-seal .doors__seal { opacity: 1; }
.doors-seal .doors__line i { transform: scaleX(1); }
.doors-open .doors__seal { opacity: 0; transform: translate(-50%, -50%) scale(1.15); transition-duration: .5s, 1s; }

/* -----------------------------------------------------------------------------
   05. Header e menu
   -------------------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding-block: 18px;
  transition: transform .6s var(--ease-expo), padding .5s var(--ease-out), background-color .5s, box-shadow .5s;
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line);
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.header.is-scrolled { padding-block: 10px; }
.header.is-scrolled::before { opacity: 1; }
.header.is-hidden { transform: translateY(-110%); }
.menu-open .header { transform: none; }
.menu-open .header::before { opacity: 0; }

.header__progress { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; pointer-events: none; }
.header__progress i { position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }

.header__bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__actions { display: flex; align-items: center; gap: 14px; }

.brand { position: relative; display: block; width: clamp(88px, 8vw, 112px); aspect-ratio: 493 / 320; flex: none; transition: width .5s var(--ease-out); }
.header.is-scrolled .brand { width: clamp(78px, 7vw, 96px); }
.brand__logo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  transition: opacity .5s var(--ease-out);
}
:root[data-theme="dark"] .brand__logo--light,
:root[data-theme="light"] .brand__logo--dark { opacity: 0; visibility: hidden; }

.nav { display: flex; gap: clamp(18px, 2.4vw, 36px); }
.nav a {
  position: relative; padding-block: 6px;
  font-family: var(--font-label); font-size: .86rem; font-weight: 400; letter-spacing: .07em; text-transform: uppercase; color: var(--text-soft);
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .6s var(--ease-expo);
}
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

/* Chave sol/lua: o polegar dourado fica sobre o tema ativo */
.theme-switch {
  --w: 74px; --h: 38px; --pad: 4px;
  position: relative; flex: none; display: inline-flex; align-items: center; justify-content: space-between;
  width: var(--w); height: var(--h); padding-inline: 11px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: background-color .5s var(--ease-out);
}
.theme-switch__icon { position: relative; z-index: 1; width: 15px; height: 15px; transition: color .5s var(--ease-out), transform .7s var(--ease-expo); }
.theme-switch__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-switch__icon--moon svg { fill: currentColor; stroke: none; }
.theme-switch__thumb {
  position: absolute; top: var(--pad); left: var(--pad);
  width: calc(var(--h) - var(--pad) * 2); height: calc(var(--h) - var(--pad) * 2);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 4px 14px -4px rgba(179, 136, 58, .8), inset 0 1px 0 rgba(255, 255, 255, .6);
  transition: transform .7s var(--ease-expo);
}
:root[data-theme="dark"] .theme-switch__thumb { transform: translateX(calc(var(--w) - var(--h))); }
:root[data-theme="light"] .theme-switch__icon--sun,
:root[data-theme="dark"] .theme-switch__icon--moon { color: var(--on-gold); }
:root[data-theme="light"] .theme-switch__icon--moon,
:root[data-theme="dark"] .theme-switch__icon--sun { color: var(--muted); }
.theme-switch:hover .theme-switch__icon--sun { transform: rotate(60deg); }
.theme-switch:hover .theme-switch__icon--moon { transform: rotate(-20deg); }

.burger { display: none; position: relative; width: 44px; height: 44px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-strong); }
.burger span {
  position: absolute; left: 13px; right: 13px; height: 1.5px; border-radius: 2px; background: var(--text);
  transition: transform .5s var(--ease-expo), top .5s var(--ease-expo);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 25px; }
.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* Menu do celular: círculo que cresce a partir do botão (scale, não clip-path) */
.menu {
  position: fixed; inset: 0; z-index: 95;
  display: flex; flex-direction: column; justify-content: center; gap: 40px;
  padding: 120px var(--gutter) 40px;
  visibility: hidden; transition: visibility 0s linear .9s;
}
.menu::before {
  content: ""; position: absolute; z-index: -1;
  top: 42px; right: calc(var(--gutter) + 22px);
  width: 300vmax; height: 300vmax; margin: -150vmax -150vmax 0 0;
  border-radius: 50%;
  background: var(--bg-soft);
  transform: scale(0);
  transition: transform .8s var(--ease-in-out) .15s;
}
.menu-open .menu { visibility: visible; transition: none; }
.menu-open .menu::before { transform: scale(1); transition-delay: 0s; }
.menu__nav { display: grid; gap: 6px; }
.menu__nav a, .menu__cta {
  opacity: 0; transform: translateY(24px);
  transition: opacity .3s ease, transform .3s ease;
}
.menu__nav a {
  display: flex; align-items: baseline; gap: 16px;
  padding-block: 10px; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 8vw, 2.6rem); line-height: 1.15; text-transform: uppercase; letter-spacing: .01em;
}
.menu__nav small { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .2em; color: var(--gold-ink); }
.menu-open .menu__nav a, .menu-open .menu__cta {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease-out), transform .9s var(--ease-expo);
}
.menu-open .menu__nav a:nth-child(1) { transition-delay: .38s; }
.menu-open .menu__nav a:nth-child(2) { transition-delay: .44s; }
.menu-open .menu__nav a:nth-child(3) { transition-delay: .5s; }
.menu-open .menu__nav a:nth-child(4) { transition-delay: .56s; }
.menu-open .menu__nav a:nth-child(5) { transition-delay: .62s; }
.menu-open .menu__cta { transition-delay: .7s; }

/* -----------------------------------------------------------------------------
   10. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 48px) 0 110px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__ribs {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, var(--rib) 0 1px, transparent 1px 30px);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 72% 45%, #000 10%, transparent 72%);
          mask-image: radial-gradient(ellipse 60% 70% at 72% 45%, #000 10%, transparent 72%);
}
.hero__glow {
  position: absolute; width: 70vmax; height: 70vmax; right: -18vmax; top: -18vmax;
  background: radial-gradient(circle, var(--glow) 0%, transparent 62%);
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.08fr .92fr; align-items: center;
  gap: clamp(40px, 6vw, 110px);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 30px;
  font-size: .74rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-ink);
}
.eyebrow__dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-solid); }
.eyebrow__dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid var(--gold-solid); opacity: 0;
}
.is-live .eyebrow__dot::after { animation: ping 2.6s var(--ease-out) infinite; }
@keyframes ping { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(1.8); opacity: 0; } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 1rem + 4.4vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: .005em;
  word-spacing: .02em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 30px;
}
.hero__lead {
  max-width: 34rem;
  font-size: clamp(1.02rem, .95rem + .3vw, 1.16rem);
  color: var(--text-soft);
  text-wrap: pretty;
  margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.hero__visual { position: relative; }

/* Churrasqueira: recorte solto no hero (sem moldura nem fundo) e a barra de calor embaixo.
   --h (0..1) é o calor: o JS escreve no .grill e tudo aqui deriva dele.
   Desempenho: nada aqui usa filter ou blend mode (repintariam as imagens a cada quadro);
   as camadas que mudam com o calor só mudam opacidade/transform, cada uma na própria camada. */
.grill {
  --h: 0;
  /* acende a brasa: 0 com o carvão apagado, 1 quando está em brasa (fica entre crua e selando) */
  --brasa: clamp(0, (var(--h) - .26) * 3.2, 1);
  position: relative;
  width: min(100%, 620px, max(380px, (100svh - 290px) * .89));
  margin-inline: auto;
}
/* palco: mesma proporção das imagens (908x1022) */
.grill__stage { position: relative; aspect-ratio: 908 / 1022; }
.grill__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  will-change: opacity;
}
/* as etapas se fundem conforme o calor sobe. As 3 imagens têm a MESMA estrutura (só muda carne e carvão),
   e cada etapa fica 100% opaca antes do ponto de parada (selando 0.56, ponto 0.92) */
.grill__img--raw { opacity: clamp(0, (.5 - var(--h)) * 400, 1); }
.grill__img--searing { opacity: min(clamp(0, (var(--h) - .3) * 5, 1), clamp(0, (.84 - var(--h)) * 400, 1)); }
.grill__img--cooked { opacity: clamp(0, (var(--h) - .64) * 5, 1); }
/* recomeço do ciclo: a carne crua volta por baixo e a assada se desfaz por cima, sem passar pelo "selando"
   e sem a churrasqueira sumir (a estrutura é idêntica, só a carne e o carvão trocam) */
.grill.is-resetting .grill__img--raw { opacity: 1; }
.grill.is-resetting .grill__img--searing,
.grill.is-resetting .grill__img--cooked { opacity: 0; transition: opacity 1.4s var(--ease-in-out); }

/* sombra no chão, embaixo das pernas */
.grill__shadow {
  position: absolute; left: 6%; right: 6%; bottom: -4%; height: 10%; pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 0, 0, .5), transparent 70%);
}
:root[data-theme="light"] .grill__shadow { background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(60, 40, 10, .22), transparent 70%); }

/* halo atrás da churrasqueira na altura do carvão */
.grill__halo {
  position: absolute; left: -20%; right: -20%; top: 5%; height: 60%; pointer-events: none;
  background: radial-gradient(ellipse 50% 42% at 50% 50%, rgba(255, 120, 40, .4), rgba(255, 90, 30, .1) 55%, transparent 72%);
  opacity: var(--brasa); will-change: opacity;
}
/* luz da brasa iluminando a carne e a grelha por baixo */
.grill__glow {
  position: absolute; left: 6%; right: 6%; top: 8%; height: 34%; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 50% 78%, rgba(255, 140, 50, .34), rgba(255, 90, 30, .1) 50%, transparent 72%);
  opacity: calc(var(--brasa) * (.55 + var(--h) * .45)); will-change: opacity;
}
:root[data-theme="light"] .grill__glow { background: radial-gradient(ellipse 60% 55% at 50% 78%, rgba(255, 150, 70, .26), transparent 70%); }

/* partículas: passam do palco (a fumaça sobe acima da churrasqueira) */
.grill__fx { position: absolute; left: -12%; top: -34%; width: 124%; height: 134%; pointer-events: none; }

/* calor vazando no ambiente */
.grill__spill {
  position: absolute; left: -16%; right: -16%; top: 10%; height: 52%; pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 120, 40, .26), transparent 70%);
  opacity: calc(var(--brasa) * .9); will-change: opacity;
}
:root[data-theme="light"] .grill__spill { background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(230, 110, 40, .2), transparent 70%); }

/* barra de calor: esquerda = crua, meio = selando, direita = no ponto */
.grill__range {
  position: relative; width: 78%; height: 52px; margin: 30px auto 0;
  touch-action: none; cursor: pointer;
}
.grill__track, .grill__heat { position: absolute; left: 0; right: 0; top: 50%; border-radius: 3px; pointer-events: none; }
.grill__track {
  height: 2px; margin-top: -1px;
  background: repeating-linear-gradient(90deg, rgba(201, 162, 78, .5) 0 2px, transparent 2px 8px);
}
.grill__heat {
  height: 3px; margin-top: -1.5px;
  background: linear-gradient(90deg, #f6e2a6, #e9a23b 45%, #e2641f 75%, #c7341a);
  box-shadow: 0 0 10px rgba(255, 130, 40, .5);
  transform: scaleX(var(--h)); transform-origin: left;
}

.grill__knob {
  position: absolute; left: 0; top: 50%; z-index: 2;
  width: 52px; height: 52px; margin: -26px 0 0 -26px;
  display: grid; place-items: center; border-radius: 50%;
  color: var(--on-gold);
  background: radial-gradient(circle at 35% 30%, #fff1c7, #e9a23b 45%, #c7541a 100%);
  box-shadow: 0 0 0 4px rgba(1, 21, 29, .35), 0 10px 28px -6px rgba(226, 100, 31, .8), inset 0 1px 0 rgba(255, 255, 255, .7);
  cursor: grab; touch-action: none;
  transition: box-shadow .4s, scale .4s var(--ease-expo);
}
:root[data-theme="light"] .grill__knob { box-shadow: 0 0 0 4px rgba(255, 253, 249, .8), 0 10px 28px -6px rgba(226, 100, 31, .7), inset 0 1px 0 rgba(255, 255, 255, .7); }
.grill__knob svg { width: 22px; height: 22px; }
.grill__knob::before {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(233, 162, 59, .7); opacity: 0;
}
.grill__knob:hover, .grill__knob:focus-visible { scale: 1.08; }
.grill.is-dragging .grill__knob { cursor: grabbing; scale: 1.12; }
.grill.is-hinting .grill__knob::before { animation: ping 1.2s var(--ease-out) infinite; }
/* dica acima da brasa, alinhada à esquerda (a brasa começa na ponta esquerda da barra) */
.grill__hint {
  position: absolute; left: 0; bottom: calc(100% + 12px);
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  opacity: 0; transform: translateY(6px);
  transition: opacity .5s, transform .6s var(--ease-expo);
  pointer-events: none;
}
.grill.is-hinting .grill__hint { opacity: 1; transform: none; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 2;
  width: 30px; height: 64px; margin-left: -15px;
  display: grid; justify-items: center;
}
.scroll-cue__line { position: relative; width: 1px; height: 100%; background: var(--line-strong); overflow: hidden; }
.scroll-cue__line::after {
  content: ""; position: absolute; left: 0; top: 0; width: 1px; height: 40%;
  background: var(--gold-v); transform: translateY(-100%);
}
.is-live .scroll-cue__line::after { animation: drip 2.2s var(--ease-in-out) infinite; }
@keyframes drip { to { transform: translateY(260%); } }

/* -----------------------------------------------------------------------------
   11. Faixa com os cortes
   -------------------------------------------------------------------------- */
.ribbon {
  position: relative; overflow: hidden;
  padding-block: clamp(20px, 2.6vw, 34px);
  border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ribbon__track { display: flex; width: max-content; will-change: transform; }
.ribbon__list { display: flex; align-items: center; flex: none; }
.ribbon__list li {
  flex: none; padding-inline: clamp(18px, 2.4vw, 34px);
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.8rem, 1rem + 2.8vw, 3.5rem); line-height: 1.2; letter-spacing: .02em;
  /* nomes alternados só com contorno dourado (Anton pede traço mais grosso para aparecer) */
  color: transparent; -webkit-text-stroke: 1.6px var(--gold-ink);
  white-space: nowrap;
}
.ribbon__list li:nth-child(4n+1) { color: var(--text); -webkit-text-stroke: 0; }
.ribbon__list li.ribbon__sep {
  padding-inline: 0; font-style: normal; font-size: clamp(.9rem, .7rem + .6vw, 1.3rem);
  color: var(--gold-solid); -webkit-text-stroke: 0;
}

/* -----------------------------------------------------------------------------
   12. Diferencial
   -------------------------------------------------------------------------- */
.origin__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(48px, 7vw, 120px);
}
.origin__content .title { margin-bottom: 36px; }
.origin__body {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(1.1rem, .95rem + .6vw, 1.4rem); line-height: 1.6; letter-spacing: -.005em;
  text-wrap: pretty;
  margin-bottom: 40px;
}
/* Selos em cards: nervuras de container ao fundo, ícone dourado, número e rótulo */
.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(14px, 1.6vw, 22px);
  margin-top: var(--block-y);
}
.pillar {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: auto 1fr; align-items: start; row-gap: clamp(34px, 4vw, 56px);
  padding: clamp(22px, 2.2vw, 32px);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow);
  transition: box-shadow .5s var(--ease-out), background-color .6s var(--ease-out);
}
.pillar::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: repeating-linear-gradient(90deg, var(--rib) 0 1px, transparent 1px 22px);
  -webkit-mask-image: linear-gradient(200deg, #000, transparent 70%); mask-image: linear-gradient(200deg, #000, transparent 70%);
}
/* filete dourado que se abre embaixo no hover */
.pillar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .8s var(--ease-expo);
}
.pillar:hover { box-shadow: inset 0 0 0 1px rgba(201, 162, 78, .45), var(--shadow); }
.pillar:hover::after { transform: scaleX(1); }
.pillar__icon {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold); color: var(--on-gold);
  box-shadow: 0 12px 28px -12px rgba(201, 162, 78, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
  transition: transform .7s var(--ease-expo);
}
.pillar:hover .pillar__icon { transform: translateY(-4px) rotate(-6deg); }
.pillar__icon svg { width: 26px; height: 26px; }
.pillar__num {
  justify-self: end;
  font-family: var(--font-label); font-size: .78rem; font-weight: 500; letter-spacing: .22em; color: var(--muted);
}
.pillar__label {
  grid-column: 1 / -1;
  font-family: var(--font-sub); font-weight: 500; font-size: clamp(1.25rem, 1rem + .7vw, 1.6rem);
  line-height: 1.15; letter-spacing: .03em; text-transform: uppercase;
}

.origin__visual { position: relative; padding-bottom: 70px; }
.origin__photo {
  --p: 0;
  position: relative; width: 84%; margin-left: auto; aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.origin__photo img {
  position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover;
  transform: translate3d(0, calc((var(--p) - .5) * -60px), 0);
}
.origin__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(1, 21, 29, .45));
}

.route {
  --p: 0;
  position: absolute; left: 0; bottom: 0; z-index: 2;
  width: min(400px, 76%);
  padding: 18px 20px 20px;
  border-radius: var(--radius);
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow);
}
.route__map { width: 100%; height: auto; overflow: visible; }
.route__ghost { fill: none; stroke: var(--line-strong); stroke-width: 1.5; stroke-dasharray: 2 7; stroke-linecap: round; }
.route__path { fill: none; stroke: var(--gold-solid); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: calc(1 - var(--p)); }
.route__end { fill: var(--bg); stroke: var(--gold-solid); stroke-width: 2; }
.route__dot { fill: #f6e2a6; filter: drop-shadow(0 0 6px rgba(246, 226, 166, .9)); }
.route__halo { fill: none; stroke: var(--gold-solid); stroke-width: 1; opacity: calc(var(--p) * .8); transform-box: fill-box; transform-origin: center; }
.route__label {
  position: absolute;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-soft);
  white-space: nowrap;
}
.route__label b { color: var(--gold-ink); margin-left: 3px; }
.route__label--a { left: 20px; bottom: 16px; }
.route__label--b { right: 20px; top: 12px; }

/* -----------------------------------------------------------------------------
   12b. Galeria: carrossel em arco 3D
   A foto do centro fica de frente e grande; as vizinhas giram para trás como numa vitrine curva.
   O nome do corte aparece enorme, em contorno dourado, atrás da foto (mesmo estilo da faixa de cortes).
   Sem JS: vira um trilho horizontal com encaixe.
   -------------------------------------------------------------------------- */
.gallery { overflow: hidden; overflow: clip; padding-top: 0; }
.gallery__stage {
  --w: clamp(230px, 25vw, 380px);
  position: relative;
  outline: none;
}
.gallery__stage:focus-visible { outline: 2px solid var(--gold-solid); outline-offset: -2px; border-radius: 0; }
.gallery__track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gutter) 10px; scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__slide {
  position: relative; flex: 0 0 var(--w); aspect-ratio: 4 / 5; scroll-snap-align: center;
  border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; }

/* com JS: palco em arco (o JS posiciona cada foto com transform) */
.gallery__stage.is-carousel {
  --gh: clamp(3.4rem, 1rem + 7.6vw, 9.5rem); /* tamanho do nome em contorno */
  --topo: calc(var(--gh) * .62);            /* as fotos começam na metade de baixo do nome */
  height: calc(var(--w) * 1.25 + var(--topo) + 40px);
  cursor: grab; touch-action: pan-y; user-select: none;
}
.gallery__stage.is-dragging { cursor: grabbing; }
.is-carousel .gallery__track { display: block; overflow: visible; padding: 0; height: 100%; }
.is-carousel .gallery__slide {
  position: absolute; left: 50%; top: var(--topo); width: var(--w); margin-left: calc(var(--w) / -2);
  will-change: transform;
  backface-visibility: hidden;
}
/* parallax dentro da foto: a imagem corre um pouco mais que o card */
.is-carousel .gallery__slide img {
  position: absolute; top: 0; left: -9%; width: 118%; max-width: none;
  transform: translate3d(var(--px, 0), 0, 0);
}
/* sombra que escurece as fotos que estão longe do centro (só a opacidade muda) */
.gallery__slide::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: var(--bg); opacity: var(--dim, 0);
}
/* moldura dourada + brilho que atravessa a foto quando ela chega ao centro */
.gallery__slide::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(227, 196, 123, .0);
  background: linear-gradient(105deg, transparent 38%, rgba(255, 241, 199, .28) 50%, transparent 62%) no-repeat;
  background-size: 250% 100%; background-position: 130% 0;
  transition: box-shadow .6s var(--ease-out);
}
.gallery__slide.is-active::after {
  box-shadow: inset 0 0 0 1.5px rgba(227, 196, 123, .75);
  animation: gallery-sheen 1.3s var(--ease-out) .15s both;
}
@keyframes gallery-sheen { from { background-position: 130% 0; } to { background-position: -30% 0; } }

.gallery__ghost { display: none; }
.is-carousel .gallery__ghost {
  display: grid; justify-items: center;
  position: absolute; left: 0; right: 0; top: 0; pointer-events: none;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase; white-space: nowrap;
  font-size: var(--gh); line-height: 1; letter-spacing: .01em;
  color: transparent; -webkit-text-stroke: 1.6px var(--gold-ink);
  opacity: .7;
}
.gallery__ghost span { transition: opacity .35s, transform .6s var(--ease-expo); }
.gallery__ghost span.is-swap { opacity: 0; transform: translate3d(0, 18px, 0); transition-duration: .25s, .25s; }

.gallery__bar {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin-top: 24px;
}
.gallery__btn {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: box-shadow .4s, background-color .4s, color .4s;
}
.gallery__btn svg { width: 20px; height: 20px; }
.gallery__btn[data-gallery-prev] svg { transform: scaleX(-1); }
.gallery__btn:hover { background: var(--gold); color: var(--on-gold); box-shadow: none; }
.gallery__count {
  font-family: var(--font-label); font-size: .82rem; font-weight: 500; letter-spacing: .22em; color: var(--muted);
  min-width: 70px; text-align: center;
}
.gallery__count b { color: var(--gold-ink); font-weight: 600; }
.gallery__progress { position: relative; width: clamp(90px, 16vw, 200px); height: 2px; border-radius: 2px; background: var(--line-strong); overflow: hidden; }
.gallery__progress i { position: absolute; inset: 0; background: var(--gold); transform: scaleX(var(--g, .1)); transform-origin: left; transition: transform .6s var(--ease-expo); }
html:not(.js) .gallery__bar { display: none; }

/* -----------------------------------------------------------------------------
   13. Kits
   -------------------------------------------------------------------------- */
.kits__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}
.kit { perspective: 1100px; }
.kit__card {
  --mx: 50%; --my: 0%;
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .7s var(--ease-out), box-shadow .6s var(--ease-out), background-color .6s var(--ease-out);
}
/* luz que segue o mouse */
.kit__card::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(246, 226, 166, .14), transparent 45%);
  opacity: 0; transition: opacity .5s;
}
/* contorno dourado que acende no hover */
.kit__card::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: inherit; padding: 1px;
  background: var(--gold);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.kit__card:hover { box-shadow: var(--shadow); }
.kit__card:hover::before, .kit__card:hover::after,
.kit--special .kit__card::after { opacity: 1; }
.kit--special .kit__card::after { opacity: .55; }
.kit--special .kit__card:hover::after { opacity: 1; }

.kit__media { position: relative; aspect-ratio: 1 / 1.02; overflow: hidden; background: var(--surface-2); }
.kit__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-expo);
}
.kit__card:hover .kit__media img { transform: scale(1.12); }
.kit__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1, 21, 29, .15) 0%, transparent 30%, transparent 62%, rgba(1, 21, 29, .5) 100%);
}
.kit__num {
  position: absolute; left: 16px; top: 16px; z-index: 1;
  padding: 6px 12px; border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  color: #f3efe7; background: rgba(1, 21, 29, .45);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}
.kit__live {
  position: absolute; right: 16px; top: 16px; z-index: 1;
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(1, 21, 29, .45);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(246, 226, 166, .4);
}
.kit__live i { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #f6e2a6; }
.kit__live i::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid #f6e2a6; animation: ping 2.2s var(--ease-out) infinite; }

.kit__body { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 24px 24px 24px; transform: translateZ(30px); }
.kit__name { font-family: var(--font-sub); font-weight: 600; font-size: 1.45rem; line-height: 1.15; letter-spacing: .03em; text-transform: uppercase; }
.kit__text { color: var(--text-soft); font-size: .95rem; line-height: 1.55; }
.kit__price {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.kit__price strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; letter-spacing: .02em; text-transform: none; color: var(--text); }
.kit__cta {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center; gap: 10px;
  margin-top: 6px; padding: 14px 18px; border-radius: 14px;
  font-size: .9rem; font-weight: 600;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: color .4s var(--ease-out), box-shadow .4s;
}
.kit__cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold); transform: translateY(101%);
  transition: transform .6s var(--ease-expo);
}
.kit__cta span { flex: 1; }
.kit__arrow { width: 18px; height: 18px; transition: transform .5s var(--ease-expo); }
.kit__cta:hover, .kit__cta:focus-visible { color: var(--on-gold); box-shadow: inset 0 0 0 1px transparent; }
.kit__cta:hover::before, .kit__cta:focus-visible::before { transform: none; }
.kit__cta:hover .kit__arrow { transform: translateX(4px); }

.kits .section-cta { justify-content: center; }
.rail-hint { display: none; }

/* -----------------------------------------------------------------------------
   14. Como funciona
   -------------------------------------------------------------------------- */
.steps-sec { overflow: hidden; }
.steps {
  --p: 0;
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.steps__track {
  position: absolute; top: 46px; left: calc(100% / 6); right: calc(100% / 6); height: 1px;
  background: var(--line-strong);
}
.steps__fill { position: absolute; inset: 0; background: var(--gold); transform: scaleX(var(--p)); transform-origin: left; }
.step { position: relative; text-align: center; display: grid; justify-items: center; gap: 12px; }
.step__icon {
  position: relative; display: grid; place-items: center;
  width: 92px; height: 92px; margin-bottom: 14px; border-radius: 50%;
  background: var(--bg-soft);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  color: var(--muted);
  transition: color .6s var(--ease-out), box-shadow .6s var(--ease-out), background-color .6s;
}
.step__icon::before {
  content: ""; position: absolute; inset: 7px; border-radius: 50%;
  background: var(--surface); transition: background-color .6s;
}
.step__icon svg { position: relative; width: 30px; height: 30px; }
.step__num {
  position: absolute; right: -4px; top: -4px;
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  background: var(--surface-2); color: var(--muted);
  box-shadow: 0 0 0 4px var(--bg-soft);
  transition: background-color .6s, color .6s;
}
.step.is-active .step__icon { color: var(--gold-ink); box-shadow: inset 0 0 0 1px var(--gold-solid), 0 0 0 8px rgba(201, 162, 78, .08), 0 18px 40px -18px rgba(201, 162, 78, .6); }
.step.is-active .step__num { background: var(--gold); color: var(--on-gold); }
.step h3 { font-family: var(--font-sub); font-weight: 600; font-size: 1.3rem; line-height: 1.2; letter-spacing: .04em; text-transform: uppercase; }
.step p { max-width: 20rem; color: var(--text-soft); font-size: .98rem; }

/* -----------------------------------------------------------------------------
   15. Avaliação
   -------------------------------------------------------------------------- */
.proof__grid {
  display: grid; grid-template-columns: .8fr 1.2fr; align-items: center;
  gap: clamp(32px, 6vw, 100px);
}
.rating {
  --mx: 50%; --my: 0%;
  position: relative; overflow: hidden;
  padding: clamp(36px, 4vw, 56px) 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  text-align: center;
  display: grid; justify-items: center; gap: 22px;
}
.rating::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx) var(--my), var(--glow), transparent 60%);
}
.rating__stars { position: relative; }
.rating__row { display: flex; gap: 6px; }
.rating__row svg { width: 32px; height: 32px; }
.rating__row--base { color: var(--line-strong); }
.rating__row--fill {
  position: absolute; inset: 0; color: #d9b25f;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2s var(--ease-expo) .3s;
}
.rating.is-in .rating__row--fill { clip-path: inset(0 10.3% 0 0); }
.rating__value { position: relative; display: grid; justify-items: center; gap: 4px; }
.rating__num {
  display: block;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(4.4rem, 3rem + 5vw, 7.4rem); line-height: 1; letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}
.rating__label { font-size: .76rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

.quote { position: relative; }
.quote__mark { width: 52px; height: auto; color: var(--gold-solid); opacity: .7; margin-bottom: 26px; }
.quote blockquote p {
  font-family: var(--font-sub); font-weight: 300;
  font-size: clamp(1.4rem, 1rem + 1.5vw, 2.3rem); line-height: 1.38; letter-spacing: .005em;
  text-wrap: pretty;
}
.quote figcaption {
  display: flex; align-items: center; gap: 14px; margin-top: 30px;
  font-size: .76rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-ink);
}
.quote__line { width: 40px; height: 1px; background: var(--gold-text); }

/* -----------------------------------------------------------------------------
   16. Localização
   -------------------------------------------------------------------------- */
.place__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(16px, 2vw, 28px); align-items: stretch; }
.map {
  position: relative; overflow: hidden; min-height: 460px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow);
}
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; transition: filter .6s; }
:root[data-theme="dark"] .map iframe { filter: invert(.92) hue-rotate(185deg) saturate(.45) brightness(.92) contrast(.92); }
:root[data-theme="light"] .map iframe { filter: grayscale(.35) sepia(.12) contrast(.98); }
.map::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--line), inset 0 0 80px rgba(1, 21, 29, .25);
}

.visit {
  --mx: 50%; --my: 0%;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 30px;
  padding: clamp(28px, 3vw, 44px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}
.visit::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(380px circle at var(--mx) var(--my), var(--glow), transparent 60%);
}
.visit > * { position: relative; }
.visit__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink);
}
.visit__label svg { width: 18px; height: 18px; flex: none; }
.visit address { margin-top: 12px; font-family: var(--font-sub); font-weight: 400; font-size: 1.3rem; line-height: 1.45; letter-spacing: .01em; }
.visit__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.visit__block--inline .visit__label { font-size: .78rem; }
.visit .btn { margin-top: auto; }

.status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  box-shadow: inset 0 0 0 1px var(--line-strong); color: var(--muted);
}
.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); }
.status.is-open { color: var(--gold-ink); box-shadow: inset 0 0 0 1px rgba(201, 162, 78, .5); }
.status.is-open i { background: var(--gold-solid); box-shadow: 0 0 0 3px rgba(201, 162, 78, .2); }

.hours { margin-top: 14px; }
.hours li {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 12px;
  padding-block: 11px;
  color: var(--text-soft);
}
.hours li + li { border-top: 1px solid var(--line); }
.hours em { border-bottom: 1px dotted var(--line-strong); transform: translateY(-4px); }
.hours strong { font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.hours li.is-today span { color: var(--text); font-weight: 600; }
.hours li.is-today strong { color: var(--gold-ink); }
.hours li.is-today span::before {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 10px; border-radius: 50%;
  background: var(--gold-solid); transform: translateY(-2px);
}

/* -----------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 100px); align-items: start; }
.faq__head { position: sticky; top: 120px; margin-bottom: 0; }
.qa { border-bottom: 1px solid var(--line-strong); }
.qa:first-child { border-top: 1px solid var(--line-strong); }
.qa h3 { font: inherit; }
.qa__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-block: 28px; text-align: left;
  font-family: var(--font-sub); font-weight: 500; font-size: clamp(1.1rem, 1rem + .45vw, 1.35rem); line-height: 1.35; letter-spacing: .01em;
  transition: color .3s;
}
.qa__q:hover { color: var(--gold-ink); }
.qa__icon {
  position: relative; flex: none; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  color: var(--text);
  transition: transform .6s var(--ease-expo), color .4s, box-shadow .4s;
}
.qa__icon::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--gold); transform: scale(0); transition: transform .5s var(--ease-expo);
}
.qa__icon svg { position: relative; width: 18px; height: 18px; }
.qa__q[aria-expanded="true"] .qa__icon { transform: rotate(135deg); color: var(--on-gold); box-shadow: none; }
.qa__q[aria-expanded="true"] .qa__icon::before { transform: scale(1); }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .7s var(--ease-expo); }
.qa__a > div { overflow: hidden; }
.qa__a p {
  max-width: 40rem; padding-bottom: 30px; padding-right: 68px;
  color: var(--text-soft); font-size: 1.02rem;
  opacity: 0; transform: translateY(-8px); transition: opacity .5s, transform .7s var(--ease-expo);
}
.qa.is-open .qa__a { grid-template-rows: 1fr; }
.qa.is-open .qa__a p { opacity: 1; transform: none; transition-delay: .1s; }
html:not(.js) .qa__a { grid-template-rows: 1fr; }
html:not(.js) .qa__a p { opacity: 1; transform: none; }

/* -----------------------------------------------------------------------------
   18. CTA final — sempre petróleo, nos dois temas: as portas se abrem para o pedido
   -------------------------------------------------------------------------- */
.final {
  --p: 0;
  --text: #f3efe7; --text-soft: #c5cdcf; --muted: #8d9fa5; --gold-ink: #e3c47b;
  --gold-text: linear-gradient(120deg, #f6e2a6 0%, #d9b25f 28%, #fff1c7 50%, #b3883a 74%, #7d5a1f 100%);
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 92vh; min-height: 92svh;
  display: grid; place-items: center;
  padding-block: calc(var(--section-y) * 1.2);
  background: radial-gradient(ellipse 70% 60% at 50% 55%, #03384f 0%, var(--steel) 35%, var(--steel-deep) 100%);
  color: var(--text);
  text-align: center;
}

/* Foto de fundo: afasta (zoom out) enquanto as portas abrem; camada petróleo garante a leitura */
.final__photo { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--steel-deep); }
.final__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;
  transform: scale(calc(1.18 - var(--p) * .12));
  will-change: transform;
}
.final__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 52%, rgba(1, 21, 29, .5) 0%, rgba(1, 21, 29, .62) 55%, rgba(1, 21, 29, .9) 100%),
    linear-gradient(180deg, rgba(1, 37, 53, .5), rgba(1, 21, 29, .15) 40%, rgba(1, 21, 29, .7));
}
.final__leaf { z-index: 3; pointer-events: none; will-change: transform; }
.final__leaf--l { transform: translate3d(calc(var(--p) * -101%), 0, 0); }
.final__leaf--r { transform: translate3d(calc(var(--p) * 101%), 0, 0); }
.final__inner { position: relative; z-index: 1; display: grid; justify-items: center; }
.final__title {
  max-width: 16ch;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.8rem, 1rem + 5vw, 6rem); line-height: 1.02; letter-spacing: .005em; word-spacing: .02em;
  text-wrap: balance;
  margin-bottom: 28px;
}
.final__text { max-width: 32rem; color: var(--text-soft); font-size: clamp(1.02rem, .95rem + .3vw, 1.18rem); margin-bottom: 44px; }

/* -----------------------------------------------------------------------------
   19. Rodapé
   -------------------------------------------------------------------------- */
.footer { position: relative; padding: clamp(56px, 6vw, 88px) 0 28px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand { display: grid; width: 150px; }
.footer__brand img { grid-area: 1 / 1; width: 100%; transition: opacity .5s; }
.footer__label { display: block; margin-bottom: 14px; font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-ink); }
.footer address { color: var(--text-soft); max-width: 22rem; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { display: inline-flex; align-items: center; gap: 10px; color: var(--text-soft); transition: color .3s; }
.footer__links a:hover { color: var(--gold-ink); }
.footer__links svg { width: 18px; height: 18px; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  position: relative; padding-top: 26px;
  font-size: .8rem; color: var(--muted);
}
.footer__bottom::before {
  content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: var(--line);
}
.to-top {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: box-shadow .4s, color .4s, transform .5s var(--ease-expo);
}
.to-top svg { width: 18px; height: 18px; }
.to-top:hover { color: var(--gold-ink); box-shadow: inset 0 0 0 1px var(--gold-solid); transform: translateY(-3px); }

/* -----------------------------------------------------------------------------
   20. Flutuantes
   -------------------------------------------------------------------------- */
.float-cta {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 90;
  display: none; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  color: var(--on-gold); background: var(--gold);
  box-shadow: 0 16px 34px -12px rgba(201, 162, 78, .8), inset 0 1px 0 rgba(255, 255, 255, .6);
  transform: translateY(140%) scale(.6); opacity: 0;
  transition: transform .7s var(--ease-expo), opacity .4s;
}
.float-cta svg { width: 26px; height: 26px; }
.float-cta::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--gold-solid); animation: ping 2.8s var(--ease-out) infinite;
}
.float-cta.is-visible { transform: none; opacity: 1; }
.menu-open .float-cta { opacity: 0; pointer-events: none; }

/* -----------------------------------------------------------------------------
   90. Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: block; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .hero { min-height: 0; padding-bottom: 96px; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__visual { order: 2; }
  .grill { width: min(84vw, 480px); }
  .scroll-cue { display: none; }

  .origin__grid { grid-template-columns: 1fr; }
  .origin__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .head--split { flex-direction: column; align-items: flex-start; gap: 20px; }
  .proof__grid { grid-template-columns: 1fr; }
  .rating { max-width: 460px; width: 100%; margin-inline: auto; }
  .place__grid { grid-template-columns: 1fr; }
  .map { min-height: 340px; }
  .faq__grid { grid-template-columns: 1fr; gap: 12px; }
  .faq__head { position: relative; top: 0; margin-bottom: 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .header__cta { display: none; }
  .float-cta { display: grid; }

  /* Kits viram trilho horizontal com encaixe */
  .kits__grid {
    display: flex; gap: 14px;
    margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
    scrollbar-width: none; overscroll-behavior-x: contain;
    padding-bottom: 8px;
  }
  .kits__grid::-webkit-scrollbar { display: none; }
  .kit { flex: 0 0 78%; scroll-snap-align: start; }
  .rail-hint {
    display: flex; align-items: center; gap: 10px; margin-top: 18px;
    font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  }

  .steps { grid-template-columns: 1fr; gap: 34px; }
  .steps__track { top: 46px; bottom: 46px; left: 46px; right: auto; width: 1px; height: auto; }
  .steps__fill { transform: scaleY(var(--p)); transform-origin: top; }
  .step { grid-template-columns: 92px 1fr; justify-items: start; text-align: left; column-gap: 22px; row-gap: 4px; }
  .step__icon { grid-row: span 2; margin-bottom: 0; }
  .step h3 { align-self: end; font-size: 1.35rem; }
  .step p { align-self: start; }

  .qa__a p { padding-right: 0; }
  .final__leaf .doors__bar:nth-child(2) { display: none; }
}

@media (max-width: 520px) {
  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero__actions .btn { width: 100%; }
  .pillars { gap: 10px; }
  .pillar { grid-template-columns: auto 1fr auto; align-items: center; column-gap: 16px; padding: 16px 20px 16px 16px; }
  .pillar__icon { width: 48px; height: 48px; }
  .pillar__icon svg { width: 22px; height: 22px; }
  .pillar__label { grid-column: 2; grid-row: 1; font-size: 1.15rem; }
  .pillar__num { grid-column: 3; grid-row: 1; }
  .gallery__stage { --w: 64vw; }
  .gallery__bar { gap: 14px; }
  .grill { width: 90vw; }
  .grill__range { width: 80%; margin-top: 24px; }
  .grill__knob { width: 46px; height: 46px; margin: -23px 0 0 -23px; }
  .theme-switch { --w: 66px; --h: 34px; padding-inline: 9px; }
  .route { width: 88%; }
  .origin__photo { width: 90%; }
  .btn--xl { padding: 20px 26px; font-size: 1rem; }
  .final .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* -----------------------------------------------------------------------------
   99. Movimento reduzido: tudo aparece, sem animação
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    transition-delay: 0s !important;
  }
  .js [data-scrub-words] .sw { opacity: 1; }
  .doors, .final__leaf { display: none !important; }
}
