/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --dark:    #141414;
  --dark2:   #1c1c1c;
  --red:     #c8102e;
  --gold:    #d4a843;
  --white:   #ffffff;
  --w70:     rgba(255,255,255,0.7);
  --w40:     rgba(255,255,255,0.4);
  --w10:     rgba(255,255,255,0.06);
  --border:  rgba(255,255,255,0.08);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.4s;
  --r: 14px;
  --pad: 120px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }

/* ── LAYOUT ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TYPE ─────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label--center { display: block; text-align: center; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--red); font-weight: 400; }
.section-title--center { text-align: center; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-subtitle { font-size: 0.95rem; color: var(--w70); max-width: 460px; margin: 0 auto; font-weight: 300; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: #df1232; box-shadow: 0 10px 28px rgba(200,16,46,0.35); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn--ghost:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.05); }

.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #1fc25d; box-shadow: 0 10px 28px rgba(37,211,102,0.28); }
.btn--facebook { display: none !important; }

.btn--social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  flex-shrink: 0; gap: 0;
}
.btn--social:hover { transform: translateY(-3px); }
.btn--social-label { display: none; }

@media (max-width: 768px) {
  .btn--social { flex-direction: column; height: auto; width: auto; border-radius: 12px; padding: 12px 16px; gap: 8px; }
  .btn--social-label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; }
}

@media (min-width: 769px) {
  .btn--social { width: auto; height: auto; border-radius: 50px; padding: 10px 20px; gap: 9px; flex-direction: row; }
  .btn--social-label { display: inline; font-size: 0.82rem; }
}
.btn--instagram { background: rgba(200,16,46,0.15); color: var(--white); border: 1.5px solid rgba(200,16,46,0.5); }
.btn--instagram:hover { background: rgba(200,16,46,0.3); box-shadow: 0 8px 24px rgba(200,16,46,0.25); }
.btn--facebook { background: rgba(24,119,242,0.15); color: var(--white); border: 1.5px solid rgba(24,119,242,0.45); }
.btn--facebook:hover { background: rgba(24,119,242,0.28); box-shadow: 0 8px 24px rgba(24,119,242,0.25); }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 201;
  padding: 22px 0;
  transition: background var(--t), padding var(--t);
}
.nav.scrolled {
  background: rgba(10,10,10,0.93);
  padding: 13px 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 0 32px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav__links { list-style: none; }
.nav__links li a { font-size: 0.84rem; font-weight: 500; color: var(--w70); transition: color var(--t); letter-spacing: 0.02em; }
.nav__links li a:hover { color: var(--white); }

@media (min-width: 769px) {
  .nav__links {
    display: flex; align-items: center; gap: 38px;
    position: fixed; top: 0; right: 0;
    height: 84px;
    padding: 0 32px;
    z-index: 202;
    transition: height var(--t);
  }
  .nav__links.scrolled { height: 60px; }
}
.nav__cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 9px 22px !important; border-radius: 50px !important;
  font-weight: 600 !important; font-size: 0.82rem !important;
  transition: background var(--t), box-shadow var(--t) !important;
}
.nav__cta:hover { background: #df1232 !important; box-shadow: 0 4px 18px rgba(200,16,46,0.38) !important; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  position: fixed; right: 24px; top: 18px; z-index: 600;
}

.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--black);
  background-image: url('images/banner_mobile.png');
  background-size: cover;
  background-position: center 70%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.58) 50%, rgba(0,0,0,0.70) 100%);
  z-index: 1;
}

/* Flores cerejeira — acima do overlay */
.cherry-blossoms { position: absolute; inset: 0; z-index: 3; pointer-events: none; }

.blossom-real {
  position: absolute; top: 0;
  width: clamp(150px, 18vw, 260px);
  object-fit: contain; opacity: 0.88; filter: brightness(0.7) saturate(0.85);
}
.blossom-real--left  { left: 0; transform-origin: top left; }
.blossom-real--right { right: 0; transform: scaleX(-1); transform-origin: top right; }

