/* === DESIGN TOKENS === */
:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --surface-3: #242424;
  --text: #f2f0eb;
  --text-dim: #9a9a8a;
  --text-muted: #5a5a52;
  --accent: #c53030;
  --accent-hover: #a02828;
  --accent-dim: rgba(197, 48, 48, 0.12);
  --green: #2d8a2d;
  --green-dim: rgba(45, 138, 45, 0.12);
  --border: rgba(242, 240, 235, 0.07);
  --border-strong: rgba(242, 240, 235, 0.14);
  --radius: 3px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --max-w: 1280px;
  --section-py: clamp(4.5rem, 9vw, 8rem);
  --nav-h: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
.display { font-family: var(--font-display); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* === UTILITIES === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--text-dim); background: rgba(242,240,235,0.04); }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.tag-green { background: var(--green-dim); color: #4aba4a; }
.tag-red { background: var(--accent-dim); color: #e86060; }
.tag-dim { background: rgba(255,255,255,0.06); color: var(--text-dim); }

/* invisible text for accessibility */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}
.nav.scrolled {
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 2px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta { margin-left: 1rem; }
.nav-cta-mobile {
  display: none !important;
  padding: 0.4rem 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.nav-cta-mobile.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}
.nav-mobile.open { display: flex; pointer-events: auto; visibility: visible; }
.nav-mobile .nav-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}
.nav-mobile .nav-link:hover { color: var(--accent); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,12,12,0.95) 0%,
    rgba(12,12,12,0.6) 40%,
    rgba(12,12,12,0.2) 70%,
    rgba(12,12,12,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.hero-location::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.hero-headline .word {
  display: block;
  will-change: transform, opacity;
}
.hero-headline em {
  font-style: italic;
  color: var(--text-dim);
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 44ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-badge {
  position: absolute;
  top: 50%;
  right: clamp(1.5rem, 5vw, 6rem);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}
.hero-badge-stars {
  font-size: 0.9rem;
  color: #f0a742;
  letter-spacing: 0.05em;
}
.hero-badge-text {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-badge-sep {
  width: 1px;
  height: 32px;
  background: var(--border-strong);
}

/* === STATS STRIP === */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 0;
}
.stats-sep {
  height: 3rem;
  background: var(--border-strong);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  padding: 0.5rem 2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--text);
}
.stat-num sup {
  font-size: 0.45em;
  vertical-align: super;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* === HISTORIA === */
.historia {
  padding: var(--section-py) 0;
  overflow: hidden;
}
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.historia-content { }
.historia-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.historia-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--accent);
  max-width: 48px;
}
.historia-content .section-title { margin-bottom: 1.75rem; }
.historia-text {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  max-width: 52ch;
}
.historia-text strong { color: var(--text); font-weight: 400; }
.historia-quote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.historia-quote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
}
.historia-founders {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.founders-names {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.founders-role {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.historia-photo {
  position: relative;
}
.historia-photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.historia-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.historia-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(12,12,12,0.4));
}
.historia-photo-deco {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 80px;
  height: 80px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

/* === DIFERENCIAIS BENTO === */
.diferenciais {
  padding: var(--section-py) 0;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(12,12,12,0.82), rgba(12,12,12,0.82)),
    url('../Imagens/WEBP/Fundo Pizza.webp') center / cover no-repeat fixed;
}
.diferenciais-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.diferenciais-header .section-title { margin-top: 0.75rem; }
.diferenciais-header p {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 52ch;
  margin: 1rem auto 0;
  line-height: 1.7;
}
.bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.bento-tile {
  position: relative;
  border-radius: calc(var(--radius) + 1px);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
  min-height: 220px;
}
.bento-tile:hover { border-color: var(--accent); }
.bento-tile.large { grid-row: span 2; }
.bento-tile-img {
  position: absolute;
  inset: 0;
}
.bento-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.bento-tile:hover .bento-tile-img img { opacity: 0.55; transform: scale(1.04); }
.bento-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(12,12,12,0.85));
}
.bento-tile-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  z-index: 1;
}
.bento-tile-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.bento-tile-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.bento-tile-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.bento-tile.large .bento-tile-title {
  font-size: 2rem;
}
.bento-tile-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.bento-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.bento-tile:hover .bento-accent-bar { transform: scaleX(1); }

