/* ==========================================================================
   Pizzaria Art Pura — folha de estilos de produção
   Fase 02 (POP Mestre v2.5). Direção visual: prévia aprovada.
   Ordem: fontes · tokens · base · componentes · seções · flutuantes ·
          motion · breakpoints (1100 · 900 · 620 · 380) · acessibilidade
   ========================================================================== */

/* 1. Fontes self-hosted (OFL) --------------------------------------------- */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue-latin-ext-400.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* DM Sans variável limitada a 400–800: reproduz exatamente o peso máximo
   que a prévia recebia do Google Fonts (pedidos de 900 renderizavam 800). */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/dm-sans-latin-wght.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/dm-sans-latin-ext-wght.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* 2. Tokens ---------------------------------------------------------------- */
:root {
  /* superfícies */
  --bg: #100604;
  --bg-2: #170805;
  --bg-deep: #0d0604;
  --bg-footer: #0f0705;
  --panel: #1f0f0a;
  --panel-2: #2a140d;

  /* texto */
  --cream: #fffaf4;
  --text-soft: #e5d8cf;
  --muted: #d2bbb0;
  --muted-2: #b9a8a0;
  --faint: #a8978e;

  /* marca */
  --orange: #ff8a2a;
  --orange-2: #ffad49;
  --gold: #ffd36a;
  --ember: #ef4b2f;
  --ink: #190904;

  /* linhas */
  --line: #563126;
  --line-strong: #70584d;
  --line-hover: #a48372;
  --line-soft: rgba(255, 255, 255, .09);
  --line-warm: rgba(255, 138, 42, .23);
  --section-rule: #291a14;

  /* tipografia */
  --font-display: "Bebas Neue", "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-label: .6875rem;   /* 11px — tags, rótulos */
  --fs-kicker: .75rem;    /* 12px */
  --fs-btn: .71875rem;    /* 11.5px */
  --fs-small: .8125rem;   /* 13px */
  --fs-body: .9375rem;    /* 15px */
  --fs-lead: 1.0625rem;   /* 17px */

  /* layout */
  --wrap: 1240px;
  --gutter: 24px;
  --header-h: 78px;
  --header-h-scrolled: 70px;
  --radius: 16px;
  --radius-lg: 20px;
  --grid-gap: 14px;

  /* profundidade */
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --shadow-card: 0 18px 46px rgba(0, 0, 0, .15);
  --shadow-cta: 0 10px 30px rgba(255, 111, 44, .19);

  /* movimento */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --press: 140ms;
}

/* 3. Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  scrollbar-color: var(--line) var(--bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
picture { display: block; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }

::selection { background: var(--orange); color: var(--ink); }
main:focus { outline: none; }

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
:where(a, button, summary) { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -64px;
  z-index: 400;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
  font-size: var(--fs-small);
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 14px; }

.wrap {
  width: min(var(--wrap), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

/* Apenas scroll-padding no html: a prévia somava também scroll-margin nas
   seções e as âncoras paravam ~100px antes do ponto certo. */

.icon {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 4. Camadas globais ------------------------------------------------------- */
.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 120;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
}

/* Loader: tela escura com a marca. Some no load (JS), com fallback CSS
   que nunca prende o usuário caso o JS falhe. */
.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--bg-deep);
  transition: opacity .7s var(--ease), visibility .7s;
  animation: loaderSafeExit .42s var(--ease) 1.8s forwards;
}
.loader.is-hidden {
  animation: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-box { min-width: 220px; text-align: center; }
.loader-brand {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: .04em;
}
.loader-brand span { color: var(--orange); }
.loader-line {
  height: 2px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .11);
}
.loader-line::after {
  content: "";
  display: block;
  width: 46%;
  height: 100%;
  background: var(--orange);
  animation: loaderBar 1s var(--ease) infinite;
}
@keyframes loaderBar { from { transform: translateX(-120%); } to { transform: translateX(320%); } }
@keyframes loaderSafeExit { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* 5. Botões e links -------------------------------------------------------- */
.btn,
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-size: var(--fs-btn);
  font-weight: 800;
  letter-spacing: .075em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform .28s var(--ease),
    background-color .28s var(--ease),
    border-color .28s var(--ease),
    color .28s var(--ease),
    box-shadow .28s var(--ease);
}
.btn .icon,
.nav-btn .icon { font-size: 12px; stroke-width: 2.25; }

.btn.primary,
.nav-btn.primary {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--ember));
  color: var(--ink);
  box-shadow: var(--shadow-cta);
}

.btn.whatsapp-btn {
  border-color: #7c5c4c;
  background: rgba(255, 255, 255, .025);
}

