/* Kasuo Sushi — global styles */

:root {
  --sumi: #0d0c0a;
  --sumi-2: #16140f;
  --sumi-3: #1f1c16;
  --washi: #f5efe4;
  --washi-2: #ece4d5;
  --washi-3: #ddd2bc;
  --red: #c8331f;
  --red-deep: #9c2614;
  --salmon: #ee7150;
  --gold: #c8a45c;
  --ink: #2a2620;
  --ink-soft: #5a544a;
  --shell-radius: 18px;
}

* { box-sizing: border-box; }
noscript { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--washi);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* type */
.serif { font-family: "Shippori Mincho", "Cormorant Garamond", serif; font-weight: 500; letter-spacing: -0.01em; }
.brush { font-family: "Caveat", cursive; font-weight: 500; }
.jp { font-family: "Shippori Mincho", "Yuji Mai", serif; letter-spacing: 0.08em; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; letter-spacing: 0.04em; }
.eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); }
.eyebrow.on-dark { color: rgba(245,239,228,0.7); }

h1, h2, h3, h4 { font-family: "Shippori Mincho", serif; font-weight: 500; letter-spacing: -0.01em; margin: 0; line-height: 1.05; }
h1 { font-size: clamp(48px, 7vw, 104px); }
h2 { font-size: clamp(38px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }
p { margin: 0 0 1em 0; }

/* layout */
.wrap { width: min(1280px, 92%); margin: 0 auto; }
.section { padding: clamp(80px, 12vh, 160px) 0; position: relative; }
.section.dark { background: var(--sumi); color: var(--washi); }
.section.dark .eyebrow { color: rgba(245,239,228,0.55); }

/* dark→light or light→dark torn ink edge */
.tear {
  height: 80px;
  width: 100%;
  background: var(--sumi);
  -webkit-mask: url("assets/brush-divider.svg") no-repeat top center / 100% 100%;
          mask: url("assets/brush-divider.svg") no-repeat top center / 100% 100%;
  position: relative;
  margin-top: -1px;
}
.tear.flip { transform: scaleY(-1); margin-top: 0; margin-bottom: -1px; }

/* ---------------- NAV ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,12,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245,239,228,0.08);
  color: var(--washi);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0;
  gap: 24px;
}
.nav-links { display: flex; gap: 38px; align-items: center; }
.nav-links.right { justify-content: flex-end; }
.nav-link {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
  font-size: 14px; font-weight: 500;
  color: rgba(245,239,228,0.85);
  transition: color .2s;
  cursor: pointer;
}
.nav-link:hover { color: var(--salmon); }
.nav-link .jp { font-size: 10px; opacity: 0.55; letter-spacing: 0.18em; }
.nav-logo img { height: 54px; width: auto; filter: drop-shadow(0 4px 16px rgba(200,51,31,0.25)); }
/* Nav CTA com efeito shiny (mesma paleta verde do btn-shiny-wa do hero) */
.nav-cta {
  --cta-from: #128C7E;
  --cta-to: #25D366;
  --cta-subtle: #0e6b5f;
  --cta-highlight: #4ade80;
  --cta-highlight-subtle: #bbf7d0;
  --shiny-duration: 3s;
  --shiny-transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);

  isolation: isolate;
  position: relative;
  overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--washi);
  font-weight: 600; font-size: 13px; letter-spacing: 0.02em;
  text-decoration: none;
  background:
    linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.45) 50%, transparent 75%, transparent 100%) padding-box,
    linear-gradient(135deg, var(--cta-from), var(--cta-to)) padding-box,
    conic-gradient(
      from calc(var(--shiny-angle) - var(--shiny-angle-offset)),
      transparent,
      var(--cta-highlight) var(--shiny-percent),
      var(--shiny-shine) calc(var(--shiny-percent) * 2),
      var(--cta-highlight) calc(var(--shiny-percent) * 3),
      transparent calc(var(--shiny-percent) * 4)
    ) border-box;
  background-size: 250% 250%, 100% 100%, 100% 100%;
  background-position: 200% 0, 0 0, 0 0;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px var(--cta-subtle), 0 4px 24px rgba(18,140,126,0.35);
  transition:
    --shiny-angle-offset var(--shiny-transition),
    --shiny-percent var(--shiny-transition),
    --shiny-shine var(--shiny-transition),
    box-shadow var(--shiny-transition),
    transform .2s,
    background-position 800ms ease;
  animation: shiny-angle linear infinite var(--shiny-duration);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  --shiny-percent: 20%;
  --shiny-angle-offset: 95deg;
  --shiny-shine: var(--cta-highlight-subtle);
  background-position: -100% 0, 0 0, 0 0;
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px var(--cta-subtle), 0 8px 30px rgba(37,211,102,0.5);
}

