/* ══════════════════════════════════
   MOBILE-FIRST — Base = phones
   Breakpoints:
     621px  → small tablet
     861px  → large tablet / nav switch
     1181px → desktop full layout
   ══════════════════════════════════ */

:root {
  --bg: #060606;
  --bg-soft: #110d0d;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f7f0e8;
  --muted: rgba(247, 240, 232, 0.72);
  --accent: #c61b1b;
  --accent-deep: #8b1010;
  --warm: rgba(255, 255, 255, 0.5);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.25);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1280px;
  --pointer-x: 50%;
  --pointer-y: 28%;
}

/* ── Reset & base ── */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-loading,
html.is-loading body {
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(198, 27, 27, 0.24), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(139, 16, 16, 0.22), transparent 20%),
    linear-gradient(180deg, #190909 0%, #0b0a0a 24%, #060606 100%);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

body.menu-open {
  overflow: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  z-index: 0;
}

body::before {
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
}

body::after {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 22%),
    radial-gradient(circle at 80% 60%, rgba(198, 27, 27, 0.08), transparent 18%);
  mix-blend-mode: screen;
  opacity: 0.2;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Entry loader ── */

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(36, 10, 10, 0.98) 0%, rgba(10, 6, 6, 0.99) 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}

html.is-loading .site-loader {
  opacity: 1;
  visibility: visible;
}

.site-loader-mark {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.site-loader-logo {
  width: min(210px, 52vw);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
  animation: loaderMarkLift 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-loader-copy {
  margin: 0;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(247, 240, 232, 0.76);
}

.site-loader-bar {
  position: relative;
  display: block;
  width: min(188px, 46vw);
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.site-loader-bar span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(198, 27, 27, 0.18), #c61b1b 55%, rgba(255, 255, 255, 0.92));
  transform-origin: left center;
  animation: loaderSweep 760ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes loaderMarkLift {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes loaderSweep {
  0% {
    transform: scaleX(0.12);
    opacity: 0.45;
  }

  58% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0.72;
  }
}

/* ── Skip link ── */

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  border-radius: 0 0 12px 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  transition: top 200ms ease;
}

.skip-link:focus {
  top: 0;
}

/* ── Focus visible ── */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Site shell ── */

.site-shell {
  position: relative;
  z-index: 1;
  width: calc(100% - 16px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 32px;
}

/* ══════════════════════════════════
   TOPBAR — mobile-first
   ══════════════════════════════════ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 0 0 16px 16px;
  transition: background 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease;
}

.topbar.is-scrolled {
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--line);
}

.topbar-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.topbar-logo {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

/* Eyebrow hidden on mobile, shown on large tablet+ */
.topbar .eyebrow {
  display: none;
  margin-left: 4px;
}

/* Nav hidden on mobile — fullscreen overlay menu */
.topbar-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 96px 24px 48px;
  overflow-y: auto;
  overscroll-behavior: contain;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(198, 27, 27, 0.16), transparent 22%),
    rgba(6, 6, 6, 0.985);
  backdrop-filter: blur(20px);
}

.topbar-nav.is-open {
  display: flex;
}

.topbar-nav a {
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.06em;
  color: var(--text);
  padding: 8px 0;
  border: none;
  transition: color 180ms ease;
}

.topbar-nav a:hover {
  color: var(--accent);
}

/* Hamburger visible on mobile by default */
.topbar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 201;
  flex-shrink: 0;
}

.topbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 200ms ease;
  transform-origin: center;
}

.topbar-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.topbar-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Shared label styles ── */

.eyebrow,
.hero-kicker,
.fact-label,
.section-kicker,
.signal-label,
.contact-label,
.moment-label,
.horario-day {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--muted);
}

/* ══════════════════════════════════
   HERO — mobile base
   ══════════════════════════════════ */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(198, 27, 27, 0.24), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 18% 92%, rgba(198, 27, 27, 0.10), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.hero::before {
  position: absolute;
  inset: 8px;
  content: "";
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 24% 86%, rgba(198, 27, 27, 0.16), transparent 24%);
  pointer-events: none;
}