/* === GALERIA === */
.galeria {
  padding: var(--section-py) 0;
  overflow: hidden;
}
.galeria-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.galeria-header .section-title {}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-auto-flow: dense;
  gap: 0.75rem;
}
.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.galeria-item:nth-child(1) { grid-row: span 2; }
.galeria-item:nth-child(5) { grid-column: span 2; }
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 240px;
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.galeria-item:hover .galeria-item-overlay { background: rgba(12,12,12,0.4); }
.galeria-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  color: var(--text);
  font-size: 1.5rem;
}
.galeria-item:hover .galeria-zoom { opacity: 1; transform: scale(1); }

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-dim);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}
.lightbox-close:hover { color: var(--text); border-color: var(--border-strong); }

/* === VIDEOS === */
.videos {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.videos-header {
  margin-bottom: 3rem;
}
.videos-header .section-title { margin-top: 0.75rem; }
.videos-header p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-top: 0.75rem;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.reel-card {
  position: relative;
  display: block;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: #111 center/cover no-repeat;
  cursor: pointer;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.25) 100%);
  transition: background 0.3s;
}
.reel-card:hover .reel-overlay { background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.4) 100%); }
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(197,48,48,0.5);
}
.reel-card:hover .reel-play {
  background: #e53e3e;
  transform: translate(-50%,-50%) scale(1.1);
}
.reel-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
}
.video-thumb {
  position: absolute;
  inset: 0;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-embed:hover .video-thumb img { transform: scale(1.04); }
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.video-embed:hover .video-thumb-overlay { background: rgba(0,0,0,0.25); }
.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s;
}
.video-embed:hover .video-play-btn { transform: scale(1.1); }
.video-play-btn svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }
.video-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* === CARDAPIO === */
.cardapio {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
#mapaDotsCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.cardapio .container { position: relative; z-index: 1; }
.cardapio-header {
  margin-bottom: 3rem;
}
.cardapio-header .section-title { margin-top: 0.75rem; }
.cardapio-header p {
  color: var(--text-dim);
  margin-top: 0.75rem;
  max-width: 52ch;
  line-height: 1.7;
}
.cardapio-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
.cardapio-main {
  background: #000;
  border-radius: calc(var(--radius) + 1px);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

/* Format tabs */
.format-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.format-tab {
  padding: 0.875rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.format-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.format-tab.active { color: var(--text); }
.format-tab.active::after { transform: scaleX(1); }
.format-tab:hover { color: var(--text); }

/* Category tabs */
.cat-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 1.25rem 0 1.75rem;
}
.cat-tab {
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.cat-tab.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.cat-tab:hover:not(.active) { border-color: var(--border-strong); color: var(--text); }

/* Menu items */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.menu-item:first-child { border-top: 1px solid var(--border); }
.menu-item:hover { background: rgba(255,255,255,0.01); }
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.menu-item-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.menu-item-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--green);
  white-space: nowrap;
}
.menu-item-price.consulte {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dim);
  transition: all 0.15s;
  background: transparent;
}
.qty-btn:hover { background: var(--surface-2); color: var(--text); }
.qty-display {
  min-width: 28px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.btn-consultar {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  display: inline-block;
}
.btn-consultar:hover { background: var(--accent-dim); }

/* Cart sidebar */
.cart-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  background: #000;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 1px);
  overflow: hidden;
}
.cart-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}
.cart-badge {
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.cart-body { padding: 1rem 1.5rem; }
.cart-empty {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.cart-items { display: flex; flex-direction: column; gap: 0.75rem; max-height: 280px; overflow-y: auto; }
.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  animation: slideIn 0.25s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-item-name {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  flex: 1;
}
.cart-item-format {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}
.cart-item-qty { font-size: 0.75rem; color: var(--text-dim); }
.cart-item-subtotal {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--green);
  white-space: nowrap;
}
.cart-remove {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1;
  transition: color 0.15s;
}
.cart-remove:hover { color: var(--accent); }
.cart-obs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.cart-obs textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 0.65rem 0.75rem;
  resize: none;
  height: 72px;
  transition: border-color 0.2s;
  outline: none;
}
.cart-obs textarea:focus { border-color: var(--border-strong); }
.cart-obs textarea::placeholder { color: var(--text-muted); }
.cart-footer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}
.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cart-total-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.cart-total-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
}
.btn-whatsapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: #25d366;
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover { background: #1da851; }
.btn-whatsapp:active { transform: scale(0.97); }
.btn-whatsapp:disabled { background: var(--surface-3); color: var(--text-muted); cursor: not-allowed; }
.btn-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }
.cart-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.5;
}