.btn:active,
.nav-btn:active { transform: scale(.97); transition-duration: var(--press); }

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .nav-btn:hover {
    transform: translateY(-2px);
    border-color: var(--line-hover);
    background-color: rgba(255, 255, 255, .04);
  }
  .btn.primary:hover,
  .nav-btn.primary:hover {
    border-color: var(--orange-2);
    background: linear-gradient(135deg, var(--orange-2), var(--orange));
    box-shadow: 0 14px 34px rgba(255, 126, 42, .27);
  }
  .btn.whatsapp-btn:hover {
    border-color: #8a4a32;
    background: rgba(255, 138, 42, .07);
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: var(--orange);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.text-link .icon { font-size: 12px; transition: transform .25s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .text-link:hover .icon { transform: translateX(4px); }
}

/* 6. Tipografia compartilhada --------------------------------------------- */
.eyebrow,
.kicker {
  display: block;
  color: var(--orange);
  font-size: var(--fs-kicker);
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tag {
  display: block;
  color: var(--orange);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.display,
.head h2 {
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.2vw, 70px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: .014em;
  text-wrap: balance;
}
.accent { color: var(--orange); }

/* 7. Header ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(18, 9, 6, .68);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  transition:
    height .35s var(--ease),
    background-color .35s var(--ease),
    border-color .35s var(--ease),
    box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  height: var(--header-h-scrolled);
  border-color: rgba(255, 255, 255, .09);
  background: rgba(18, 9, 6, .92);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 100%;
}

.brand {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: .035em;
  white-space: nowrap;
  transition: transform .25s var(--ease);
}
.brand span { color: var(--orange); }
@media (hover: hover) and (pointer: fine) {
  .brand:hover { transform: translateY(-1px); }
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: #d8cac1;
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.desktop-nav a {
  position: relative;
  padding: 30px 0;
  transition: color .25s var(--ease);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.desktop-nav a:hover,
.desktop-nav a.is-active { color: #fff; }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, .02);
  color: #fff;
  cursor: pointer;
  touch-action: manipulation;
}
.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: top .3s var(--ease), transform .3s var(--ease);
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 95;
  max-height: calc(100svh - var(--header-h));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 24px 26px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(18, 9, 6, .985);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  /* visibility troca na hora ao abrir (permite mover o foco no mesmo frame)
     e só depois do fade ao fechar */
  transition:
    opacity .3s var(--ease),
    transform .34s var(--ease-out),
    visibility 0s linear .3s,
    top .35s var(--ease);
}
.site-header.is-scrolled + .mobile-menu {
  top: var(--header-h-scrolled);
  max-height: calc(100svh - var(--header-h-scrolled));
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--fs-body);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a span {
  color: var(--faint);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .1em;
}
.mobile-menu a.is-active,
.mobile-menu a.is-active span { color: var(--orange); }

.menu-scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 94;
  background: rgba(8, 4, 2, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.menu-scrim.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }

/* 8. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  isolation: isolate;
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  max-height: 1080px;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: 66% center;
  transform: scale(1.006);
  backface-visibility: hidden;
  animation: heroDrift 16s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 9, 6, .995) 0%, rgba(18, 9, 6, .93) 31%, rgba(18, 9, 6, .56) 54%, rgba(18, 9, 6, .09) 100%),
    linear-gradient(0deg, rgba(18, 9, 6, .74) 0%, transparent 28%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 76% 44%, rgba(255, 138, 42, .22), transparent 29%);
}
@keyframes heroDrift {
  from { transform: scale(1.006) translate3d(0, 0, 0); }
  to { transform: scale(1.018) translate3d(-.25%, .12%, 0); }
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 58vw);
  margin-top: -30px;
}
.hero h1 {
  margin: 18px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(86px, 9.7vw, 148px);
  line-height: .78;
  letter-spacing: .006em;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .28);
  text-wrap: balance;
}
.hero h1 .accent { display: block; }
.hero-lead {
  max-width: 31em;
  margin-bottom: 30px;
  color: var(--text-soft);
  font-size: var(--fs-lead);
  line-height: 1.62;
  text-wrap: pretty;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero .btn { min-height: 48px; padding-inline: 22px; }
.hero .btn.primary { box-shadow: 0 13px 34px rgba(255, 111, 44, .22); }
.hero .btn.whatsapp-btn {
  background: rgba(22, 13, 9, .44);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted-2);
  font-size: var(--fs-label);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-note i,
.hero-proof i,
.dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--orange);
}
.hero-note i {
  box-shadow: 0 0 0 6px rgba(255, 138, 42, .08);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot { 50% { box-shadow: 0 0 0 11px rgba(255, 138, 42, 0); } }

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding-block: 17px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(90deg, rgba(18, 9, 6, .98), rgba(18, 9, 6, .83));
}
.hero-bottom .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hero-proof {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ddd0c7;
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof i { width: 6px; height: 6px; }
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-size: var(--fs-label);
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .25s var(--ease);
}
.scroll-cue b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  font-weight: 400;
  animation: cue 1.8s ease-in-out infinite;
}
.scroll-cue .icon { font-size: 12px; }
.scroll-cue:hover { color: var(--cream); }
@keyframes cue { 50% { transform: translateY(4px); } }

/* 9. Seções — base comum -------------------------------------------------- */
.section {
  position: relative;
  padding: 90px 0;
  border-bottom: 1px solid var(--section-rule);
  overflow: hidden;
  overflow: clip;
}
.section.alt { background: linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(255, 255, 255, 0)); }
.section::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -220px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 138, 42, .035);
  pointer-events: none;
}