.hero-copy,
.hero-stage,
.section,
.footer,
.signal-strip {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 10vw, 3.6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

/* Staggered reveal for h1 spans */
.js .hero h1 span {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero-copy.is-visible h1 span {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-copy.is-visible h1 span:nth-child(1) { transition-delay: 0ms; }
.js .hero-copy.is-visible h1 span:nth-child(2) { transition-delay: 120ms; }
.js .hero-copy.is-visible h1 span:nth-child(3) { transition-delay: 240ms; }

.hero h1 span:last-child {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
}

.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, #db1f1f, #9d1111);
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(198, 27, 27, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 50px rgba(198, 27, 27, 0.35);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero meta — stacked on mobile */
.hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.meta-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  transition: transform 300ms ease, box-shadow 300ms ease;
  max-width: 400px;
}

.meta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.meta-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ── Hero Stage ── */

.hero-stage {
  position: relative;
  min-height: clamp(408px, 96vw, 520px);
}

.year-pill {
  position: absolute;
  top: 100px;
  right: 14px;
  display: grid;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-align: center;
  box-shadow: var(--shadow-soft);
  animation: floatSlow 8s ease-in-out infinite;
  z-index: 4;
}

.year-pill span:first-child {
  font-size: 0.62em;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.year-pill span:last-child {
  font-size: 1.52em;
  line-height: 0.9;
}

.brand-plaque {
  position: absolute;
  top: 16px;
  left: 24px;
  width: min(50%, 188px);
  padding: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  z-index: 4;
}

.brand-plaque-img {
  width: 100%;
  height: auto;
  max-height: 126px;
  object-fit: contain;
  border-radius: 0;
}

/* ── Hero frames ── */

.hero-frame,
.cinema-stage,
.composition-photo {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-frame {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #100c0c;
}

.hero-frame::after,
.cinema-stage::after,
.composition-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 26%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%);
  pointer-events: none;
}

.hero-frame img,
.cinema-photo img,
.composition-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.hero-stage:hover .hero-frame img,
.cinema-stage:hover .cinema-photo img,
.composition-photo:hover img {
  transform: scale(1.05);
}

.hero-frame-tall {
  top: 122px;
  left: 0;
  right: auto;
  width: 100%;
  height: 226px;
  border-radius: 22px 80px 22px 22px;
}

.hero-frame-tall img {
  object-position: center 42%;
}

.hero-frame-wide {
  left: 54px;
  bottom: -4px;
  width: min(52%, 184px);
  height: 100px;
  border-radius: 22px;
  z-index: 3;
  transform: translateY(var(--frame-drift-y, 0px));
}

.hero-frame-wide img {
  object-position: center 52%;
}

.hero-frame-round {
  right: 12px;
  bottom: -10px;
  width: 86px;
  aspect-ratio: 1;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.14);
  z-index: 4;
  transform: translateX(var(--frame-drift-x, 0px));
}

.hero-frame-round img {
  object-position: center;
}

/* ── Scroll indicator ── */

.hero-scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  animation: scrollBounce 2s ease-in-out infinite;
  transition: opacity 400ms ease;
  z-index: 5;
}

.hero-scroll-indicator.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════
   SIGNAL STRIP — stacked on mobile
   ══════════════════════════════════ */

.signal-strip,
.section,
.footer {
  margin-top: 16px;
}

.signal-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.signal-item,
.section,
.footer {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.016)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
}

.signal-item {
  padding: 18px;
  border-radius: 18px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.signal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.signal-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.68;
}

/* ══════════════════════════════════
   SECTIONS — shared (mobile base)
   ══════════════════════════════════ */

.section {
  padding: 20px;
  border-radius: 22px;
}