@media (max-width: 768px) {
  .blossom-real { width: clamp(190px, 50vw, 260px); }
  .nav:not(.scrolled) .nav__logo { opacity: 0; pointer-events: none; visibility: hidden; }
  .nav.scrolled .nav__logo { opacity: 1; pointer-events: auto; visibility: visible; transition: opacity var(--t), visibility var(--t); }
}


/* Hero content — acima de tudo */
.hero__content {
  position: relative; z-index: 4;
  max-width: 680px;
  padding: 140px 32px 80px;
  text-align: center;
}
.hero__logo {
  margin-bottom: 28px;
}
.hero__logo img {
  width: clamp(200px, 32vw, 380px);
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.5));
}
.hero__subtitle { font-size: 1rem; color: #f2a7b8; font-weight: 300; margin-bottom: 24px; }
.hero__lang { position: fixed; bottom: 28px; left: 28px; display: flex; gap: 12px; transition: opacity 0.4s var(--ease); z-index: 5; pointer-events: auto; }
.hero__lang.hidden { opacity: 0; pointer-events: none; }
.hero__lang-btn { background: none; border: none; cursor: pointer; font-size: 2rem; line-height: 1; opacity: 1; filter: none; transition: filter var(--t), transform var(--t), opacity var(--t); padding: 4px; }
.hero__lang-btn.active { transform: scale(1.15); }
.hero__lang-btn.inactive { filter: grayscale(1); opacity: 0.35; }
.hero__lang-btn:hover { opacity: 0.85; }

.hero__btns { display: flex; gap: 10px; justify-content: center; margin-top: 8px; flex-wrap: wrap; min-height: 40px; }
.hero__pedido-btn { display: inline-flex; width: auto !important; padding: 8px 20px; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em; border-color: rgba(255,255,255,0.25) !important; border-radius: 6px; background: rgba(0,0,0,0.55) !important; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.hero__pedido-btn.visible { opacity: 1; pointer-events: auto; }

.hero__rule { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 36px; }
.hero__rule span { display: block; width: 56px; height: 1px; background: var(--border); }

.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: block;
}
.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollA 2.4s ease-in-out infinite;
}
@keyframes scrollA { 0%,100%{opacity:.3;transform:scaleY(.6);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

/* ── SOBRE ────────────────────────────────────────── */
.sobre { padding: var(--pad) 0; background: var(--dark); }
.sobre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.sobre__frame { position: relative; }
.sobre__frame img {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.sobre__frame-border {
  position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid rgba(200,16,46,0.18); border-radius: var(--r); z-index: -1;
}

.sobre__text { position: relative; overflow: hidden; }
.sobre__text p { font-size: 0.96rem; color: var(--w70); font-weight: 300; margin-bottom: 16px; }

.sobre__pillars { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.pillar { display: flex; flex-direction: column; gap: 8px; }
.pillar__line { width: 28px; height: 2px; background: var(--red); border-radius: 2px; }
.pillar span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--w70); }

.sobre__samurai {
  position: absolute;
  bottom: -40px; right: -60px;
  width: clamp(180px, 22vw, 300px);
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: screen;
}
.sobre__samurai img { width: 100%; height: auto; filter: invert(1); }

/* ── GALERIA ──────────────────────────────────────── */
.galeria { background: var(--black); padding: 0; }

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 180px);
}

.galeria__item {
  overflow: hidden;
  cursor: pointer;
}

.galeria__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.galeria__item:hover img { transform: scale(1.07); }

@media (max-width: 1024px) {
  .galeria__grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 160px); }
}
@media (max-width: 600px) {
  .galeria__grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 120px); }
}

/* ── LIGHTBOX ─────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  animation: modalIn 0.3s var(--ease);
}

.lightbox__close {
  position: fixed; top: 20px; right: 24px;
  background: none; border: none;
  color: var(--white); font-size: 2.4rem;
  cursor: pointer; line-height: 1; z-index: 901;
  opacity: 0.7; transition: opacity var(--t);
}
.lightbox__close:hover { opacity: 1; }

/* ── CHEF ─────────────────────────────────────────── */
.chef {
  padding: var(--pad) 0;
  background: var(--black);
  position: relative; overflow: hidden;
}