/* === PREMIOS === */
.premios {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.premios-header {
  text-align: center;
  margin-bottom: 3rem;
}
.premios-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 1.25rem;
  align-items: stretch;
}
.premio-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.premio-item:nth-child(1) { grid-row: 1 / 3; }
.premio-item:nth-child(2) { grid-column: 2; grid-row: 1; justify-content: space-between; }
.premio-item:nth-child(3) { grid-column: 3; grid-row: 1; justify-content: space-between; }
.premio-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.premio-texto-acima { justify-content: space-between; }
.premio-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
}
.premio-item:nth-child(1) .premio-img-wrap { aspect-ratio: 2/3; }
.premio-item:nth-child(2) .premio-img-wrap { aspect-ratio: 1/1; }
.premio-item:nth-child(3) .premio-img-wrap { aspect-ratio: 4/5; }
.premio-item:nth-child(4) .premio-img-wrap { aspect-ratio: 4/3; }
.premio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.premio-item:hover .premio-img-wrap img { transform: scale(1.04); }
.premio-info { padding: 0 0.25rem; }
.premio-ano {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
}
.premio-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0.2rem 0 0;
}
.premio-destaque .premio-nome { font-size: 1.3rem; }
.premio-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.4rem;
}
.premios-quote {
  margin: 3.5rem auto 0;
  max-width: 680px;
  text-align: center;
  border-left: none;
  padding: 0;
}
.premios-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.4;
}
.premios-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-style: normal;
  font-family: 'Outfit', sans-serif;
}
/* === PREMIOS: desktop grid vs mobile carousel === */
.premios-mobile-carousel { display: none; }

/* Mobile carousel styles */
.premios-track-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.premios-track-outer:active { cursor: grabbing; }
.premios-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.premio-slide {
  flex: 0 0 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.premio-slide-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--surface);
}
.premio-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.premio-slide-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.premio-slide-info .premio-ano { display: block; margin-bottom: 0.3rem; }
.premio-slide-info .premio-nome { margin-top: 0; }
.premio-slide-info .premio-desc { margin-top: 0.4rem; }

@media (max-width: 768px) {
  .premios-desktop { display: none !important; }
  .premios-mobile-carousel { display: block; }
  .premios-mobile-carousel .carousel-controls { margin-top: 1.25rem; }
}

/* === AVALIACOES === */
.avaliacoes {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.avaliacoes-header {
  text-align: center;
  margin-bottom: 3rem;
}
.avaliacoes-header .section-title { margin-top: 0.75rem; }
.avaliacoes-header p { color: var(--text-dim); margin-top: 0.75rem; font-size: 0.95rem; }

/* Carousel wrapper */
.avaliacoes-carousel-wrap {
  position: relative;
}
.avaliacoes-track-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.avaliacoes-track-outer:active { cursor: grabbing; }
.avaliacoes-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.avaliacao-card {
  flex: 0 0 calc(33.333% - 0.667rem);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 1px);
  padding: 2rem 1.75rem;
  transition: border-color 0.3s;
}
.avaliacao-card:hover { border-color: var(--border-strong); }
.avaliacao-stars {
  color: #f0a742;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.avaliacao-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.avaliacao-author { }
.avaliacao-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.avaliacao-source {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  transition: color 0.2s;
  text-decoration: none;
}
a.avaliacao-source:hover { color: var(--text-dim); }

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s;
  flex-shrink: 0;
}
.carousel-btn:hover { border-color: var(--text-dim); color: var(--text); background: rgba(255,255,255,0.04); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all 0.25s ease;
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* Mobile: 1 card */
@media (max-width: 768px) {
  .avaliacao-card { flex: 0 0 calc(100% - 0rem); }
}

/* === CONTATO === */
.contato {
  padding: var(--section-py) 0;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(rgba(12,12,12,0.88), rgba(12,12,12,0.88)),
    url('../Imagens/WEBP/Forno de Lenha.webp') center / cover no-repeat fixed;
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contato-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.contato-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--accent);
  max-width: 48px;
}
.contato-info .section-title { margin-bottom: 2rem; }
.contato-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contato-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contato-icon svg { width: 18px; height: 18px; }
.contato-text { }
.contato-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}
.contato-text span {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.contato-text a { color: var(--text); transition: color 0.2s; }
.contato-text a:hover { color: var(--accent); }
.contato-socials {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--border-strong); color: var(--text); }
.social-btn svg { width: 16px; height: 16px; }
.contato-map {
  position: relative;
  border-radius: calc(var(--radius) + 1px);
  overflow: hidden;
  height: 480px;
}
.contato-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