/* Section divider gradient */
.section::before {
  content: "";
  display: block;
  height: 2px;
  margin-bottom: 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
  opacity: 0.3;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.section-index {
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ══════════════════════════════════
   MANIFESTO / HISTÓRIA — mobile
   ══════════════════════════════════ */

.manifesto-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.manifesto-number,
.manifesto-copy,
.manifesto-panel,
.composition-card,
.moment-card,
.contact-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.manifesto-number,
.manifesto-copy,
.manifesto-panel,
.composition-card,
.moment-card,
.contact-card {
  background: rgba(255, 255, 255, 0.03);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.manifesto-number:hover,
.manifesto-copy:hover,
.manifesto-panel:hover,
.composition-card:hover,
.moment-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.manifesto-number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.06), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(198, 27, 27, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.03);
}

.manifesto-number::after {
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  content: "";
  background: radial-gradient(circle, rgba(198, 27, 27, 0.22), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.manifesto-count {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: flex-start;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(6rem, 28vw, 10rem);
  line-height: 0.78;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.12);
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition:
    color 220ms ease,
    text-shadow 220ms ease,
    transform 220ms ease;
}

.manifesto-count-value,
.manifesto-count-suffix {
  display: block;
  font-size: inherit;
  line-height: inherit;
  font-variant-numeric: tabular-nums;
}

.manifesto-count-suffix {
  margin-left: 2px;
  font-size: 0.84em;
  opacity: 0.85;
}

.manifesto-count.is-counting,
.manifesto-count.is-counted {
  color: #ffffff;
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.18),
    0 0 54px rgba(198, 27, 27, 0.16);
}

.manifesto-count.is-counting {
  animation: countPulse 180ms ease-in-out 3;
}

@keyframes countPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.manifesto-number p,
.manifesto-copy p,
.manifesto-panel p,
.cinema-overlay p,
.composition-card p,
.moment-card p,
.contact-copy p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.manifesto-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
}

.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.manifesto-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 600;
}

.manifesto-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(198, 27, 27, 0.18), transparent 26%),
    rgba(255, 255, 255, 0.03);
}

.manifesto-panel h3,
.cinema-overlay h3,
.composition-card h3,
.moment-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* ══════════════════════════════════
   CINEMA / AMBIENTE — mobile
   ══════════════════════════════════ */

.cinema-stage {
  position: relative;
  min-height: 340px;
  margin-top: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cinema-photo,
.composition-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}

.cinema-photo img {
  object-position: center 50%;
  filter: blur(1.3px);
  transform: scale(1.03);
}

.cinema-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  z-index: 1;
}

/* ══════════════════════════════════
   CARDÁPIO — mobile base
   ══════════════════════════════════ */

.cardapio-tabs {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  padding-bottom: 6px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-snap-type: x proximity;
  cursor: grab;
  user-select: none;
}

.cardapio-tabs.is-dragging {
  cursor: grabbing;
}

.cardapio-tabs::-webkit-scrollbar {
  height: 3px;
}

.cardapio-tabs::-webkit-scrollbar-track {
  background: transparent;
}

.cardapio-tabs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.cardapio-tab {
  flex-shrink: 0;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
  scroll-snap-align: start;
}

.cardapio-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cardapio-tab.is-active {
  background: linear-gradient(180deg, #db1f1f, #9d1111);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 24px rgba(198, 27, 27, 0.3);
}

/* Loading state */
.cardapio-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cardapio-loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Panels */
.cardapio-panel {
  display: none;
  margin-top: 20px;
}

.cardapio-panel.is-active {
  display: block;
}

/* Featured item — stacked on mobile */
.cardapio-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(198, 27, 27, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.03);
}

.cardapio-featured-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.cardapio-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.cardapio-featured:hover .cardapio-featured-photo img {
  transform: scale(1.05);
}

.cardapio-featured-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.cardapio-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #db1f1f, #a80f0f);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.cardapio-featured-info h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.cardapio-featured-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.cardapio-sidecar {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  margin: -4px 0 20px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.cardapio-sidecar-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
}

.cardapio-sidecar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cardapio-sidecar-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.cardapio-sidecar-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.cardapio-sidecar-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.cardapio-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.cardapio-price small {
  font-size: 0.8em;
  color: var(--muted);
}

.cardapio-price-featured {
  font-size: 1.6rem;
}