.chef__samurai {
  position: absolute; bottom: 0;
  width: clamp(200px, 28vw, 420px);
  pointer-events: none; z-index: 0; opacity: 0.06;
  mix-blend-mode: luminosity;
}
.chef__samurai img { width: 100%; height: auto; filter: invert(1); }
.chef__samurai--left  { left: -40px; }
.chef__samurai--right { right: -40px; transform: scaleX(-1); }

.chef__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.chef__photo {
  position: relative;
}
.chef__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 55%;
  border-radius: var(--r);
  border: 1px solid var(--border);
  display: block;
}
.chef__photo::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, var(--black) 0%, var(--black) 15%, rgba(0,0,0,0.6) 55%, transparent 100%);
  border-radius: var(--r) var(--r) 0 0;
  pointer-events: none;
}

.chef__photo-border {
  position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid rgba(200,16,46,0.18);
  border-radius: var(--r); z-index: -1;
}

.chef__text p { font-size: 0.96rem; color: var(--w70); font-weight: 300; line-height: 1.75; margin-bottom: 16px; }
.chef__pillars { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .chef__grid { grid-template-columns: 1fr; gap: 40px; }
  .chef__photo { order: -1; }
  .chef__photo img { aspect-ratio: auto; object-fit: contain; border: none; background: none; }
  .chef__photo-border { display: none; }
  .chef__samurai { display: none; }
}

/* ── EXPERIÊNCIA ──────────────────────────────────── */
.experiencia { padding: var(--pad) 0; background: var(--dark); position: relative; overflow: hidden; }

.exp__samurai {
  position: absolute; bottom: 0;
  width: clamp(260px, 36vw, 520px);
  pointer-events: none; z-index: 0;
  opacity: 0.07;
  mix-blend-mode: luminosity;
}
.exp__samurai img {
  width: 100%; height: auto;
  filter: invert(1) brightness(1);
  object-fit: contain;
}
.exp__samurai--left  { left: -60px; }
.exp__samurai--right { right: -60px; transform: scaleX(-1); }

@media (max-width: 768px) {
  .exp__samurai { display: none; }
}
.exp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.exp__card {
  padding: 36px 24px; background: var(--dark2);
  border: 1px solid var(--border); border-radius: var(--r);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--t), transform var(--t) var(--ease);
}
.exp__card:hover { border-color: rgba(200,16,46,0.32); transform: translateY(-5px); }
.exp__icon { width: 48px; }
.exp__icon svg { width: 100%; height: auto; }
.exp__card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; letter-spacing: 0.01em; color: var(--white); }
.exp__card p { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.65; font-weight: 400; }

/* No desktop, accordion da experiência vira cards */
@media (min-width: 769px) {
  .experiencia .accordion {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
  }
  .experiencia .accordion__item {
    background: var(--dark2);
    border-radius: var(--r);
    border: 1px solid var(--border);
    padding: 32px 24px;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color var(--t), transform var(--t) var(--ease);
  }
  .experiencia .accordion__item:hover { border-color: rgba(200,16,46,0.32); transform: translateY(-5px); }
  .experiencia .accordion__trigger {
    padding: 0; background: none; border: none;
    color: var(--white); cursor: default; pointer-events: none;
    font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
    display: flex; align-items: center; gap: 12px;
  }
  .experiencia .accordion__hint,
  .experiencia .accordion__chevron { display: none; }
  .experiencia .accordion__body {
    max-height: none; overflow: visible;
    padding: 0; opacity: 1;
  }
  .experiencia .accordion__body p {
    font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.65;
  }
}

/* ── MENU & INFORMAÇÕES ───────────────────────────── */
.menu { padding: var(--pad) 0; background: var(--dark); }

.accordion { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }

.accordion__item {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t);
}
.accordion__item:has(.accordion__trigger[aria-expanded="true"]) {
  border-color: rgba(200,16,46,0.3);
}

.accordion__trigger {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 22px 28px; background: none; border: none;
  color: var(--white); cursor: pointer;
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  text-align: left; transition: background var(--t);
}
.accordion__trigger:hover { background: rgba(255,255,255,0.03); }

.accordion__trigger-left { display: flex; align-items: center; gap: 12px; flex: 1; }