.nav-cta:active { transform: translateY(0); }

.nav-cta .dot { width: 6px; height: 6px; background: var(--washi); border-radius: 50%; flex: none; box-shadow: 0 0 8px rgba(255,255,255,0.5); }

@media (prefers-reduced-motion: reduce) {
  .nav-cta { animation: none; }
}

/* ---------------- MOBILE NAV (hamburger) ---------------- */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(245,239,228,0.18);
  border-radius: 10px;
  color: var(--washi);
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.nav-toggle:hover { background: rgba(245,239,228,0.06); border-color: rgba(245,239,228,0.32); }
.nav-toggle:focus-visible { outline: 2px solid var(--salmon); outline-offset: 2px; }
.nav-toggle .bar-stack { display: flex; flex-direction: column; gap: 5px; width: 20px; }
.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--washi);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
.nav.is-open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@keyframes nav-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .nav-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    grid-template-columns: none;
  }
  .nav-logo { order: 1; margin-right: auto; }
  .nav-toggle { display: inline-flex; order: 2; }
  .nav-links {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(245,239,228,0.08);
  }
  .nav-links.right { order: 4; border-top: none; padding-top: 4px; margin-top: 0; }
  .nav.is-open .nav-links {
    display: flex;
    animation: nav-slide-in 260ms ease-out;
  }
  .nav.is-open .nav-link {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(245,239,228,0.05);
    font-size: 15px;
  }
  .nav.is-open .nav-link .jp {
    font-size: 11px;
    opacity: 0.55;
    min-width: 40px;
    letter-spacing: 0.16em;
  }
  .nav.is-open .nav-cta {
    align-self: stretch;
    justify-content: center;
    margin: 12px 0 6px;
    padding: 14px 18px;
    font-size: 14px;
  }
  @media (prefers-reduced-motion: reduce) {
    .nav.is-open .nav-links { animation: none; }
  }
}

/* ---------------- HERO CINEMA (scroll-driven canvas frame sequence) ---------------- */
.hero-cinema {
  position: relative;
  height: 252vh;
  background: var(--sumi);
  color: var(--washi);
}
.hero-cinema__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hero-cinema__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 700ms ease;
}
.hero-cinema.is-ready .hero-cinema__fallback { opacity: 0; }
.hero-cinema__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.hero-cinema__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13,12,10,0.78) 0%, rgba(13,12,10,0.42) 40%, rgba(13,12,10,0.10) 70%, rgba(13,12,10,0.00) 100%),
    linear-gradient(180deg, rgba(13,12,10,0.45) 0%, rgba(13,12,10,0.05) 30%, rgba(13,12,10,0.15) 55%, rgba(13,12,10,0.85) 100%);
}
.hero-cinema__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
  pointer-events: none;
}
.hero-cinema__content > * { pointer-events: auto; }
.hero-cinema__content .hero-left { max-width: 640px; }
.hero-cinema__content .hero-title {
  text-shadow: 0 2px 28px rgba(0,0,0,0.55);
}
.hero-cinema__content .hero-sub {
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
.hero-cinema__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,239,228,0.65);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 500ms ease;
}
.hero-cinema__scroll-arrow {
  font-size: 14px;
  line-height: 1;
}
.hero-cinema.is-scrolled .hero-cinema__scroll-hint { opacity: 0; }

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(6px); opacity: 1; }
}
.scroll-bounce { animation: scrollBounce 1.6s ease-in-out infinite; }