.head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}
.head-text { max-width: 760px; }
.head-text > p:not(.kicker) {
  max-width: 36em;
  margin-top: 14px;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.65;
  text-wrap: pretty;
}
.head > .btn { flex: none; }

/* Mídia fotográfica compartilhada: <picture> absoluto, recorte por object-fit */
.media-fill,
.media-fill img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.media-fill img { object-fit: cover; }

/* 10. Destaques (editorial) ----------------------------------------------- */
.editorial {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: var(--grid-gap);
}
.editorial-main,
.editorial-side {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-card);
}
.editorial-main {
  position: relative;
  isolation: isolate;
  min-height: 520px;
}
.editorial-main .media-fill { z-index: -2; }
.editorial-main .media-fill img {
  object-position: center center;
  transition: transform .8s var(--ease);
}
.editorial-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(10, 5, 3, .94) 0%, rgba(10, 5, 3, .11) 66%);
}
.editorial-main::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: inherit;
  pointer-events: none;
}
.editorial-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 31px;
  z-index: 2;
}
.editorial-copy h3 {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(44px, 4.8vw, 63px);
  line-height: .88;
  text-wrap: balance;
}
.editorial-copy p:not(.tag) {
  max-width: 34em;
  color: var(--text-soft);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.editorial-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.mini {
  position: relative;
  isolation: isolate;
  min-height: 250px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.mini:last-child { border-bottom: 0; }
.mini .media-fill { z-index: -2; }
.mini .media-fill img { transition: transform .8s var(--ease), filter .6s var(--ease); }
.mini:first-child .media-fill img { object-position: center 52%; }
.mini:last-child .media-fill img { object-position: center 50%; }
.mini::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(12, 6, 4, .9), transparent 62%);
}
.mini-label {
  position: absolute;
  left: 22px;
  right: 18px;
  bottom: 20px;
}
.mini-label h3 {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: .9;
}

@media (hover: hover) and (pointer: fine) {
  .editorial-main:hover .media-fill img,
  .mini:hover .media-fill img { transform: scale(1.025); }
  .mini:hover .media-fill img { filter: saturate(1.08); }
}

/* 11. Sabores (cards) ----------------------------------------------------- */
.taste-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.taste {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.taste-media {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.taste-media .media-fill img { transition: transform .8s var(--ease); }
.taste:nth-child(1) .taste-media img { object-position: center 58%; }
.taste:nth-child(2) .taste-media img { object-position: center 50%; }
.taste:nth-child(3) .taste-media img { object-position: center 54%; }
.taste-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 9, 6, .32), transparent 43%);
  pointer-events: none;
}
.taste-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 22px 24px;
}
.taste-body .btn { margin-top: auto; }
.taste h3 {
  margin: 8px 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.12;
}
.taste-body > p:not(.tag) {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.6;
}
.taste .btn { min-height: 42px; padding-inline: 16px; font-size: var(--fs-label); }

@media (hover: hover) and (pointer: fine) {
  .taste:hover {
    transform: translateY(-7px);
    border-color: #6a4433;
    box-shadow: var(--shadow);
  }
  .taste:hover .taste-media img { transform: scale(1.025); }
}

/* 12. Cardápio digital ---------------------------------------------------- */
.menu-banner {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #5a3324;
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, #4d1a0d, #1b0b07 58%);
  box-shadow: var(--shadow);
}
.menu-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}
.menu-copy h2 {
  margin: 9px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(66px, 6.7vw, 88px);
  line-height: .79;
}
.menu-copy p:not(.kicker) {
  max-width: 28em;
  margin-bottom: 24px;
  color: #d6c5bc;
  font-size: var(--fs-body);
  line-height: 1.65;
}
.menu-copy .btn { align-self: flex-start; }
.menu-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.menu-photo .media-fill { z-index: -2; }
.menu-photo .media-fill img { object-position: center center; }
.menu-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #241008 0%, transparent 35%);
}
.menu-photo::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background: radial-gradient(circle at 68% 48%, rgba(255, 161, 70, .2), transparent 31%);
  animation: glow 6s ease-in-out infinite alternate;
}
@keyframes glow { to { transform: scale(1.12); } }