/* === FOOTER === */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 36ch;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li {
  font-size: 0.88rem;
  color: var(--text-dim);
}
.footer-col ul li a { transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--accent); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent-hover); }
.footer-italian {
  display: flex;
  gap: 3px;
}
.footer-italian span {
  width: 16px;
  height: 10px;
  border-radius: 1px;
  display: block;
}




/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .cardapio-layout { grid-template-columns: 1fr; }
  .cart-sidebar { position: static; }
  .bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento-tile.large { grid-row: span 1; }
}

@media (max-width: 768px) {
  :root { --section-py: clamp(3.5rem, 7vw, 5rem); }
  .nav-links, .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; }
  .nav-hamburger { display: flex; }
  .hero-badge { display: none; }
  .hero-headline { font-size: clamp(3rem, 11vw, 5rem); }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stats-sep { display: none; }
  .historia-grid { grid-template-columns: 1fr; }
  .historia-photo { order: -1; }
  .historia-photo-deco { display: none; }
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-tile.large { grid-row: span 1; }
  /* Galeria → carrossel horizontal */
  .galeria-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .galeria-grid::-webkit-scrollbar { height: 3px; }
  .galeria-grid::-webkit-scrollbar-track { background: var(--surface); }
  .galeria-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
  .galeria-item {
    flex: 0 0 80vw;
    scroll-snap-align: start;
    height: 280px;
  }
  .galeria-item:nth-child(1) { grid-row: span 1; }
  .galeria-item:nth-child(5) { grid-column: span 1; }
  .videos-grid { grid-template-columns: 1fr; }
  /* Reels → 2 colunas menores */
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .reel-play { width: 40px; height: 40px; }
  .reel-play svg { width: 24px; height: 24px; }
  .avaliacao-card { flex: 0 0 100%; }
  .contato-grid { grid-template-columns: 1fr; }
  .contato-info { order: 0; }
  .contato-map { height: 320px; order: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .galeria-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .format-tabs { overflow-x: auto; }
  .cat-tabs { overflow-x: auto; padding-bottom: 0.25rem; }
  .menu-item { flex-direction: column; gap: 0.75rem; }
  .menu-item-action { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  /* background-attachment: fixed quebra no mobile (iOS ignora) → scroll */
  .diferenciais, .contato { background-attachment: scroll; }
  .diferenciais { background-image: linear-gradient(rgba(12,12,12,0.82), rgba(12,12,12,0.82)), url('../Imagens/WEBP/Fundo Pizza.webp'); background-position: center; background-size: cover; background-repeat: no-repeat; }
  .contato { background-image: linear-gradient(rgba(12,12,12,0.88), rgba(12,12,12,0.88)), url('../Imagens/WEBP/Forno de Lenha.webp'); background-position: center; background-size: cover; background-repeat: no-repeat; }
  /* Premios: reveal travado fora do viewport horizontal → força visível no carrossel */
  .premios-grid .reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-item:nth-child(1),
  .galeria-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
}

/* === REEL MODAL === */
.reel-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reel-modal.open { display: flex; }
.reel-modal iframe { width: 100%; height: 100%; border: 0; }
.reel-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