@media (max-width: 980px) {
  /* No mobile, sem video/scroll-cinema. Imagem estatica bgmobile.webp. */
  .hero-cinema { height: auto; min-height: 69vh; }
  .hero-cinema__sticky {
    position: relative;
    height: auto;
    min-height: 70vh;
    background: var(--sumi) url("assets/images/bgmobile.webp") center / cover no-repeat;
  }
  .hero-cinema__canvas,
  .hero-cinema__fallback,
  .hero-cinema__scroll-hint { display: none; }
  .hero-cinema__content { padding-top: 96px; padding-bottom: 110px; }
  .hero-cinema__vignette {
    background:
      linear-gradient(180deg, rgba(13,12,10,0.55) 0%, rgba(13,12,10,0.15) 28%, rgba(13,12,10,0.40) 65%, rgba(13,12,10,0.90) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinema { height: 100vh; }
  .hero-cinema__sticky { position: relative; }
}

/* ---------------- HERO (legado — mantido para fallback) ---------------- */
.hero {
  background: var(--sumi);
  color: var(--washi);
  position: relative;
  overflow: hidden;
  padding: 53px 0 50px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22% 50%, rgba(200,51,31,0.18), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(238,113,80,0.08), transparent 60%);
  pointer-events: none;
}
.hero-brush {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 4% at 20% 30%, rgba(245,239,228,0.04), transparent 70%),
    radial-gradient(ellipse 50% 3% at 70% 85%, rgba(245,239,228,0.03), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.hero-left { position: relative; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow .line { width: 56px; height: 1px; background: var(--gold); }
.hero-eyebrow .jp { font-size: 13px; color: var(--gold); }
.hero-title {
  font-size: clamp(54px, 7.6vw, 116px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--salmon);
  font-weight: 400;
}
.hero-title .brush-it {
  font-family: "Caveat", cursive;
  font-style: normal;
  color: var(--salmon);
  font-weight: 500;
  display: inline-block;
  transform: translateY(-6px);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245,239,228,0.78);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--red); color: var(--washi); box-shadow: 0 8px 32px rgba(200,51,31,0.4); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--washi); border-color: rgba(245,239,228,0.25); }
.btn-ghost:hover { border-color: var(--washi); background: rgba(245,239,228,0.06); }
.btn-dark { background: var(--sumi); color: var(--washi); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-right { position: relative; aspect-ratio: 1/1; }
.enso {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #e8412a, #9c1c0a 65%, #5a0e04 100%);
  filter: blur(0.5px);
  box-shadow: 0 30px 100px rgba(200,51,31,0.45);
}
.enso::before, .enso::after {
  content: ""; position: absolute; inset: -3%; border-radius: 50%;
  border: 2px dashed rgba(245,239,228,0.06);
}
.enso::after { inset: -8%; border-style: solid; border-width: 1px; }
.sakura {
  position: absolute;
  background: var(--washi);
  width: 14px; height: 14px;
  border-radius: 60% 0;
  transform: rotate(45deg);
  opacity: 0.85;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.sakura.s1 { top: 18%; left: 14%; }
.sakura.s2 { top: 28%; left: 78%; width: 10px; height: 10px; opacity: 0.6; }
.sakura.s3 { top: 64%; left: 8%; width: 12px; height: 12px; }
.sakura.s4 { top: 80%; left: 70%; width: 9px; height: 9px; opacity: 0.5; }
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("assets/images/sushi-img.webp") center/contain no-repeat;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  z-index: 2;
}
.hero-photo.placeholder {
  background: repeating-linear-gradient(45deg, rgba(245,239,228,0.05) 0 8px, rgba(245,239,228,0.02) 8px 16px);
  border: 1px dashed rgba(245,239,228,0.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(245,239,228,0.6);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 30%;
}

/* ---------------- STATS ---------------- */
.stats {
  background: var(--sumi);
  color: var(--washi);
  padding: 0 0 80px;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,239,228,0.1);
  border-bottom: 1px solid rgba(245,239,228,0.1);
}
.stat {
  padding: 36px 24px;
  border-right: 1px solid rgba(245,239,228,0.08);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  color: var(--salmon);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.65);
}

/* ---------------- MENU CARDS ---------------- */
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .jp-mark {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--red);
}
.section-head h2 { margin-bottom: 16px; }
.section-head h2 .brush-it { font-family: "Caveat", cursive; color: var(--red); font-weight: 500; }
.section-head p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; font-size: 17px; }

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
/* drifting sakura petals across the whole row */
.dishes-grid::before, .dishes-grid::after {
  content: ""; position: absolute;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 60% 0;
  transform: rotate(45deg);
  opacity: 0.35;
  filter: blur(0.4px);
  pointer-events: none;
  animation: petal-drift 14s ease-in-out infinite;
}
.dishes-grid::before { top: 8%; left: -3%; animation-delay: -2s; }
.dishes-grid::after { top: 62%; right: -2%; width: 10px; height: 10px; opacity: 0.25; animation-delay: -7s; }
@keyframes petal-drift {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(60deg) translate(8px, -14px); }
}