.accordion__hint {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--w40);
  margin-right: 8px; white-space: nowrap;
}
.accordion__trigger[aria-expanded="true"] .accordion__hint { display: none; }

.accordion__chevron {
  color: var(--w40); flex-shrink: 0;
  transition: transform var(--t) var(--ease);
}
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); color: var(--red); }

.accordion__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 28px;
}
.accordion__body.open {
  max-height: 600px;
  padding: 20px 28px 28px;
}

.menu__block-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.menu__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.menu__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; font-size: 0.9rem; color: var(--w70);
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.menu__list li:last-child { border-bottom: none; padding-bottom: 0; }
.menu__list li strong { color: var(--gold); font-size: 1rem; white-space: nowrap; }
.menu__list-highlight { background: rgba(200,16,46,0.06); border-radius: 8px; padding: 10px 12px !important; border-bottom: none !important; }
.menu__list-highlight em { font-size: 0.76rem; color: var(--w40); font-style: normal; }

.menu__notes { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.menu__notes li {
  font-size: 0.88rem; color: var(--w70); font-weight: 300; line-height: 1.6;
  padding-left: 14px; border-left: 2px solid var(--red);
}

.menu__tabuas-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.menu__tabua-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--w40); margin: 14px 0 6px;
}
.menu__tabua-label:first-child { margin-top: 0; }
.menu__tabua-label--red { color: var(--red); }
.menu__tabuas ul { list-style: none; }
.menu__tabuas ul li { font-size: 0.86rem; color: var(--w70); padding: 3px 0; }

.menu__horarios-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.menu__horarios-list li { display: flex; flex-direction: column; gap: 4px; }
.menu__horarios-list strong { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.menu__horarios-list span { font-size: 1.1rem; color: var(--white); font-family: var(--sans); font-weight: 600; }
.menu__horarios-list em { font-size: 0.8rem; color: var(--w40); font-style: normal; }

@media (max-width: 1024px) {
  .menu__grid { grid-template-columns: 1fr; }
  .menu__tabuas-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .menu__tabuas-grid { grid-template-columns: 1fr; }
  .menu__prices, .menu__info, .menu__tabuas, .menu__horarios { padding: 28px 20px; }
}

/* ── REDES SOCIAIS ────────────────────────────────── */
.redes {
  padding: var(--pad) 0;
  background: var(--black);
  position: relative; overflow: hidden;
}
.redes__blossom {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: clamp(240px, 35vw, 420px); pointer-events: none;
}
.redes__blossom svg { width: 100%; height: auto; }

.redes__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: row;
  align-items: center; justify-content: space-between; gap: 40px;
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 40px 56px;
  background: var(--dark);
}
.redes__icon svg { display: block; }
.redes__text .section-title { margin-bottom: 0; }
.redes__text p { font-size: 0.9rem; color: var(--w70); font-weight: 300; margin-top: 12px; max-width: 480px; }
.redes__actions { display: flex; flex-direction: row; gap: 16px; align-items: center; justify-content: center; }

/* ── PEDIDO ───────────────────────────────────────── */
.pedido { padding: var(--pad) 0; background: var(--dark); }
.pedido__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.pedido__inner > .section-title { margin-bottom: 0; }

.pedido__options {
  display: flex; align-items: stretch;
  margin-top: 52px;
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.pedido__card {
  flex: 1; padding: 48px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
  background: var(--dark2); transition: background var(--t);
}
.pedido__card:hover { background: #222; }
.pedido__card-num { font-family: var(--sans); font-size: 2.8rem; font-weight: 700; color: rgba(255,255,255,0.07); line-height: 1; }
.pedido__card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; }
.pedido__card p { font-size: 0.87rem; color: var(--w70); font-weight: 300; line-height: 1.6; flex: 1; max-width: 230px; }

.pedido__divider {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  width: 58px; flex-shrink: 0;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.pedido__divider span { display: block; width: 1px; height: 40px; background: var(--border); }
.pedido__divider em { font-style: normal; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--w40); }

/* ── CONTACTO ─────────────────────────────────────── */
.contacto { padding: var(--pad) 0; background: var(--black); }
.contacto__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: stretch; }
.contacto__info .section-title { margin-bottom: 36px; }