/* 13. História / A casa --------------------------------------------------- */
.story {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: var(--grid-gap);
}
.story-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow-card);
}
.story-card h2 {
  margin: 9px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(50px, 4.9vw, 66px);
  line-height: .88;
  text-wrap: balance;
}
.story-card > p:not(.kicker) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.7;
  text-wrap: pretty;
}
.story-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 2px 0 24px;
}
.story-fact {
  padding: 16px 17px;
  border: 1px solid rgba(255, 138, 42, .18);
  border-radius: 10px;
  background: rgba(255, 138, 42, .055);
}
.story-fact dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.story-fact dd {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(21px, 2.1vw, 25px);
  line-height: 1;
}
/* Depois de 05/11/2026 o 2º destaque vira "N anos" (grande) + "no ramo" (legenda),
   mantendo a mesma altura do destaque "Desde". */
.story-fact-caption {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.story-card .btn { align-self: flex-start; }
.story-photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.story-photo .media-fill img { object-position: center center; }
.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(255, 138, 42, .08));
  pointer-events: none;
}

/* 14. Avaliações ----------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: var(--grid-gap);
}
.rating,
.trust-card {
  padding: 30px;
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.rating {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 138, 42, .16), transparent 38%),
    linear-gradient(160deg, #32160e, var(--panel) 72%);
}
.rating::after {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -85px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(239, 75, 47, .11);
  pointer-events: none;
}
.platform {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 138, 42, .2);
  border-radius: 999px;
  background: rgba(255, 138, 42, .055);
  color: var(--orange-2);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.score-line {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0;
}
.score-line .num {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: .72;
}
.score-line .outof {
  margin-bottom: 4px;
  color: #cdb7ab;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

/* Estrelas em SVG. A nota agregada usa preenchimento proporcional
   (--rating), para o desenho não sugerir 5,0 quando a nota é 4,4. */
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--orange);
}
.stars .icon { fill: currentColor; stroke: none; }
.rating-stars {
  position: relative;
  display: inline-block;
  align-self: flex-start;
  margin-top: 12px;
  line-height: 0;
}
.rating-stars .stars { font-size: 17px; }
.rating-stars .stars-base { color: rgba(255, 138, 42, .22); }
.rating-stars .stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--rating) / 5 * 100%);
  overflow: hidden;
  white-space: nowrap;
}
.rating small {
  display: block;
  max-width: 15em;
  margin-top: 14px;
  color: var(--muted);
  font-size: var(--fs-small);
  line-height: 1.55;
}
.rating .text-link { position: relative; z-index: 2; align-self: flex-start; margin-top: 14px; }

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.trust-card {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 138, 42, .075), transparent 35%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 138, 42, .045), transparent 42%);
  pointer-events: none;
}
.review-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.review-source > span:first-child {
  color: var(--orange);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.review-source .stars { font-size: 12px; gap: 2px; }
.review-quote {
  position: relative;
  z-index: 2;
  margin: 0 0 28px;
  color: #f1e2d9;
  font-size: var(--fs-body);
  line-height: 1.65;
}
.review-quote p { margin: 0; }
.review-author {
  position: relative;
  z-index: 2;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .075);
  color: #fff;
  font-size: var(--fs-small);
  font-style: normal;
  font-weight: 700;
  letter-spacing: .01em;
}
.reviews-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
@media (hover: hover) and (pointer: fine) {
  .trust-card:hover { transform: translateY(-4px); border-color: #8a4a32; }
}

/* 15. FAQ ------------------------------------------------------------------ */
.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: start;
}
.faq-intro { position: sticky; top: 110px; }
.faq-intro p:not(.kicker) {
  max-width: 26em;
  margin-top: 16px;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.65;
}
/* Linhas e realce do item aberto sangram 14px para os dois lados,
   mantendo o texto alinhado à coluna (corrige a linha superior desalinhada). */