.dish {
  position: relative;
  padding: 36px 24px 32px;
  background: var(--washi);
  border: 1px solid var(--washi-3);
  border-radius: var(--shell-radius);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s, border-color .3s;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
}
.dish.in { opacity: 1; transform: translateY(0); }
.dish:nth-child(1) { transition-delay: 0s; }
.dish:nth-child(2) { transition-delay: .1s; }
.dish:nth-child(3) { transition-delay: .2s; }
.dish:nth-child(4) { transition-delay: .3s; }
.dish:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px -24px rgba(0,0,0,0.22);
  border-color: rgba(200,51,31,0.4);
}
/* subtle washi paper grain */
.dish::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200,51,31,0.04), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(42,38,32,0.04), transparent 50%);
  pointer-events: none;
}

/* animated shine border (radial color orbita pela borda) */
.dish {
  --shine-border-width: 2px;
  --shine-duration: 14s;
  --shine-color-1: #c8331f;
  --shine-color-2: #ee7150;
  --shine-color-3: #c8a45c;
}
.dish::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  padding: var(--shine-border-width);
  background-image: radial-gradient(
    transparent, transparent,
    var(--shine-color-1), var(--shine-color-2), var(--shine-color-3),
    transparent, transparent
  );
  background-size: 300% 300%;
  background-position: 0% 0%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
          mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  will-change: background-position;
  animation: dish-shine var(--shine-duration) linear infinite;
}
.dish:nth-child(2)::before { animation-delay: calc(var(--shine-duration) * -0.25); }
.dish:nth-child(3)::before { animation-delay: calc(var(--shine-duration) * -0.50); }
.dish:nth-child(4)::before { animation-delay: calc(var(--shine-duration) * -0.75); }

@keyframes dish-shine {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

@media (prefers-reduced-motion: reduce) {
  .dish::before { animation: none; }
}

.dish-img-wrap {
  width: 200px; height: 200px;
  margin: 0 auto 22px;
  position: relative;
  display: grid;
  place-items: center;
}
/* hand-painted sumi-e brush stroke behind dish (oculto — imagens em cor natural) */
.dish-brush { display: none; }

.dish-img-wrap img {
  position: relative;
  z-index: 1;
  width: 95%;
  height: 95%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(42,38,32,0.18));
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
  animation: float-soft 6s ease-in-out infinite;
}
.dish:nth-child(2) .dish-img-wrap img { animation-delay: -1.5s; }
.dish:nth-child(3) .dish-img-wrap img { animation-delay: -3s; }
.dish:nth-child(4) .dish-img-wrap img { animation-delay: -4.5s; }
@keyframes float-soft {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-6px) rotate(0.4deg); }
}
.dish:hover .dish-img-wrap img { transform: translateY(-8px) scale(1.08) rotate(-2deg); }

.dish-jp {
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--red);
  margin-bottom: 10px;
  position: relative; z-index: 1;
  opacity: 0.85;
}
.dish h3 { font-size: 23px; margin-bottom: 12px; position: relative; z-index: 1; }
.dish-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.6; position: relative; z-index: 1; }
.dish-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--washi);
  font-weight: 700;
  background: var(--red);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(200,51,31,0.35);
}

.menu-cta { text-align: center; margin-top: 56px; }

/* ---------------- RODIZIO ---------------- */
.rodizio {
  background: var(--sumi);
  color: var(--washi);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rodizio-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.rodizio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.rodizio-right { position: relative; }
.rodizio-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: url("assets/images/restautante-japones-em-diadema.webp") center/cover;
  border-radius: var(--shell-radius);
  filter: brightness(0.85);
}
.rodizio-tag {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--red);
  color: var(--washi);
  padding: 18px 22px;
  border-radius: 999px;
  font-family: "Caveat", cursive;
  font-size: 28px;
  font-weight: 600;
  transform: rotate(-8deg);
  box-shadow: 0 12px 30px rgba(200,51,31,0.5);
  text-align: center;
  line-height: 1;
}
.rodizio-tag small { display: block; font-family: "Manrope", sans-serif; font-size: 10px; letter-spacing: 0.2em; font-weight: 600; margin-top: 4px; opacity: 0.85; }

.rodizio h2 { margin-bottom: 20px; }
.rodizio-lead { font-size: 18px; color: rgba(245,239,228,0.78); margin-bottom: 36px; max-width: 520px; }
.rodizio-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin-bottom: 40px;
}
.rodizio-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245,239,228,0.08);
  font-size: 16px;
  font-weight: 500;
}
.rodizio-item .mark { color: var(--salmon); font-family: "Shippori Mincho", serif; font-size: 14px; }

/* ---------------- PILLARS ---------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.pillar {
  padding: 32px;
  background: var(--washi);
  border: 1px solid var(--washi-3);
  border-radius: var(--shell-radius);
  position: relative;
  overflow: hidden;
}

/* Border Beam — feixe luminoso correndo pela borda dos cards
   (portado do componente React border-beam.tsx) */