/* Menu grid — single column on mobile */
.cardapio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cardapio-item {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease, border-color 300ms ease;
}

.cardapio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.cardapio-item-header {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.cardapio-item-header h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.cardapio-dots {
  flex: 1;
  min-width: 12px;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.12);
  margin-bottom: 4px;
}

.cardapio-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ══════════════════════════════════
   HORÁRIO — stacked on mobile
   ══════════════════════════════════ */

.horario-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

.horario-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.horario-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.horario-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(198, 27, 27, 0.18), transparent 40%),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(198, 27, 27, 0.2);
}

.horario-time {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 8vw, 2.4rem);
  letter-spacing: 0.06em;
  line-height: 1;
}

.horario-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 600;
  font-size: 0.9rem;
}

.horario-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: center;
}

.horario-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
  transition: background 300ms ease;
}

.horario-status.is-open .horario-dot {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.horario-status.is-closed .horario-dot {
  background: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ══════════════════════════════════
   CONTACT — stacked on mobile
   ══════════════════════════════════ */

.contact-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.contact-card strong {
  font-size: 1rem;
  line-height: 1.4;
}

.contact-card-action {
  align-content: start;
  justify-items: start;
  background:
    radial-gradient(circle at top right, rgba(198, 27, 27, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.contact-card-map {
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(198, 27, 27, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.contact-map-frame {
  position: relative;
  margin: 6px 0 2px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #120d0d;
  aspect-ratio: 16 / 11;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card-map .button {
  justify-self: start;
}

/* ══════════════════════════════════
   FOOTER — stacked on mobile
   ══════════════════════════════════ */

.footer {
  padding: 24px 18px 18px;
  border-radius: 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo-img {
  height: auto;
  width: 140px;
  max-width: 160px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-title {
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 700;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

/* ══════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════ */

/* ══════════════════════════════════
   ZOOM PROTECTION
   Constrain elements at high zoom levels
   ══════════════════════════════════ */

.signal-item,
.horario-card,
.contact-card,
.cardapio-item,
.manifesto-panel {
  max-width: 600px;
}

.cardapio-featured {
  max-width: 900px;
}

.hero-meta,
.signal-strip,
.horario-layout,
.cardapio-grid,
.manifesto-layout,
.contact-panel,
.footer-grid {
  max-width: 100%;
}

.section-index {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-stage {
  max-width: 100%;
  overflow: hidden;
}

/* ══════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════ */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════════
   ▲ SMALL TABLET — min-width: 621px
   ══════════════════════════════════════════════════ */

@media (min-width: 621px) {
  .site-shell {
    width: calc(100% - 24px);
  }

  .topbar {
    padding: 12px 16px;
  }

  .topbar-logo {
    height: 40px;
    max-width: 140px;
  }

  .hero {
    padding: 28px;
    border-radius: 32px;
    gap: 28px;
  }

  .hero::before {
    inset: 12px;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: clamp(3rem, 8vw, 4.4rem);
    gap: 5px;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.82;
  }

  .button {
    min-height: 52px;
    padding: 0 22px;
    font-size: 0.92rem;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .meta-card {
    min-height: 110px;
  }

  .hero-stage {
    min-height: clamp(420px, 62vw, 600px);
  }

  .brand-plaque {
    left: 16px;
    width: calc(100% - 32px);
    max-width: 300px;
    transform: none;
  }

  .hero-frame-tall {
    top: 210px;
    right: 0;
    width: min(100%, 520px);
    height: 270px;
    border-radius: 26px 100px 26px 26px;
  }

  .hero-frame-wide {
    width: min(65%, 320px);
    height: 170px;
  }

  .hero-frame-round {
    right: 12px;
    width: 120px;
  }

  .signal-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .section {
    padding: 28px;
    border-radius: 28px;
  }

  .section-heading {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
  }

  .section-index {
    font-size: 2.8rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    max-width: 18ch;
  }

  .manifesto-panel h3,
  .cinema-overlay h3,
  .composition-card h3,
  .moment-card h3 {
    font-size: 1.8rem;
  }

  .cinema-stage {
    min-height: 420px;
  }

  .cinema-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 22px;
  }

  .cardapio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .cardapio-item {
    padding: 18px;
    border-radius: 18px;
  }

  .cardapio-sidecar {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .cardapio-sidecar-photo {
    aspect-ratio: 4 / 3;
  }

  .cardapio-sidecar-copy h3 {
    font-size: 1.8rem;
  }

  .cardapio-item-header h4 {
    font-size: 1.18rem;
  }

  .horario-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .horario-status {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ══════════════════════════════════════════════════
   ▲ LARGE TABLET — min-width: 861px
   Nav switch: hamburger → inline nav
   ══════════════════════════════════════════════════ */

@media (min-width: 861px) {
  .site-shell {
    width: calc(100% - 32px);
  }

  .topbar {
    padding: 14px 20px;
    border-radius: 0 0 22px 22px;
  }

  .topbar-logo {
    height: 42px;
    max-width: 150px;
  }

  .topbar .eyebrow {
    display: block;
    flex: 1;
    margin-left: 8px;
  }

  /* Show inline nav, hide hamburger */
  .topbar-nav {
    display: flex;
    position: static;
    inset: auto;
    z-index: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin-left: auto;
    padding: 0;
    overflow: visible;
    text-align: left;
    background: none;
    backdrop-filter: none;
  }

  .topbar-nav a {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(247, 240, 232, 0.22);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--muted);
  }

  .topbar-nav a:hover {
    color: #fff;
    border-color: rgba(247, 240, 232, 0.6);
  }

  .topbar-toggle {
    display: none;
  }

  /* Hero → 2 columns */
  .hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 34px;
    padding: 36px;
    min-height: clamp(600px, 72svh, 760px);
    border-radius: 38px;
  }

  .hero::before {
    inset: 14px;
    border-radius: 28px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.5vw, 5.6rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    gap: 6px;
  }

  .hero-lead {
    width: min(92%, 600px);
    font-size: 1.02rem;
  }

  .hero-stage {
    min-height: clamp(470px, 48vw, 590px);
  }

  .brand-plaque {
    top: 14px;
    left: 36px;
    width: min(34%, 210px);
    max-width: 210px;
    transform: none;
  }

  .year-pill {
    top: 16px;
    right: 14px;
    padding: 16px 12px;
    font-size: 1.32rem;
  }

  .hero-frame-tall {
    top: 82px;
    right: 10px;
    width: min(84%, 470px);
    height: clamp(280px, 31vw, 350px);
    border-radius: 28px 108px 28px 28px;
  }

  .hero-frame-wide {
    left: 30px;
    bottom: 10px;
    width: min(48%, 248px);
    height: clamp(128px, 14vw, 162px);
    border-radius: 28px;
  }

  .hero-frame-round {
    right: 16px;
    bottom: -4px;
    width: clamp(98px, 11vw, 126px);
  }

  .signal-strip,
  .section,
  .footer {
    margin-top: 22px;
  }

  .section {
    padding: 32px;
    border-radius: 32px;
  }

  .cinema-stage {
    min-height: 500px;
    border-radius: 32px;
  }

  .cinema-overlay {
    left: 30px;
    right: auto;
    bottom: 30px;
    width: min(440px, calc(100% - 60px));
    padding: 24px;
    border-radius: 26px;
  }

  /* Cardápio featured → 2 columns */
  .cardapio-featured {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
  }

  .cardapio-featured-info h3 {
    font-size: 2.2rem;
  }

  .cardapio-price-featured {
    font-size: 1.7rem;
  }

  .cardapio-sidecar {
    width: min(100%, 900px);
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
  }

  .contact-copy {
    padding-right: 12px;
  }

  .footer {
    padding: 32px 24px 20px;
    border-radius: 26px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 28px;
  }
}

/* ══════════════════════════════════════════════════
   ▲ DESKTOP — min-width: 1181px
   ══════════════════════════════════════════════════ */

@media (min-width: 1181px) {
  :root {
    --shadow: 0 38px 100px rgba(0, 0, 0, 0.5);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
  }

  .topbar {
    padding: 16px 24px;
  }

  .topbar-logo {
    height: 46px;
    max-width: 160px;
  }

  .topbar .eyebrow {
    margin-left: 12px;
  }

  .hero {
    padding: 42px;
    border-radius: 44px;
    min-height: clamp(680px, 80svh, 900px);
  }

  .hero::before {
    border-radius: 32px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 7vw, 6.8rem);
  }

  .hero-lead {
    font-size: 1.05rem;
    line-height: 1.88;
  }

  .button {
    min-height: 54px;
    padding: 0 24px;
  }

  .meta-card {
    min-height: 120px;
    padding: 18px;
  }

  .hero-stage {
    min-height: clamp(560px, 48vw, 720px);
  }

  .brand-plaque {
    top: 18px;
    left: 40px;
    width: min(34%, 220px);
    max-width: 220px;
    transform: none;
  }

  .year-pill {
    top: 18px;
    right: 18px;
    padding: 18px 12px;
    font-size: 1.42rem;
  }

  .hero-frame-tall {
    top: 88px;
    right: 14px;
    width: min(82%, 520px);
    height: clamp(320px, 29vw, 390px);
    border-radius: 34px 148px 34px 34px;
  }

  .hero-frame-wide {
    left: 28px;
    bottom: 12px;
    width: min(47%, 280px);
    height: clamp(150px, 12.5vw, 184px);
    border-radius: 30px;
  }

  .hero-frame-round {
    right: 18px;
    bottom: -2px;
    width: clamp(112px, 9vw, 150px);
  }

  .signal-strip,
  .section,
  .footer {
    margin-top: 24px;
  }

  .signal-item {
    min-height: 146px;
    padding: 22px;
    border-radius: 24px;
  }

  .signal-item p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .section {
    padding: 34px;
    border-radius: 34px;
  }

  .section-index {
    font-size: 3rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    max-width: 16ch;
  }

  /* Manifesto → 3 columns */
  .manifesto-layout {
    grid-template-columns: minmax(240px, 0.62fr) minmax(0, 0.9fr) minmax(260px, 0.68fr);
    gap: 20px;
    margin-top: 30px;
  }

  .manifesto-number {
    min-height: 320px;
    padding: 24px;
    border-radius: 28px;
  }

  .manifesto-count {
    font-size: clamp(8rem, 20vw, 13rem);
  }

  .manifesto-copy,
  .manifesto-panel,
  .contact-card {
    padding: 24px;
    border-radius: 28px;
  }

  .manifesto-panel h3,
  .cinema-overlay h3,
  .composition-card h3,
  .moment-card h3 {
    font-size: 2rem;
  }

  .manifesto-number p,
  .manifesto-copy p,
  .manifesto-panel p,
  .cinema-overlay p,
  .composition-card p,
  .moment-card p,
  .contact-copy p,
  .contact-card p {
    font-size: 0.95rem;
    line-height: 1.82;
  }

  .manifesto-tags span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .cinema-stage {
    min-height: 560px;
    border-radius: 34px;
  }

  .cinema-overlay {
    left: 34px;
    bottom: 34px;
    width: min(460px, calc(100% - 68px));
    border-radius: 28px;
  }

  .cardapio-featured {
    gap: 28px;
    padding: 24px;
    border-radius: 28px;
  }

  .cardapio-featured-info h3 {
    font-size: 2.4rem;
  }

  .cardapio-price-featured {
    font-size: 1.8rem;
  }

  .cardapio-sidecar {
    width: min(100%, 900px);
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .cardapio-item {
    padding: 20px;
    border-radius: 20px;
  }

  .cardapio-item-header h4 {
    font-size: 1.24rem;
  }

  .cardapio-tab {
    padding: 12px 22px;
    font-size: 0.88rem;
  }

  .horario-card {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .horario-time {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .contact-panel {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.88fr);
  }

  .contact-card {
    padding: 22px;
  }

  .footer {
    padding: 36px 28px 22px;
    border-radius: 28px;
  }

  .footer-logo-img {
    width: 160px;
  }
}