.contacto__items { display: flex; flex-direction: column; gap: 8px; }
.contacto__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 18px; border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color var(--t), background var(--t);
}
.contacto__item:hover { border-color: rgba(200,16,46,0.22); background: rgba(200,16,46,0.04); }
.contacto__item-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contacto__item-icon svg { width: 100%; height: 100%; }
.contacto__item strong { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }

.waze-btn {
  display: inline-flex; flex-direction: row; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 50px; flex-shrink: 0;
  border: 1px solid rgba(51,204,255,0.25);
  background: rgba(51,204,255,0.08);
  transition: background var(--t), border-color var(--t);
  color: #33ccff;
}
.waze-btn:hover { background: rgba(51,204,255,0.16); border-color: rgba(51,204,255,0.45); }
.waze-btn span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; }
.contacto__item p { font-size: 0.88rem; color: var(--w70); font-weight: 300; }

.contacto__map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); min-height: 340px; }
.contacto__map iframe { width: 100%; height: 100%; min-height: 340px; display: block; filter: grayscale(1) invert(1) brightness(0.82); }
@media (max-width: 768px) {
  .contacto__map { min-height: 200px; }
  .contacto__map iframe { min-height: 200px; }
}

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: #080808; border-top: 1px solid var(--border); padding: 52px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px; padding-bottom: 44px;
}
.footer__logo-img {
  height: 44px;
  width: auto;
  opacity: 0.75;
}
.footer__brand p { font-size: 0.76rem; color: var(--w40); margin-top: 8px; font-weight: 300; }

.footer__nav { display: flex; gap: 28px; justify-content: center; }
.footer__nav a { font-size: 0.82rem; color: var(--w40); transition: color var(--t); }
.footer__nav a:hover { color: var(--white); }

.footer__contact { display: flex; gap: 20px; justify-content: flex-end; }
.footer__contact a { font-size: 0.82rem; color: var(--w40); transition: color var(--t); }
.footer__contact a:hover { color: var(--white); }

.footer__bottom { border-top: 1px solid var(--border); padding: 18px 0; text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ── FAB RESERVA ──────────────────────────────────── */
.fab-reserva {
  position: fixed; bottom: 28px; right: 28px; z-index: 650;
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  border: none; border-radius: 50px;
  padding: 14px 22px;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; letter-spacing: 0.02em;
  transition: transform var(--t) var(--ease);
}
.fab-reserva:hover {
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .fab-reserva__label { display: none; }
  .fab-reserva { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; }
}

/* ── RESERVA FULL-SCREEN ──────────────────────────── */
.reserva-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 700;
  background: var(--black);
  overflow-y: auto;
}
.reserva-overlay.open { display: flex; align-items: flex-start; justify-content: center; }

.reserva {
  width: 100%; min-height: 100vh;
  display: flex; flex-direction: column;
  padding: 60px 32px 48px;
  max-width: 1000px; margin: 0 auto;
  position: relative;
  animation: fadeUp 0.35s var(--ease);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reserva__close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--w70); cursor: pointer;
  transition: background var(--t), color var(--t);
  z-index: 10;
}
.reserva__close:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.reserva__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  margin-top: 20px;
}

.reserva__header { margin-bottom: 28px; }
.reserva__header .label { margin-bottom: 6px; font-size: 0.72rem; }
.reserva__sub { font-size: 0.82rem; color: var(--w70); font-weight: 300; line-height: 1.5; }

.reserva__field { margin-bottom: 24px; }
.reserva__field label {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.reserva__input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; color: var(--white);
  font-family: var(--sans); font-size: 0.9rem;
  transition: border-color var(--t); color-scheme: dark;
}
.reserva__input:focus { outline: none; border-color: var(--red); }
.reserva__input::placeholder { color: var(--w40); }

.reserva__counter {
  display: flex; align-items: center; gap: 20px;
}
.reserva__counter span {
  font-size: 1.8rem; font-weight: 700;
  min-width: 40px; text-align: center; line-height: 1;
}
.reserva__counter-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: none; color: var(--white);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), background var(--t);
}
.reserva__counter-btn:hover { border-color: var(--red); background: rgba(200,16,46,0.1); }