.border-beam {
  --bb-size: 180;
  --bb-duration: 8s;
  --bb-anchor: 90;
  --bb-border-width: 1.5;
  --bb-color-from: #ee7150;
  --bb-color-to: #c8a45c;
  --bb-delay: 0s;

  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: calc(var(--bb-border-width) * 1px) solid transparent;

  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(transparent, transparent),
    linear-gradient(#fff, #fff);
          mask-image:
    linear-gradient(transparent, transparent),
    linear-gradient(#fff, #fff);
}
.border-beam::after {
  content: "";
  position: absolute;
  aspect-ratio: 1 / 1;
  width: calc(var(--bb-size) * 1px);
  background: linear-gradient(to left, var(--bb-color-from), var(--bb-color-to), transparent);
  offset-anchor: calc(var(--bb-anchor) * 1%) 50%;
  offset-path: rect(0 auto auto 0 round calc(var(--bb-size) * 1px));
  animation: border-beam var(--bb-duration) infinite linear;
  animation-delay: var(--bb-delay);
}
@keyframes border-beam {
  to { offset-distance: 100%; }
}

/* stagger dos 4 pilares (delays negativos = nao espera ciclos) */
.pillar:nth-child(1) .border-beam { --bb-delay: 0s; }
.pillar:nth-child(2) .border-beam { --bb-delay: -2s; }
.pillar:nth-child(3) .border-beam { --bb-delay: -4s; }
.pillar:nth-child(4) .border-beam { --bb-delay: -6s; }

@media (prefers-reduced-motion: reduce) {
  .border-beam::after { animation: none; }
}
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center;
  color: var(--washi);
  margin-bottom: 20px;
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 500;
}
.pillar h4 { font-size: 19px; margin-bottom: 10px; font-weight: 600; }
.pillar p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ---------------- ABOUT ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-text h2 .brush-it { font-family: "Caveat", cursive; color: var(--red); }
.about-text p { font-size: 17px; color: var(--ink); margin-bottom: 1.2em; max-width: 540px; }
.about-image-stack { position: relative; aspect-ratio: 4/5; }
.about-image-stack .img {
  position: absolute;
  border-radius: var(--shell-radius);
  background: var(--washi-3);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.2);
}
.about-image-stack .img-1 { top: 0; left: 0; width: 72%; height: 70%; background-image: url("assets/images/comida-japonesa-em-diadema.webp"); }
.about-image-stack .img-2 { bottom: 0; right: 0; width: 60%; height: 55%; background-image: url("assets/images/comida-japonesa-em-diadema2.webp"); border: 6px solid var(--washi); }

/* Background decorativo no canto superior direito da secao "sobre" */
#sobre { overflow: hidden; }
#sobre::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  background: url("assets/images/sushi-em-diadema.webp") top right / contain no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(225deg, #000 28%, transparent 78%);
          mask-image: linear-gradient(225deg, #000 28%, transparent 78%);
}
#sobre > .wrap { position: relative; z-index: 1; }

@media (max-width: 880px) {
  #sobre::before { width: 60%; opacity: 0.3; }
}

/* ---------------- GALLERY ---------------- */
.gallery-section { background: var(--washi-2); }
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: row dense;
  gap: 10px;
  margin-top: 56px;
}
.gallery-item {
  aspect-ratio: 1/1;
  background: var(--washi-3);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform .3s;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2.04; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.placeholder {
  background: repeating-linear-gradient(45deg, var(--washi-3) 0 8px, var(--washi-2) 8px 16px);
  display: grid; place-items: center;
  color: var(--ink-soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
}
.gallery-item:hover { transform: scale(1.02); }

/* ---------------- SALAO ---------------- */
.salao {
  background: var(--sumi);
  color: var(--washi);
  position: relative;
}
.salao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.salao-text h2 { margin-bottom: 24px; }
.salao-text p { font-size: 17px; color: rgba(245,239,228,0.78); max-width: 480px; margin-bottom: 1.2em; }
.salao-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 280px; gap: 12px; }
.salao-images .img {
  background-size: cover; background-position: center;
  border-radius: var(--shell-radius);
}
.salao-images .img-a { grid-row: 1 / span 2; background-image: url("assets/images/comida-japonesa-em-diadema3.webp"); }
.salao-images .img-b { background-image: url("assets/images/comida-japonesa-em-diadema4.webp"); }
.salao-images .img-c { background-image: url("assets/images/comida-japonesa-em-diadema5.webp"); }

/* ---------------- REVIEWS ---------------- */
.reviews-head { text-align: center; margin-bottom: 56px; }
.review-rating {
  display: inline-flex; align-items: baseline; gap: 12px;
  margin-top: 8px;
}
.review-rating .num { font-family: "Shippori Mincho", serif; font-size: 52px; color: var(--red); font-weight: 500; }
.review-rating .stars { color: var(--red); letter-spacing: 4px; font-size: 18px; }
.review-rating .meta { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.05em; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--washi);
  border: 1px solid var(--washi-3);
  border-radius: var(--shell-radius);
  padding: 28px;
  position: relative;
}
.review .stars { color: var(--red); letter-spacing: 2px; margin-bottom: 12px; }
.review .quote { font-family: "Shippori Mincho", serif; font-size: 17px; color: var(--ink); line-height: 1.5; margin-bottom: 20px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--red); display: grid; place-items: center; color: var(--washi); font-weight: 600; font-size: 14px; }
.review .name { font-size: 13px; font-weight: 600; }
.review .date { font-size: 12px; color: var(--ink-soft); }