.faq-list {
  margin-inline: -14px;
  border-top: 1px solid var(--line);
}
.faq-item {
  padding-inline: 14px;
  border-bottom: 1px solid var(--line);
  transition: background-color .28s var(--ease);
}
.faq-item[open]:not(.is-closing) { background: rgba(255, 138, 42, .04); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 22px 0;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ""; }
.faq-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid #5e4338;
  border-radius: 50%;
  background: rgba(255, 255, 255, .018);
  color: var(--orange);
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
}
.faq-icon .icon { font-size: 14px; }
.faq-item[open]:not(.is-closing) .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(255, 138, 42, .42);
  background: rgba(255, 138, 42, .08);
}
.faq-answer { overflow: hidden; }
.faq-answer p {
  padding: 0 46px 22px 0;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.7;
}
@media (hover: hover) and (pointer: fine) {
  .faq-question:hover { color: #fff; }
  .faq-question:hover .faq-icon { border-color: rgba(255, 138, 42, .42); }
}

/* 16. Localização ---------------------------------------------------------- */
.location {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 42, .24);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.loc-copy { padding: 48px; }
.loc-copy h2 {
  margin: 9px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(50px, 4.9vw, 66px);
  line-height: .86;
}
.info-list { margin: 0; }
.info {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .875rem;
  line-height: 1.5;
}
.info dt {
  margin-bottom: 3px;
  color: #fff;
  font-weight: 700;
}
.info dd { margin: 0; color: var(--muted); }
.info a { position: relative; transition: color .2s var(--ease); }
/* Telefone e Instagram são links de uma linha só (18px de altura). O ::after
   estende o alvo de toque para 30px — acima do mínimo de 24px da WCAG 2.5.8 —
   sem alterar um pixel do layout. */
.info a::after { content: ""; position: absolute; inset: -6px 0; }
.info a:hover { color: var(--orange); }
.loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.map-wrap {
  position: relative;
  isolation: isolate;
  min-height: 480px;
  background: #1b110d;
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #1b110d;
  filter: saturate(.88) contrast(.98) brightness(.94);
}
.map-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 35px 0 60px rgba(18, 9, 6, .22);
}
.map-mobile-link { display: none; }

/* 17. CTA final ------------------------------------------------------------ */
.cta {
  position: relative;
  padding: 62px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .055);
  border-bottom: 1px solid rgba(255, 255, 255, .045);
  background: linear-gradient(90deg, #5a1d0e, #231008 55%, #100604);
}
.cta::after {
  content: "";
  position: absolute;
  top: -85%;
  right: -4%;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: rgba(255, 138, 42, .09);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(58px, 6vw, 82px);
  line-height: .8;
}
.cta p {
  max-width: 27em;
  margin-top: 16px;
  color: #d1bfb4;
  font-size: var(--fs-body);
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}
.cta-actions .btn { min-width: 150px; min-height: 50px; padding-inline: 24px; }

/* 18. Footer --------------------------------------------------------------- */
.site-footer {
  padding: 56px 0 28px;
  background: var(--bg-footer);
}
.foot {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}
.foot-brand p {
  margin-top: 12px;
  color: var(--faint);
  font-size: .84375rem;
  line-height: 1.5;
}
.foot-title {
  margin: 4px 0 12px;
  color: #f7ece5;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.foot-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.foot-links a {
  display: inline-block;
  padding: 5px 0;
  color: var(--faint);
  font-size: .84375rem;
  line-height: 1.5;
  transition: color .22s var(--ease), transform .22s var(--ease);
}
.foot-links a:hover { color: var(--orange); }
@media (hover: hover) and (pointer: fine) {
  .foot-links a:hover { transform: translateX(2px); }
}
.copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #948178;
  font-size: .75rem;
}
.copy p { margin: 0; }
/* O endereço do rodapé usa <address> (semântica de NAP); visual igual ao do <p>. */
.copy address { margin: 0; font-style: normal; }
/* Sublinhado para o link não depender só da cor (o reset global tira o underline). */
.copy a { text-decoration: underline; text-underline-offset: 3px; }
.copy a:hover { color: var(--cream); }
@media (min-width: 621px) {
  /* o botão circular "Pedir agora" não cobre o texto final do rodapé */
  .copy { padding-right: 96px; }
}

/* 19. Flutuantes ----------------------------------------------------------- */
.float-order {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  place-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .45), 0 0 0 0 rgba(255, 138, 42, .26);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
  animation: floatPulse 4.5s ease-in-out infinite;
}
.float-order .fo-line { display: block; }
.float-order .dot { display: none; }
.float-order:active { transform: scale(.96); transition-duration: var(--press); }
@media (hover: hover) and (pointer: fine) {
  .float-order:hover { transform: translateY(-4px) scale(1.03); background: var(--orange-2); }
}
@keyframes floatPulse {
  0%, 55%, 100% { box-shadow: 0 14px 38px rgba(0, 0, 0, .45), 0 0 0 0 rgba(255, 138, 42, .24); }
  70% { box-shadow: 0 14px 38px rgba(0, 0, 0, .45), 0 0 0 12px rgba(255, 138, 42, 0); }
}

.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 98px;
  z-index: 91;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 15px 0 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: #1a120e;
  color: #fff;
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .36);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.float-whatsapp svg { width: 18px; height: 18px; fill: var(--orange); }
.float-whatsapp:active { transform: scale(.96); transition-duration: var(--press); }
@media (hover: hover) and (pointer: fine) {
  .float-whatsapp:hover { transform: translateY(-2px); border-color: #8a4a32; background: #25130d; }
}

/* 20. Sistema de reveal ----------------------------------------------------
   Progressive enhancement: sem a classe .js tudo fica visível.
   Com .js, elementos entram ao cruzar a viewport e resetam ao sair
   completamente dela (reanimam na volta, subindo ou descendo). */
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .68s var(--ease), transform .68s var(--ease);
}
.js .reveal[data-reveal="left"] { transform: translate3d(-30px, 0, 0); }
.js .reveal[data-reveal="right"] { transform: translate3d(30px, 0, 0); }
.js .reveal[data-reveal="scale"] { transform: scale(.972); }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