/* Calendário */
.cal { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.cal__nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.cal__month { font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; text-transform: capitalize; }
.cal__nav-btn {
  background: none; border: none; color: var(--w70); cursor: pointer;
  font-size: 1.4rem; line-height: 1; padding: 2px 8px;
  border-radius: 6px; transition: color var(--t), background var(--t);
}
.cal__nav-btn:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.cal__weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 10px 8px 4px;
}
.cal__weekdays span { text-align: center; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--w40); }

.cal__days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; padding: 4px 8px 12px;
}
.cal__day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.82rem; cursor: pointer;
  border: none; background: none; color: var(--w70);
  transition: background var(--t), color var(--t);
}
.cal__day:hover:not(:disabled) { background: rgba(255,255,255,0.08); color: var(--white); }
.cal__day:disabled { color: rgba(255,255,255,0.18); cursor: default; pointer-events: none; }
.cal__day--today { color: var(--gold); font-weight: 700; }
.cal__day--selected { background: var(--red) !important; color: var(--white) !important; font-weight: 700; }
.cal__day--empty { pointer-events: none; }

/* Slots horário */
.reserva__slots-wrap { margin-bottom: 24px; }
.reserva__slots-wrap > label {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.reserva__slots { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.reserva__slot {
  padding: 9px 18px; border-radius: 50px;
  border: 1.5px solid var(--border);
  background: none; color: var(--w70);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: border-color var(--t), background var(--t), color var(--t);
}
.reserva__slot:hover { border-color: rgba(200,16,46,0.4); color: var(--white); }
.reserva__slot--active { background: var(--red); border-color: var(--red); color: var(--white); }
.reserva__slots-hint { font-size: 0.78rem; color: var(--w40); font-style: italic; }
.reserva__slot-group { width: 100%; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 8px; margin-bottom: 2px; }

.reserva__obs {
  font-size: 0.8rem; color: var(--w70); font-weight: 300;
  font-style: italic; margin-bottom: 24px; line-height: 1.5;
  border-left: 2px solid var(--gold); padding-left: 10px;
}
.reserva__btn { width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .reserva { padding: 70px 20px 40px; }
  .reserva__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── REVEAL ANIMATION ─────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad: 88px; }
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
  .sobre__grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre__frame img { aspect-ratio: 16/9; }
  .sobre__frame-border { display: none; }
  .contacto__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__nav, .footer__contact { justify-content: center; }
.redes__inner { flex-direction: column; align-items: center; text-align: center; gap: 24px; padding: 36px 28px; }
  .redes__icon { display: none; }
  .redes__actions { flex-direction: row; align-items: center; }
  .pedido__options { flex-direction: column; }
  .pedido__divider { flex-direction: row; width: auto; height: 52px; border: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0 24px; }
  .pedido__divider span { width: 40px; height: 1px; }
}

@media (max-width: 768px) {
  .hero { background-image: url('images/banner_mobile.png'); background-position: 15% 20%; background-size: cover; }
  .hero__overlay { background: linear-gradient(160deg, rgba(0,0,0,1) 15%, rgba(0,0,0,0) 91%, rgba(0,0,0,0) 100%); }
  :root { --pad: 68px; }
  .nav__links {
    display: none; position: fixed; inset: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 36px; z-index: 199; backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .nav__links.open { display: flex; }
  .nav__links li a { font-size: 1.25rem; }
  .nav__toggle { display: flex; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .hero__samurai { width: 160px; opacity: 0.1; }
  .hero__title { font-size: clamp(2.6rem, 10vw, 3.4rem); }

  .exp__grid { grid-template-columns: 1fr; }
.redes__inner { padding: 36px 28px; }
  .footer__nav { flex-wrap: wrap; gap: 14px 22px; }

  .sobre__text, .chef__text, .contacto__info { text-align: center; }
  .sobre__pillars, .chef__pillars { justify-content: center; }
  .contacto__item { text-align: left; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; }
  .sobre__pillars { gap: 20px; }
  .pedido__card { padding: 36px 24px; }
}