/* ---------------- LOCATION ---------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.map-wrap {
  border-radius: var(--shell-radius);
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--washi-3);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-info { display: flex; flex-direction: column; justify-content: center; }
.location-info h2 { margin-bottom: 16px; }
.location-info h2 .brush-it { font-family: "Caveat", cursive; color: var(--red); }
.location-info p { font-size: 17px; color: var(--ink-soft); margin-bottom: 28px; max-width: 460px; }
.info-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 16px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .icon { width: 36px; height: 36px; flex: none; border-radius: 50%; background: var(--washi-2); display: grid; place-items: center; color: var(--red); font-size: 16px; font-weight: 600; font-family: "Shippori Mincho", serif; border: 1px solid var(--washi-3); }
.info-list .label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.info-list .value { font-size: 16px; font-weight: 600; color: var(--ink); }

/* ---------------- CTA TARJA ---------------- */
.cta-band {
  position: relative;
  background: var(--sumi);
  color: var(--washi);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(200,51,31,0.22), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(200,51,31,0.18), transparent 50%);
}
.cta-band-inner { position: relative; }
.cta-band .brush-it { font-family: "Caveat", cursive; color: var(--salmon); font-weight: 500; }
.cta-band h2 { font-size: clamp(40px, 5.4vw, 80px); margin-bottom: 18px; }
.cta-band p { color: rgba(245,239,228,0.7); font-size: 18px; margin-bottom: 36px; }

/* ---------------- FOOTER ---------------- */
.footer {
  background: #050403;
  color: rgba(245,239,228,0.7);
  padding: 80px 0 40px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 64px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; max-width: 320px; color: rgba(245,239,228,0.55); }
.footer h5 { font-family: "Manrope", sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--washi); margin-bottom: 18px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a:hover { color: var(--salmon); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(245,239,228,0.08);
  font-size: 12px;
  color: rgba(245,239,228,0.4);
}
.footer-bottom a:hover { color: var(--salmon); }
.footer-webformas {
  display: block;
  max-width: none;
  width: auto;
  height: auto;
  opacity: 1;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .hero-grid, .rodizio-grid, .about-grid, .salao-grid, .location-grid { grid-template-columns: 1fr; }
  .hero-right { aspect-ratio: 1/1; max-width: 440px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(245,239,228,0.08); }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(245,239,228,0.08); }
  .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-title {  font-size: clamp(78px, 9.6vw, 116px);}
}

/* =========================================================
   WhatsApp shiny button (portado do site Marido de Aluguel SOS)
   ========================================================= */
@property --shiny-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --shiny-angle-offset {
  syntax: "<angle>";
  initial-value: 45deg;
  inherits: false;
}
@property --shiny-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}
@property --shiny-shine {
  syntax: "<color>";
  initial-value: #ffffff;
  inherits: false;
}