.js .hero-enter {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .78s var(--ease), transform .78s var(--ease);
}
.js .hero-enter.delay-1 { transition-delay: .1s; }
.js .hero-enter.delay-2 { transition-delay: .2s; }
.js .hero-enter.delay-3 { transition-delay: .3s; }
.js .hero-enter.delay-4 { transition-delay: .4s; }
.js .hero-enter.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */

/* Até ~1420px o botão circular fixo alcança a faixa inferior do hero:
   reserva espaço para ele não cobrir "Role para descobrir". */
@media (max-width: 1420px) {
  .hero-bottom .wrap { padding-right: 92px; }
}

/* ≤ 1100px ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .desktop-nav { gap: 14px; font-size: .6875rem; letter-spacing: .07em; }
  .nav-btn.alt { display: none; }
  .editorial { grid-template-columns: 1.15fr .85fr; }
  .menu-copy { padding: 50px; }
  .story-card { padding: 38px; }
  .story-fact { padding: 14px; }
  .faq-layout { gap: 42px; }
  .taste-media { height: 300px; }
}

/* ≤ 900px (tablet) ------------------------------------------------------- */
@media (max-width: 900px) {
  :root { --header-h: 70px; --header-h-scrolled: 70px; }

  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu, .menu-scrim { display: block; }
  .nav-actions { margin-left: auto; }

  .hero { min-height: 760px; max-height: none; }
  /* retrato de tablet: a foto recorta mais ao centro, então o véu escuro vai mais longe */
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(18, 9, 6, .995) 0%, rgba(18, 9, 6, .93) 38%, rgba(18, 9, 6, .62) 66%, rgba(18, 9, 6, .2) 100%),
      linear-gradient(0deg, rgba(18, 9, 6, .74) 0%, transparent 28%);
  }
  .scroll-cue { display: none; }
  .hero-copy { width: min(620px, 78vw); }
  .hero h1 { font-size: clamp(74px, 13vw, 108px); }
  .hero-proof { gap: 18px; }
  .hero-proof li:nth-child(3) { display: none; }

  .section { padding: 78px 0; }

  .editorial,
  .story,
  .menu-banner,
  .location,
  .faq-layout { grid-template-columns: minmax(0, 1fr); }

  .editorial-side { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .mini { border-bottom: 0; border-right: 1px solid var(--line); }
  .mini:last-child { border-right: 0; }

  /* Sabores no tablet: mesmo cartão horizontal aprovado no mobile, em escala maior
     (evita três colunas estreitas com recorte vertical agressivo das fotos). */
  .taste-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .taste { display: grid; grid-template-columns: 44% minmax(0, 1fr); }
  .taste:nth-child(even) { grid-template-columns: minmax(0, 1fr) 44%; }
  .taste-media { height: auto; min-height: 240px; }
  .taste-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 26px 28px;
  }
  .taste:nth-child(even) .taste-media { order: 2; }
  .taste:nth-child(even) .taste-body { order: 1; }
  .taste .btn { align-self: flex-start; }
  .taste-body .btn { margin-top: 0; }

  .menu-photo { min-height: 380px; }
  .menu-photo::before { background: linear-gradient(180deg, #241008 0%, transparent 30%); }
  .story-photo { min-height: 400px; }

  .trust-grid { grid-template-columns: minmax(0, 1fr); }
  .trust-col { min-width: 0; }
  .rating { min-height: 0; }

  .faq-layout { gap: 26px; }
  .faq-intro { position: static; }

  .map-wrap { min-height: 350px; background: linear-gradient(135deg, #1b110d, #24120c); }
  .map-shade { box-shadow: inset 0 26px 48px rgba(18, 9, 6, .16); }
  .map-mobile-link {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(18, 9, 6, .88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: var(--fs-label);
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
  }

  .foot { grid-template-columns: 1fr 1fr; }
}

/* ≤ 620px (mobile) ------------------------------------------------------- */
@media (max-width: 620px) {
  :root {
    --gutter: 16px;
    --header-h: 64px;
    --header-h-scrolled: 60px;
    --radius: 13px;
    --grid-gap: 8px;
    --fs-body: .875rem;   /* 14px */
    --fs-label: .6875rem; /* 11px — piso mínimo de texto funcional */
    --fs-kicker: .71875rem; /* 11.5px */
    --fs-btn: .6875rem;
  }

  /* A prévia aprovada não exibe o loader no celular. */
  .loader { display: none; }

  .nav { gap: 10px; }
  .brand { font-size: 30px; }
  .nav-actions .primary { display: none; }
  .mobile-menu { padding: 8px 20px 18px; }

  /* Hero mobile: composição própria, conteúdo ancorado embaixo */
  .hero {
    height: 88vh;
    height: 88svh;
    min-height: 610px;
    max-height: 730px;
  }
  .hero-media img {
    object-position: center 45%;
    transform: scale(1.003);
    animation: none;
  }
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(18, 9, 6, .995) 0%, rgba(18, 9, 6, .91) 35%, rgba(18, 9, 6, .42) 72%, rgba(18, 9, 6, .14) 100%),
      linear-gradient(0deg, rgba(18, 9, 6, .78) 0%, transparent 31%);
  }
  .hero::after { background: linear-gradient(180deg, rgba(18, 9, 6, .06), rgba(18, 9, 6, .6) 62%, rgba(18, 9, 6, .93)); }
  .hero-content {
    align-items: flex-end;
    padding-bottom: clamp(72px, 10svh, 92px);
  }
  .hero-copy { width: 100%; margin: 0; }
  .hero h1 {
    max-width: 360px;
    margin: 12px 0 16px;
    font-size: clamp(54px, 16vw, 63px);
    line-height: .84;
    text-shadow: 0 12px 36px rgba(0, 0, 0, .32);
  }
  .hero-lead {
    max-width: 23.5em;
    margin-bottom: 18px;
    font-size: .9375rem;
    line-height: 1.55;
  }
  .hero .actions {
    flex-direction: column;
    gap: 8px;
    width: min(100%, 330px);
  }
  .hero .btn { width: 100%; min-height: 46px; }
  .hero .btn.whatsapp-btn { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hero-note { margin-top: 13px; font-size: .6875rem; }
  .hero-bottom { display: none; }

  /* Ritmo vertical compacto (aprovado) */
  .section { padding: 40px 0; }
  #destaques { padding-top: 28px; }
  .head { display: block; margin-bottom: 18px; }
  .head h2, .display { font-size: 43px; line-height: .92; }
  .head-text > p:not(.kicker) { margin-top: 10px; line-height: 1.58; }
  .head > .btn { margin-top: 14px; }

  /* Destaques */
  .editorial-main { min-height: 350px; }
  .editorial-main .media-fill img { object-position: center 54%; }
  .editorial-copy { left: 20px; right: 20px; bottom: 20px; }
  .editorial-copy h3 { font-size: 39px; line-height: .9; }
  .editorial-copy p:not(.tag) { margin-top: 8px; font-size: .8125rem; line-height: 1.5; }
  .editorial-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 180px;
    gap: var(--grid-gap);
    overflow: visible;
    border: 0;
    background: none;
    box-shadow: none;
  }
  .mini,
  .mini:last-child {
    min-height: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .mini-label { left: 14px; right: 12px; bottom: 14px; }
  .mini-label .tag { font-size: .6875rem; }
  .mini-label h3 { font-size: 26px; }

  /* Sabores: cartões horizontais compactos */
  .taste { grid-template-columns: 42% minmax(0, 1fr); }
  .taste:nth-child(even) { grid-template-columns: minmax(0, 1fr) 42%; }
  .taste-media { min-height: 196px; }
  .taste-body { padding: 16px 15px; }
  .taste h3 { margin: 6px 0; font-size: 1.125rem; line-height: 1.08; }
  .taste-body > p:not(.tag) { margin-bottom: 12px; font-size: .78125rem; line-height: 1.45; }
  .taste .btn {
    align-self: stretch;
    width: 100%;
    min-height: 40px;
    padding-inline: 10px;
    font-size: .6875rem;
    letter-spacing: .06em;
  }

  /* Cardápio */
  .menu-copy { padding: 26px 22px; }
  .menu-copy h2 { margin: 7px 0 12px; font-size: 50px; line-height: .83; }
  .menu-copy p:not(.kicker) { margin-bottom: 20px; line-height: 1.55; }
  .menu-copy .btn { width: 100%; }
  .menu-photo { min-height: 225px; }
  .menu-photo .media-fill img { object-position: center 52%; }

  /* História */
  .story-card { padding: 26px 22px; }
  .story-card h2 { margin-bottom: 13px; font-size: 42px; line-height: .9; }
  .story-card > p:not(.kicker) { margin-bottom: 16px; line-height: 1.58; }
  .story-facts { gap: 8px; margin-bottom: 18px; }
  .story-fact { padding: 12px; }
  .story-fact dd { font-size: 21px; }
  .story-card .btn { width: 100%; }
  .story-photo { min-height: 250px; }
  .story-photo .media-fill img { object-position: center 45%; }

  /* Avaliações: carrossel com scroll-snap */
  .rating { padding: 22px; }
  .score-line .num { font-size: 70px; }
  .trust-cards {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .trust-cards::-webkit-scrollbar { display: none; }
  .trust-card {
    flex: 0 0 86%;
    min-height: 200px;
    padding: 20px 20px 18px;
    scroll-snap-align: start;
  }
  .review-source { margin-bottom: 16px; }
  .review-source .stars { font-size: 11px; }
  .review-quote { margin-bottom: 22px; line-height: 1.55; }
  .reviews-footer { justify-content: flex-start; margin-top: 8px; }

  /* FAQ */
  .faq-layout { gap: 18px; }
  .faq-list { margin-inline: -10px; }
  .faq-item { padding-inline: 10px; }
  .faq-question { padding: 16px 0; gap: 14px; font-size: .9375rem; }
  .faq-answer p { padding: 0 18px 18px 0; line-height: 1.6; }

  /* Localização: ação principal em linha própria, secundárias lado a lado */
  .location { border-radius: 15px; }
  .loc-copy { padding: 24px 22px; }
  .loc-copy h2 { margin-bottom: 14px; font-size: 44px; }
  .info { padding: 10px 0; }
  .loc-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }
  .loc-actions .btn { width: 100%; min-height: 44px; padding-inline: 12px; }
  .loc-actions .btn.primary { grid-column: 1 / -1; }
  .map-wrap { min-height: 240px; }

  /* CTA final */
  .cta { padding: 38px 0 42px; }
  .cta-inner { display: block; }
  .cta-inner > div:first-child { max-width: 360px; }
  .cta h2 { font-size: 52px; }
  .cta p { margin: 12px 0 18px; }
  .cta-actions { display: grid; grid-template-columns: 1fr; gap: 8px; width: 100%; }
  .cta-actions .btn { width: 100%; min-width: 0; min-height: 48px; }

  /* Footer: reserva espaço para os flutuantes */
  .site-footer { padding: 34px 0 calc(84px + env(safe-area-inset-bottom)); }
  .foot { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .foot-brand, .foot-col-instagram { grid-column: 1 / -1; }
  .foot-brand .brand { font-size: 34px; }
  .copy { display: block; margin-top: 22px; padding-top: 14px; line-height: 1.7; }

  /* Flutuantes: pílulas compactas */
  .float-order {
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: auto;
    min-width: 124px;
    height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: .6875rem;
    white-space: nowrap;
  }
  .float-order .fo-line { display: inline; }
  .float-order .dot { display: block; width: 6px; height: 6px; background: var(--ink); }
  .float-whatsapp {
    right: 12px;
    bottom: calc(66px + env(safe-area-inset-bottom));
  }

  /* No celular os flutuantes só aparecem quando os CTAs do hero saem da tela:
     evita botões duplicados e sobreposição sobre o próprio hero. */
  .float-order,
  .float-whatsapp {
    transition:
      opacity .3s var(--ease),
      transform .35s var(--ease-out),
      background-color .3s var(--ease),
      visibility 0s linear 0s;
  }
  html.floats-hidden .float-order,
  html.floats-hidden .float-whatsapp {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition:
      opacity .25s var(--ease),
      transform .3s var(--ease),
      visibility 0s linear .3s;
  }
}

/* ≤ 380px ------------------------------------------------------------------ */
@media (max-width: 380px) {
  :root { --gutter: 12px; }
  .hero { height: 90vh; height: 90svh; min-height: 590px; max-height: 700px; }
  .hero-content { padding-bottom: 64px; }
  .hero h1 { font-size: 52px; }
  .section { padding: 34px 0; }
  #destaques { padding-top: 22px; }
  .editorial-main { min-height: 330px; }
  .editorial-side { grid-template-rows: 168px; }
  .mini-label h3 { font-size: 23px; }
  .taste { grid-template-columns: 40% minmax(0, 1fr); }
  .taste:nth-child(even) { grid-template-columns: minmax(0, 1fr) 40%; }
  .taste-media { min-height: 188px; }
  .taste-body { padding: 14px 12px; }
  .taste h3 { font-size: 1.0625rem; }
  .taste-body > p:not(.tag) { font-size: .75rem; }
  .taste .btn { padding-inline: 6px; letter-spacing: .02em; }
  .story-fact dd { font-size: 19px; }
  .story-photo { min-height: 235px; }
  .map-wrap { min-height: 220px; }
  .float-whatsapp { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .float-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

/* Telas touch: evita hovers "presos" */
@media (hover: none) and (pointer: coarse) {
  .taste, .trust-card { transition: none; }
}

/* ==========================================================================
   Acessibilidade de movimento e fallbacks
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .loader { display: none !important; }
  .js .reveal, .js .hero-enter { opacity: 1 !important; transform: none !important; }
}

html:not(.js) .loader { display: none !important; }

@media (forced-colors: active) {
  .btn, .nav-btn, .float-order, .float-whatsapp { border: 1px solid ButtonText; }
  .scroll-progress, .noise, .section::before { display: none; }
}