.btn-shiny-wa,
.btn-shiny-wa:link,
.btn-shiny-wa:visited,
.btn-shiny-wa:hover,
.btn-shiny-wa:focus,
.btn-shiny-wa:focus-visible,
.btn-shiny-wa:active,
.btn-shiny-wa > span,
.btn-shiny-wa:hover > span { color: #ffffff !important; }
.btn-shiny-wa > span svg { color: inherit; }

.btn-shiny-wa {
  --wa-bg-from: #128C7E;
  --wa-bg-to: #25D366;
  --wa-bg-subtle: #0e6b5f;
  --wa-fg: #ffffff;
  --wa-highlight: #4ade80;
  --wa-highlight-subtle: #bbf7d0;
  --shiny-duration: 3s;
  --shiny-shadow-size: 2px;
  --shiny-transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);

  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--wa-fg);
  text-decoration: none;
  background:
    linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.7) 50%, transparent 75%, transparent 100%) padding-box,
    linear-gradient(135deg, var(--wa-bg-from), var(--wa-bg-to)) padding-box,
    conic-gradient(
      from calc(var(--shiny-angle) - var(--shiny-angle-offset)),
      transparent,
      var(--wa-highlight) var(--shiny-percent),
      var(--shiny-shine) calc(var(--shiny-percent) * 2),
      var(--wa-highlight) calc(var(--shiny-percent) * 3),
      transparent calc(var(--shiny-percent) * 4)
    ) border-box;
  background-size: 250% 250%, 100% 100%, 100% 100%;
  background-position: 200% 0, 0 0, 0 0;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px var(--wa-bg-subtle), 0 8px 22px rgba(18, 140, 126, 0.35);
  transition:
    --shiny-angle-offset var(--shiny-transition),
    --shiny-percent var(--shiny-transition),
    --shiny-shine var(--shiny-transition),
    box-shadow var(--shiny-transition),
    transform var(--shiny-transition),
    background-position 1000ms ease;
}

.btn-shiny-wa::before,
.btn-shiny-wa::after,
.btn-shiny-wa > span::before {
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.btn-shiny-wa:active { translate: 0 1px; }

.btn-shiny-wa::before {
  --size: calc(100% - var(--shiny-shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background:
    radial-gradient(
      circle at var(--position) var(--position),
      #ffffff calc(var(--position) / 4),
      transparent 0
    ) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  -webkit-mask-image: conic-gradient(
    from calc(var(--shiny-angle) + 45deg),
    black, transparent 10% 90%, black
  );
  mask-image: conic-gradient(
    from calc(var(--shiny-angle) + 45deg),
    black, transparent 10% 90%, black
  );
  border-radius: inherit;
  opacity: 0.35;
  z-index: -1;
}

.btn-shiny-wa::after {
  width: 100%;
  aspect-ratio: 1;
}

.btn-shiny-wa > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
}

.btn-shiny-wa > span svg { flex-shrink: 0; }

.btn-shiny-wa > span::before {
  width: 300%;
  height: 300%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 90%,
    var(--wa-highlight) 0%,
    rgba(74, 222, 128, 0.35) 30%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--shiny-transition);
  animation: calc(var(--shiny-duration) * 1.5) shiny-breathe linear infinite;
}

.btn-shiny-wa,
.btn-shiny-wa::before,
.btn-shiny-wa::after {
  animation: shiny-angle linear infinite var(--shiny-duration),
             shiny-angle calc(var(--shiny-duration) / 0.4) linear infinite reverse paused;
  animation-composition: add;
}

.btn-shiny-wa:is(:hover, :focus-visible) {
  --shiny-percent: 20%;
  --shiny-angle-offset: 95deg;
  --shiny-shine: var(--wa-highlight-subtle);
  background-position: -100% 0, 0 0, 0 0;
  box-shadow: inset 0 0 0 1px var(--wa-bg-subtle), 0 12px 28px rgba(37, 211, 102, 0.45);
}

.btn-shiny-wa:is(:hover, :focus-visible),
.btn-shiny-wa:is(:hover, :focus-visible)::before,
.btn-shiny-wa:is(:hover, :focus-visible)::after {
  animation-play-state: running;
}

.btn-shiny-wa:is(:hover, :focus-visible) > span::before {
  opacity: 1;
}

@keyframes shiny-angle  { to { --shiny-angle: 360deg; } }
@keyframes shiny-breathe { from, to { scale: 1; } 50% { scale: 1.2; } }

/* match exato com .btn (padding 16px 28px, font 14px, line-height herdada 1.55) */
.btn-shiny-wa--lg { padding: 16px 28px; }
.btn-shiny-wa--lg > span { font-size: 14px; line-height: 1.55; }

.btn-shiny-wa--block { display: flex; width: 100%; justify-content: center; }
.btn-shiny-wa--block > span { justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  .btn-shiny-wa,
  .btn-shiny-wa::before,
  .btn-shiny-wa::after,
  .btn-shiny-wa > span::before { animation: none; }
}

/* ===========================================================
   .btn.btn-primary que apontam para WhatsApp recebem o mesmo
   tratamento shiny verde + texto centralizado.
   .btn-primary nao-WhatsApp (ex: "Ver cardapio") segue vermelho.
   =========================================================== */
.btn.btn-primary[href*="api.whatsapp.com"],
.btn.btn-primary[href*="wa.me"] {
  --cta-from: #128C7E;
  --cta-to: #25D366;
  --cta-subtle: #0e6b5f;
  --cta-highlight: #4ade80;
  --cta-highlight-subtle: #bbf7d0;
  --shiny-duration: 3s;
  --shiny-transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);

  isolation: isolate;
  position: relative;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  border: 1px solid transparent;
  background:
    linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.45) 50%, transparent 75%, transparent 100%) padding-box,
    linear-gradient(135deg, var(--cta-from), var(--cta-to)) padding-box,
    conic-gradient(
      from calc(var(--shiny-angle) - var(--shiny-angle-offset)),
      transparent,
      var(--cta-highlight) var(--shiny-percent),
      var(--shiny-shine) calc(var(--shiny-percent) * 2),
      var(--cta-highlight) calc(var(--shiny-percent) * 3),
      transparent calc(var(--shiny-percent) * 4)
    ) border-box;
  background-size: 250% 250%, 100% 100%, 100% 100%;
  background-position: 200% 0, 0 0, 0 0;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px var(--cta-subtle), 0 8px 28px rgba(18,140,126,0.4);
  transition:
    --shiny-angle-offset var(--shiny-transition),
    --shiny-percent var(--shiny-transition),
    --shiny-shine var(--shiny-transition),
    box-shadow var(--shiny-transition),
    transform .2s,
    background-position 800ms ease;
  animation: shiny-angle linear infinite var(--shiny-duration);
}

.btn.btn-primary[href*="api.whatsapp.com"]:hover,
.btn.btn-primary[href*="api.whatsapp.com"]:focus-visible,
.btn.btn-primary[href*="wa.me"]:hover,
.btn.btn-primary[href*="wa.me"]:focus-visible {
  --shiny-percent: 20%;
  --shiny-angle-offset: 95deg;
  --shiny-shine: var(--cta-highlight-subtle);
  background-position: -100% 0, 0 0, 0 0;
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px var(--cta-subtle), 0 14px 36px rgba(37,211,102,0.55);
}

@media (prefers-reduced-motion: reduce) {
  .btn.btn-primary[href*="api.whatsapp.com"],
  .btn.btn-primary[href*="wa.me"] { animation: none; }
}

/* =========================================================
   UTILITIES & MODIFIERS — substituem inline styles dos HTMLs
   ========================================================= */

/* GTM noscript wrapper */
.gtm-hidden { display: none !important; visibility: hidden; width: 0; height: 0; overflow: hidden; }

/* Section background variants */
.section--light { background: var(--washi-2); }
.section--light-tight { background: var(--washi-2); padding-top: 0; }

/* Standalone jp-mark (fora de .section-head) */
.jp-mark {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--salmon);
  margin-bottom: 14px;
}
.jp-mark--red { color: var(--red); }

/* Brush-it base (fallback fora de contextos especificos) */
.brush-it { font-family: "Caveat", cursive; color: var(--red); font-weight: 500; }
.brush-it--red { color: var(--red); }

/* Script accent span inside headers */
.script-accent { font-family: "Caveat", cursive; color: var(--salmon); }
.script-accent--red { font-family: "Caveat", cursive; color: var(--red); }

/* Inline grid layouts (geralmente em .wrap > div) */
.split-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-50-50--top { align-items: start; }
.split-9-11 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .split-50-50,
  .split-9-11 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* CTA row alignment */
.hero-cta-row--center { justify-content: center; }

/* Section head modifier */
.section-head--mb-56 { margin-bottom: 56px; }

/* Subtitle h3 dentro de categorias (cardapio) */
.cat-sub-title { margin-top: 56px; font-size: 28px; }

/* Form intro paragraph */
.form-intro { font-size: 14px; color: var(--ink-soft); margin-bottom: 28px; }

/* Map wrap modifier */
.map-wrap--lg { min-height: 480px; box-shadow: 0 20px 60px -24px rgba(0,0,0,0.2); }

/* Inline lead variants (about/sobre pages) */
.lead-inline { font-size: 17px; color: var(--ink); margin-top: 24px; }
.lead-center { font-size: 16px; color: var(--ink-soft); max-width: 720px; margin: 0 auto 32px; }

/* Button modifier */
.btn--full { width: 100%; justify-content: center; }

/* Utilities — alignment */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }

/* Utilities — margin top */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }

/* Utilities — margin bottom */
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
