/* ============================================================
   AUMMA — Pitch Deck Web
   Stylesheet único. Edite tokens no :root para mudar o tema.
   ============================================================ */

/* ==================== 1. DESIGN TOKENS ==================== */
:root {
  /* Cores base */
  --c-bg: #EAE9E2;
  --c-bg-elev: #F2F1EB;
  --c-ink: #1A1A1A;
  --c-ink-soft: #4A4A4A;
  --c-ink-mute: #6A6A6A;
  --c-line: rgba(26, 26, 26, 0.12);
  --c-line-strong: rgba(26, 26, 26, 0.25);

  /* Gradient acento (teal → azul → roxo) */
  --g-teal: #5EE6C4;
  --g-blue: #7B9CFF;
  --g-purple: #B57BFF;
  --gradient: linear-gradient(135deg, var(--g-teal) 0%, var(--g-blue) 50%, var(--g-purple) 100%);
  --gradient-soft: linear-gradient(135deg,
    color-mix(in srgb, var(--g-teal) 35%, transparent),
    color-mix(in srgb, var(--g-blue) 35%, transparent),
    color-mix(in srgb, var(--g-purple) 35%, transparent));

  /* Tipografia */
  --f-serif: 'Fraunces', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* === Editorial type scale (6 níveis, ratio ≥1.4×) === */
  --fs-display: clamp(5rem, 4rem + 10vw, 14rem);   /* só hero AUMMA + contato */
  --fs-h1: clamp(2.5rem, 1.75rem + 4vw, 5rem);     /* section titles */
  --fs-h2: clamp(1.75rem, 1.25rem + 2vw, 3rem);    /* sub-section / spread title */
  --fs-h3: clamp(1.25rem, 1rem + 1vw, 1.75rem);    /* pilares, eventos */
  --fs-body-lg: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); /* leads, statements */
  --fs-body: clamp(1.0625rem, 0.95rem + 0.4vw, 1.25rem); /* body principal — sobe pra 17–20px */
  --fs-caption: clamp(0.75rem, 0.7rem + 0.15vw, 0.875rem); /* kicker, meta */

  /* Aliases legados (manter compatibilidade — mesmos valores que tokens novos) */
  --fs-xs: var(--fs-caption);
  --fs-sm: var(--fs-caption);
  --fs-base: var(--fs-body);
  --fs-lg: var(--fs-body-lg);
  --fs-hero: var(--fs-display);

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 8rem;   /* aumentado de 6rem → 8rem pra mais respiro em sections */

  /* Layout */
  --nav-h: 64px;
  --section-pad-x: clamp(1.25rem, 2vw + 1rem, 4.5rem);
  --section-pad-y: clamp(4.5rem, 6vh + 3rem, 7rem);
  --content-max: 1440px;

  /* === Editorial: sharp corners por padrão === */
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-pill: 999px;  /* só CTA WhatsApp */

  /* Easing */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-in-out: cubic-bezier(0.6, 0, 0.2, 1);
  --t-fast: 180ms;
  --t-base: 320ms;
  --t-slow: 600ms;
}

/* ==================== 2. RESET / BASE ==================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  scroll-snap-type: y mandatory;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--c-ink);
  background-color: var(--c-bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 4px 4px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out), opacity var(--t-fast) var(--ease-out);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* === A11Y: Focus visible para navegação por teclado === */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--g-blue);
  outline-offset: 3px;
  border-radius: 2px;
}
.site-nav__cta:focus-visible,
.floating-cta:focus-visible {
  outline-offset: 4px;
}
.progress-dots a:focus-visible {
  outline: 2px solid var(--c-ink);
  outline-offset: 4px;
}
.lightbox__close:focus-visible {
  outline-color: #fff;
}

/* === A11Y: Skip link para screen readers / keyboard === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === A11Y: Hit-area dos progress dots (visual 8px, área 24px) === */
.progress-dots a {
  position: relative;
}
.progress-dots a::before {
  content: '';
  position: absolute;
  inset: -8px;
  /* expande área tap pra 24×24px sem alterar visual */
}

ul { padding-left: 1.25em; }

::selection { background: var(--g-blue); color: #fff; }

/* ==================== 3. TIPOGRAFIA UTILITÁRIA ==================== */
/* Baseline: text-balance em headings, text-pretty em body */
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

.section-title {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-6);
  text-wrap: balance;
}
.section-title--center { text-align: center; }

.kicker {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin: 0 0 var(--s-3);
}
.kicker--centered { text-align: center; }

.lead {
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--c-ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

/* Tabular nums pra data/números */
.stat__value,
.cal-card__day,
.cal-card__day-tba,
.event-card__when,
.tl-event__meta,
.event__date,
.eyebrow,
.editorial-num,
time {
  font-variant-numeric: tabular-nums;
}

/* === EDITORIAL HELPERS === */

/* Eyebrow: kicker numerado tipo revista (01 / ORIGEM) */
.eyebrow {
  font-family: var(--f-sans);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  display: inline-flex;
  align-items: baseline;
  gap: 0.75em;
  margin: 0 0 var(--s-4);
}
.eyebrow__num {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 1.15em;
  letter-spacing: 0;
  color: var(--c-ink);
}
.eyebrow__sep {
  width: 1.5em;
  height: 1px;
  background: var(--c-line-strong);
  display: inline-block;
  align-self: center;
}

/* Numeração editorial gigante (pilares, parcerias) */
.editorial-num {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  display: block;
}

/* Linha fina divisora */
.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-line-strong);
  border: 0;
  margin: var(--s-4) 0;
}
.rule--short { width: 3rem; }
.rule--accent { background: var(--c-ink); }

/* Caps tracked */
.cap {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--fs-caption);
  font-weight: 600;
}

.dot-sep { opacity: 0.45; margin: 0 var(--s-1); }

.logo-wordmark {
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: normal;
  font-stretch: 75%;
  letter-spacing: 0.005em;
  line-height: 0.85;
  margin: 0;
  color: var(--c-ink);
}
.logo-wordmark--xl { font-size: var(--fs-hero); }
.logo-wordmark--lg { font-size: clamp(3.5rem, 2rem + 8vw, 9rem); }

/* Quando o logo é renderizado como <img> (SVG do designer) */
img.logo-wordmark {
  display: block;
  height: auto;
  max-width: 100%;
}
img.logo-wordmark--xl { width: clamp(280px, 64vw, 920px); }
img.logo-wordmark--lg { width: clamp(220px, 42vw, 640px); }

/* ==================== 4. TOP NAV ==================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: var(--s-6);
  padding: 0 clamp(1rem, 2vw, 2rem);
  padding-left: max(clamp(1rem, 2vw, 2rem), env(safe-area-inset-left));
  padding-right: max(clamp(1rem, 2vw, 2rem), env(safe-area-inset-right));
  height: var(--nav-h);
  background: color-mix(in srgb, var(--c-bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--c-line);
}

.site-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-nav__logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-left: -8px;
}

.site-nav__links {
  display: flex;
  gap: clamp(0.75rem, 1.3vw, 1.5rem);
  margin-left: auto;
  font-size: 0.78rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.site-nav__links a {
  position: relative;
  padding: var(--s-2) 0;
  color: var(--c-ink-soft);
  font-weight: 500;
}
.site-nav__links a:hover { color: var(--c-ink); }
.site-nav__links a.is-active {
  color: var(--c-ink);
}
.site-nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-5);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-bg);
  background: var(--c-ink);
  border-radius: var(--radius-pill);
}
.site-nav__cta:hover { transform: translateY(-1px); opacity: 0.92; }

.site-nav__menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.site-nav__menu-toggle span {
  display: block;
  height: 2px;
  background: var(--c-ink);
  border-radius: 1px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* ==================== 5. SIDE PROGRESS DOTS ==================== */
.progress-dots {
  position: fixed;
  right: max(clamp(0.5rem, 1.5vw, 1.5rem), env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.progress-dots a {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-line-strong);
  transition: background var(--t-fast), transform var(--t-fast);
}
.progress-dots a:hover { transform: scale(1.4); }
.progress-dots a.is-active {
  background: var(--c-ink);
  transform: scale(1.4);
}

/* ==================== 6. FLOATING CTA ==================== */
.floating-cta {
  position: fixed;
  right: max(clamp(1rem, 3vw, 2rem), env(safe-area-inset-right));
  bottom: max(clamp(1rem, 3vw, 2rem), env(safe-area-inset-bottom));
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: #fff;
  background: #25D366;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

/* ==================== 7. SNAP DECK LAYOUT ==================== */
.deck {
  min-height: 100vh;
}

.snap-section {
  position: relative;
  scroll-snap-align: end;
  scroll-snap-stop: always;
  height: 100vh;
  min-height: 100vh;
  padding: calc(var(--nav-h) + var(--s-7)) var(--section-pad-x) var(--s-7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

@supports (height: 100dvh) {
  .snap-section { height: 100dvh; min-height: 100dvh; }
}

.snap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent calc(100% - 1px),
    var(--c-line) 100%);
}

.snap-section > * { position: relative; z-index: 1; }

.section-head { margin-bottom: var(--s-7); }

/* ==================== 8. SECTION — HERO (editorial / ambient aurora) ==================== */
.section--hero {
  padding: var(--nav-h) var(--section-pad-x) var(--s-6);
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "symbol"
    "center"
    "footer";
  gap: var(--s-4);
}

.hero__center {
  grid-area: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  position: relative;
  z-index: 1;
}
.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
  text-align: center;
}

/* === Aurora ambient: 3 radial blurs sem forma retangular === */
.hero__aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero__aura-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  mix-blend-mode: multiply;
  animation-play-state: paused;
}
#hero.is-in-view .hero__aura-blob { animation-play-state: running; }
.hero__aura-blob--teal {
  width: 60vw; height: 60vw;
  top: -15vw; left: -10vw;
  background: var(--g-teal);
  animation: hero-drift-1 18s ease-in-out infinite alternate;
}
.hero__aura-blob--blue {
  width: 55vw; height: 55vw;
  top: 20vh; right: -10vw;
  background: var(--g-blue);
  opacity: 0.5;
  animation: hero-drift-2 22s ease-in-out infinite alternate;
}
.hero__aura-blob--purple {
  width: 50vw; height: 50vw;
  bottom: -15vw; left: 25vw;
  background: var(--g-purple);
  opacity: 0.45;
  animation: hero-drift-3 26s ease-in-out infinite alternate;
}
@keyframes hero-drift-1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(8vw, 6vh); }
}
@keyframes hero-drift-2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-6vw, 4vh); }
}
@keyframes hero-drift-3 {
  from { transform: translate(0, 0); }
  to   { transform: translate(4vw, -6vh); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__aura-blob { animation: none; }
}

/* === Composição editorial === */
.hero__symbol {
  grid-area: symbol;
  justify-self: center;
  align-self: start;
  position: relative;
  z-index: 1;
  padding-top: var(--s-4);
}
.hero__symbol img {
  width: clamp(44px, 5vw, 72px);
  height: auto;
  opacity: 0.7;
  color: var(--c-ink);
}

.hero__wordmark {
  grid-area: wordmark;
  justify-self: center;
  align-self: center;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero__wordmark .logo-wordmark {
  width: clamp(240px, 55vw, 820px);
  height: auto;
}

.hero__footer {
  grid-area: footer;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  text-align: center;
}
.hero__footer .rule {
  margin: 0;
  width: 100%;
}
.hero__date {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(0.85rem, 0.7rem + 0.3vw, 1rem);
  letter-spacing: 0.24em;
  color: var(--c-ink-soft);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}
.hero__local {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  text-align: center;
  align-items: center;
}
.hero__local-name {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 1.25rem + 3vw, 4.25rem);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--c-ink);
}
.hero__local-meta {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(0.7rem, 0.6rem + 0.3vw, 0.85rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}

/* ==================== 9a. SECTION — QUEM SOMOS (editorial 2-col, foto edge-to-edge) ==================== */
.section--quem-somos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-right: 0;  /* foto vai edge-to-edge */
}
.quem-somos__text {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  max-width: 52ch;
  padding-left: clamp(1.5rem, 5vw, 5rem);
  padding-right: var(--s-5);
  justify-self: center;
}
.quem-somos__text .section-title {
  margin-bottom: var(--s-4);
}
.quem-somos__text .lead {
  font-size: var(--fs-body-lg);
  color: var(--c-ink);
  font-style: italic;
  margin: 0;
  max-width: none;
}
.quem-somos__text p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.55;
}
.quem-somos__text .text-ornament {
  width: 56px;
  height: auto;
  margin-top: var(--s-5);
  opacity: 0.35;
}
.quem-somos__media {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--nav-h));
  align-self: stretch;
  overflow: hidden;
}
.quem-somos__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==================== 9. SECTION — POSICIONAMENTO (texto + galeria lateral) ==================== */
.section--diferenciacao {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  height: 100dvh;
  max-height: 100dvh;
}
.diff__text {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-width: 50ch;
  font-size: var(--fs-body);
  padding-left: clamp(1.5rem, 5vw, 5rem);
  justify-self: center;
}
.diff__text p { margin: 0; line-height: 1.55; }
.diff__text .lead {
  font-size: var(--fs-body-lg);
}
.diff__mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--nav-h) - var(--s-8));
  min-height: 0;
  overflow: hidden;
}
.diff__mosaic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

/* ==================== 9b. SECTION — TWO COLUMNS (Quem Somos) ==================== */
.section--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.section--two-col .col--text {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  max-width: 56ch;
  font-size: var(--fs-lg);
}
.section--two-col .col--text p { margin: 0; }

.section--two-col .col--media {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  max-height: calc(100vh - var(--nav-h) - var(--s-9));
  align-self: center;
  justify-self: end;
  position: relative;
}
.section--two-col .col--media-portrait {
  aspect-ratio: 4 / 5;
  max-width: 480px;
}
.section--two-col .col--media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.text-ornament {
  width: 80px;
  height: auto;
  margin-top: var(--s-5);
  opacity: 0.4;
}

/* ==================== 10. SECTION — POR QUE EXISTIMOS (editorial, foto-first) ==================== */
.section--por-que {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: var(--s-4);
  height: 100dvh;
  max-height: 100dvh;
}
.por-que__head {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}
.por-que__head .eyebrow {
  justify-content: center;
}
.por-que__head .section-title {
  margin-bottom: var(--s-3);
}
.por-que__head .lead {
  margin: 0 auto;
  max-width: 62ch;
  font-size: var(--fs-body-lg);
  text-wrap: pretty;
}

.por-que__gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.por-que__gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.por-que__gallery img:nth-child(1) {
  grid-row: 1 / span 2;
}

/* ==================== 11. SECTION — ARTISTAS (editorial portrait sharp) ==================== */
.section--artistas {
  align-items: center;
  text-align: center;
}
.section--artistas .section-head {
  text-align: center;
  margin-bottom: var(--s-5);
}
.section--artistas .section-title { margin-bottom: 0; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 6px;
  row-gap: var(--s-5);
  width: 100%;
  max-width: 1400px;
}

.artist-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--s-3);
  text-align: left;
  transition: transform var(--t-fast) var(--ease-out);
}
.artist-card:hover { transform: translateY(-3px); }

.artist-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gradient-soft);
}
.artist-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-card__name {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.8rem + 0.5vw, 1.25rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.artist-card__label {
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--c-ink);
  color: var(--c-ink);
  align-self: flex-start;
}

/* ==================== 12. MOSAIC HELPERS ==================== */
.mosaic { display: grid; gap: var(--s-2); width: 100%; height: 100%; }
.mosaic--2x2 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ==================== 13. SECTION — GALERIA (full-bleed) ==================== */
.section--galeria {
  align-items: stretch;
  justify-content: stretch;
  padding-left: 0;
  padding-right: 0;
  padding-top: var(--nav-h);
  padding-bottom: 0;
}
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
  height: 100%;
}
.galeria__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  cursor: zoom-in;
  transition: transform var(--t-fast) var(--ease-out);
}
.galeria__grid img:hover { transform: scale(1.02); }

/* ==================== 14. SECTION — PILARES (editorial numerada) ==================== */
.section--pilares {
  align-items: center;
}
.pilares__head {
  text-align: center;
  margin-bottom: var(--s-7);
}
.pilares__head .eyebrow { justify-content: center; }
.pilares__head .section-title { margin: 0; }

.pilares__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
  width: 100%;
  max-width: 1200px;
}
.pilar {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.pilar .editorial-num {
  font-size: clamp(2.25rem, 1.5rem + 3vw, 4.5rem);
  margin-bottom: var(--s-1);
}
.pilar .rule {
  margin: 0 0 var(--s-2);
  width: 2.5rem;
  background: var(--c-ink);
}
.pilar__name {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem);
  letter-spacing: -0.005em;
  text-transform: none;
  line-height: 1.15;
  margin: 0;
  color: var(--c-ink);
  display: inline-block;
  background-image: linear-gradient(110deg,
    rgba(94, 230, 196, 0.55) 0%,
    rgba(123, 156, 255, 0.55) 50%,
    rgba(181, 123, 255, 0.55) 100%);
  background-repeat: no-repeat;
  background-size: 100% 38%;
  background-position: 0 92%;
  padding: 0 0.15em 0.05em;
  margin-left: -0.15em;
}
.pilar p {
  margin: var(--s-2) 0 0;
  font-size: var(--fs-body);
  color: var(--c-ink);
  line-height: 1.55;
  max-width: 50ch;
}

/* ==================== 15. SECTION — TIMELINE (editorial sofisticada) ==================== */
.section--timeline {
  align-items: center;
  justify-content: center;
}
.section--timeline .section-title {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.875rem);
  margin: 0;
  letter-spacing: 0.04em;
}
.timeline-head {
  text-align: center;
  margin-bottom: var(--s-5);
}
.timeline-head .eyebrow { justify-content: center; }

.timeline-editorial {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: auto auto;
  column-gap: clamp(0.15rem, 0.3vw, 0.5rem);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.tl-event {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  position: relative;
}
.tl-event--top {
  padding-bottom: 14px;
  align-self: end;
}
.tl-event--bottom {
  padding-top: 14px;
  align-self: start;
}

/* Posicionamento explícito alternado (4 top + 3 bottom em 7 cols) */
.timeline-editorial > .tl-event:nth-child(1) { grid-column: 1; grid-row: 1; }
.timeline-editorial > .tl-event:nth-child(2) { grid-column: 2; grid-row: 2; }
.timeline-editorial > .tl-event:nth-child(3) { grid-column: 3; grid-row: 1; }
.timeline-editorial > .tl-event:nth-child(4) { grid-column: 4; grid-row: 2; }
.timeline-editorial > .tl-event:nth-child(5) { grid-column: 5; grid-row: 1; }
.timeline-editorial > .tl-event:nth-child(6) { grid-column: 6; grid-row: 2; }
.timeline-editorial > .tl-event:nth-child(7) { grid-column: 7; grid-row: 1; }

/* Foto — maior, com ênfase */
.tl-event__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gradient-soft);
  cursor: zoom-in;
  transition: transform var(--t-fast) var(--ease-out);
}
.tl-event__photo:hover { transform: scale(1.02); }
.tl-event__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto */
.tl-event__name {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(0.85rem, 0.7rem + 0.35vw, 1rem);
  margin: 6px 0 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.tl-event__meta {
  font-size: clamp(0.65rem, 0.58rem + 0.15vw, 0.75rem);
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  line-height: 1.35;
}

/* Bottom cards: ordem reversa visual (foto embaixo) */
.tl-event--bottom .tl-event__photo { order: 3; margin-top: 6px; }
.tl-event--bottom .tl-event__name { order: 1; margin-top: 0; }
.tl-event--bottom .tl-event__meta { order: 2; }

/* Setinhas — discretas, adjacentes à linha */
.tl-event--top::after,
.tl-event--bottom::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
}
.tl-event--top::after {
  bottom: 8px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--c-ink);
}
.tl-event--bottom::before {
  top: 8px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid var(--c-ink);
}

/* Linha horizontal central */
.tl-axis {
  position: absolute;
  top: 50%;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 1.5px;
  background: var(--c-ink);
  pointer-events: none;
  z-index: 0;
  transform: translateY(-50%);
}

/* ==================== 16. SECTION — PRÓXIMO EVENTO (editorial) ==================== */
.section--proximo {
  justify-content: flex-start;
  gap: var(--s-4);
  height: 100dvh;
  max-height: 100dvh;
}
.proximo__head {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.proximo__head .eyebrow { margin: 0; }
.proximo__head .eyebrow strong {
  color: var(--c-ink);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.proximo__title {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(1.5rem, 1rem + 1.8vw, 2.5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
.proximo__label {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--c-ink);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.45em;
  vertical-align: middle;
  margin-right: 0.5em;
  font-weight: 700;
}

.local-editorial {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  flex: 1;
  min-height: 0;
}
.local-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
  flex: 1 1 0;
  min-height: 0;
}
.local-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-2);
  max-width: 52ch;
}
.local-text__h {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(1.125rem, 0.9rem + 0.7vw, 1.5rem);
  margin: 0;
  letter-spacing: -0.005em;
}
.local-text p {
  margin: 0;
  font-size: clamp(0.85rem, 0.75rem + 0.3vw, 1rem);
  line-height: 1.55;
  color: var(--c-ink);
}
.local-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.local-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ==================== 17. SECTION — MOVIMENTO (3 rows editorial) ==================== */
.section--movimento {
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--s-3);
  height: 100dvh;
  max-height: 100dvh;
}
.mov-header {
  text-align: center;
  margin-bottom: var(--s-2);
}
.mov-header .eyebrow { justify-content: center; }

.mov-editorial {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: var(--s-3);
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.mov-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: center;
  min-height: 0;
}
.mov-row--reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.mov-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-2);
  max-width: 46ch;
  font-size: var(--fs-body);
  line-height: 1.55;
  justify-self: center;
}
.mov-row:not(.mov-row--reverse) .mov-text {
  padding-left: clamp(1.5rem, 5vw, 5rem);
}
.mov-row--reverse .mov-text {
  padding-right: clamp(1.5rem, 5vw, 5rem);
}
.mov-text p { margin: 0; }
.mov-text__h {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: var(--fs-h3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 var(--s-1);
  line-height: 1.15;
}

.mov-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
}
.mov-photo--double {
  display: flex;
  gap: var(--s-2);
  height: 100%;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.mov-photo--double img {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.mov-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Movimento — object-position fine-tuning per photo */
.mov-photo img[data-photo-slot="mov-1"] { object-position: center 75%; }
.mov-photo img[data-photo-slot="mov-2"] { object-position: center 80%; }
.mov-photo img[data-photo-slot="mov-3"] { object-position: center 70%; }
.mov-photo img[data-photo-slot="mov-4"] { object-position: center center; }
.mov-photo img[data-photo-slot="mov-5"] { object-position: center 65%; }
.mov-photo img[data-photo-slot="mov-6"] { object-position: center 65%; }

/* ==================== 18. SECTION — PÚBLICO ==================== */
.section--publico {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
  justify-content: center;
}
.publico__text {
  max-width: 56ch;
  align-self: center;
  justify-self: center;
  padding-left: clamp(1.5rem, 5vw, 5rem);
}
.publico__text p {
  font-size: clamp(1rem, 0.85rem + 0.4vw, 1.2rem);
  margin: 0 0 var(--s-5);
  line-height: 1.6;
}

.stats {
  display: flex;
  flex-direction: column;
  margin: var(--s-5) 0 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}
.stat {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--c-line);
}
.stat__label {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin: 0;
}
.stat__value {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 1rem + 1.5vw, 2.25rem);
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--c-ink);
  margin: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.stat__num {
  font-style: normal;
  font-weight: 500;
}
.stat__value em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-ink-soft);
}
.stat__sep { opacity: 0.35; font-weight: 300; margin: 0 0.1em; }
.stat__label {
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-ink-soft);
  font-weight: 500;
}
.stats .rule { margin: var(--s-2) 0; max-width: 3.5rem; }

.publico__mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--nav-h) - var(--s-8));
  justify-self: stretch;
  align-self: center;
}
.publico__mosaic img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  cursor: zoom-in;
}

/* ==================== 19. SECTION — CALENDÁRIO 2026 (subgrid symmetric) ==================== */
.section--calendario {
  align-items: center;
  justify-content: center;
}
.cal-head {
  text-align: center;
  margin-bottom: var(--s-6);
}
.cal-head .eyebrow { justify-content: center; }
.cal-head .section-title { margin: 0; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 0;
  width: 100%;
  max-width: 1500px;
  border-top: 1px solid var(--c-line-strong);
  border-bottom: 1px solid var(--c-line-strong);
}

.cal-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / span 6;
  padding: var(--s-5) var(--s-3) var(--s-4);
  border-left: 1px solid var(--c-line);
  position: relative;
  transition: background var(--t-fast);
  gap: var(--s-3);
}
.cal-card:first-child { border-left: 0; }
.cal-card:hover { background: rgba(0,0,0,0.02); }

/* Row 1 — DATE */
.cal-card__date {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cal-card__day {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}
.cal-card__date--tba .cal-card__day {
  color: var(--c-ink-mute);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
}
.cal-card__month {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}

/* Row 2 — BADGE slot (always present, may be empty) */
.cal-card__badge-row {
  min-height: 22px;
}
.cal-card__badge {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  background: var(--c-ink);
  color: var(--c-bg);
  text-transform: uppercase;
}

/* Row 3 — TITLE */
.cal-card__title {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.25rem);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  align-self: end;
}
.cal-card__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.005em;
}

/* Row 4 — first detail (Atrações), grows */
/* Row 5 — Local */
/* Row 6 — Público */
.cal-card__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-2);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--c-ink);
}
.cal-card__label {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}
.cal-card__val {
  font-family: var(--f-sans);
  font-weight: 500;
  color: var(--c-ink);
}
.cal-card__val--soft {
  color: var(--c-ink-mute);
  font-style: italic;
  font-weight: 400;
}
.cal-card__val--num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}

/* BIG MOMENT highlights — sharp accent without changing layout */
.cal-card--big {
  background: var(--c-bg-elev);
}
.cal-card--big:hover { background: rgba(0,0,0,0.03); }
.cal-card--big .cal-card__day { color: var(--c-ink); }

/* ==================== 20. SECTION — PARCERIAS (editorial numerada) ==================== */
.section--parcerias {
  align-items: center;
  text-align: left;
  position: relative;
  justify-content: center;
}
.parcerias__inner {
  max-width: 1000px;
  width: 100%;
}
.parcerias__inner .section-title {
  margin-bottom: var(--s-4);
}
.parcerias__inner .lead {
  font-size: var(--fs-body-lg);
  max-width: 56ch;
  margin: 0 0 var(--s-7);
  text-wrap: pretty;
}

.opportunities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.opp {
  display: grid;
  grid-template-columns: clamp(2.5rem, 6vw, 5rem) 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: baseline;
  padding: var(--s-5) 0;
  border-top: 1px solid var(--c-line-strong);
}
.opp:last-child { border-bottom: 1px solid var(--c-line-strong); }
.opp__num {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--c-ink);
}
.opp__body { display: flex; flex-direction: column; gap: var(--s-2); }
.opp__title {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: var(--fs-h3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.opp__body p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.55;
  max-width: 60ch;
  color: var(--c-ink);
}

.parcerias__ornament {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(2rem, 6vh, 4rem);
  width: clamp(120px, 18vw, 240px);
  opacity: 0.4;
  color: var(--c-ink);
}

/* ==================== 21. SECTION — MARCAS ==================== */
.section--marcas {
  align-items: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.section--marcas .kicker,
.section--marcas .marcas__head {
  text-align: center;
  margin-bottom: var(--s-5);
}
.section--marcas .eyebrow { justify-content: center; }
.marcas__mosaic {
  display: grid;
  gap: 4px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--s-3);
  height: min(calc(100vh - var(--nav-h) - 8rem), 720px);
}
.marcas__mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 0;
  cursor: zoom-in;
  transition: transform var(--t-fast);
}
.marcas__mosaic img:hover { transform: scale(1.02); }

/* Ajustes específicos de centralização */
.marcas__mosaic img[data-photo-slot="brand-sol-1"] { object-position: center 65%; }
.marcas__mosaic img[data-photo-slot="brand-sol-2"] { object-position: center center; }
.marcas__mosaic img[data-photo-slot="brand-sol-3"] { object-position: center 30%; }
.marcas__mosaic img[data-photo-slot="brand-sol-4"] { object-position: center 65%; }
.marcas__mosaic img[data-photo-slot="brand-johnnie-1"],
.marcas__mosaic img[data-photo-slot="brand-johnnie-2"],
.marcas__mosaic img[data-photo-slot="brand-johnnie-3"] {
  object-position: center 45%;
}
.marcas__mosaic img[data-photo-slot="brand-heineken-3"] {
  /* Mercedes — manter centro */
  object-position: center center;
}
.marcas__mosaic img[data-photo-slot="brand-heineken-4"] {
  /* Unique Carnival cans — mostrar latas centralizadas */
  object-position: center 60%;
}

/* === MARCAS-1 (Jack Daniel's): 4 landscapes + 2 portraits === */
#marcas-1 .marcas__mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
}
#marcas-1 .marcas__mosaic img:nth-child(1) { grid-column: 1 / 3; grid-row: 1; } /* JD-1 landscape big */
#marcas-1 .marcas__mosaic img:nth-child(2) { grid-column: 3 / 5; grid-row: 1; } /* JD-2 landscape big */
#marcas-1 .marcas__mosaic img:nth-child(3) { grid-column: 1; grid-row: 2; }     /* JD-3 landscape small */
#marcas-1 .marcas__mosaic img:nth-child(4) { grid-column: 2; grid-row: 2; }     /* JD-4 landscape small */
#marcas-1 .marcas__mosaic img:nth-child(5) { grid-column: 3; grid-row: 2; }     /* JD-5 portrait */
#marcas-1 .marcas__mosaic img:nth-child(6) { grid-column: 4; grid-row: 2; }     /* JD-6 portrait */

/* === MARCAS-2 (Heineken): 3 portraits expandidas em 1 row === */
#marcas-2 .marcas__mosaic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
}
#marcas-2 .marcas__mosaic img:nth-child(1) { grid-column: 1; grid-row: 1; }
#marcas-2 .marcas__mosaic img:nth-child(2) { grid-column: 2; grid-row: 1; }
#marcas-2 .marcas__mosaic img:nth-child(3) { grid-column: 3; grid-row: 1; }
#marcas-2 .marcas__mosaic img { object-position: center 50%; }

/* === MARCAS-3 (Red Bull + Sol): 2 landscapes top, 4 portraits bottom === */
#marcas-3 .marcas__mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) minmax(0, 1.6fr);
}
#marcas-3 .marcas__mosaic img:nth-child(1) { grid-column: 1; grid-row: 2; }    /* RB-1 portrait */
#marcas-3 .marcas__mosaic img:nth-child(2) { grid-column: 1 / 3; grid-row: 1; } /* RB-2 landscape */
#marcas-3 .marcas__mosaic img:nth-child(3) { grid-column: 3 / 5; grid-row: 1; } /* Sol-1 landscape */
#marcas-3 .marcas__mosaic img:nth-child(4) { grid-column: 2; grid-row: 2; }     /* Sol-2 portrait */
#marcas-3 .marcas__mosaic img:nth-child(5) { grid-column: 3; grid-row: 2; }     /* Sol-3 portrait */
#marcas-3 .marcas__mosaic img:nth-child(6) { grid-column: 4; grid-row: 2; }     /* Sol-4 portrait */

/* === MARCAS-4 (Johnnie Walker + Fanta): 2 landscapes destaque + 3 landscapes + 1 portrait === */
#marcas-4 .marcas__mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1.4fr) minmax(0, 1fr);
}
#marcas-4 .marcas__mosaic img:nth-child(1) { grid-column: 1 / 3; grid-row: 1; } /* JW-1 KEEP WALKING (landscape big) */
#marcas-4 .marcas__mosaic img:nth-child(2) { grid-column: 3; grid-row: 1; }     /* JW-2 landscape */
#marcas-4 .marcas__mosaic img:nth-child(3) { grid-column: 4; grid-row: 1; }     /* JW-3 landscape */
#marcas-4 .marcas__mosaic img:nth-child(4) { grid-column: 1 / 3; grid-row: 2; } /* Fanta-1 (landscape) */
#marcas-4 .marcas__mosaic img:nth-child(5) { grid-column: 3; grid-row: 2; }     /* Fanta-2 landscape */
#marcas-4 .marcas__mosaic img:nth-child(6) { grid-column: 4; grid-row: 2; }     /* Fanta-3 portrait */
.marcas__mosaic img[data-photo-slot^="brand-jack-"] {
  object-position: center 45%;
}

/* ==================== 22. SECTION — CONTATO ==================== */
.section--contato {
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section--contato::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background: var(--gradient);
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
}
.contato__inner {
  display: grid;
  place-items: center;
  gap: var(--s-5);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  padding: 0 var(--s-4);
}
.contato__inner .eyebrow--centered {
  justify-content: center;
  margin: 0;
}
.contato__inner .logo-wordmark {
  width: clamp(280px, 32vw, 460px);
  height: auto;
}

/* Cards lado a lado */
.contato__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  width: 100%;
  margin-top: var(--s-3);
}
.contato__card {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 2.5vw, 2rem);
  background: color-mix(in srgb, var(--c-bg) 88%, transparent);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.contato__card:hover {
  border-color: var(--c-ink);
  transform: translateY(-2px);
}
.contato__card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--c-line);
}
.contato__role {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}
.contato__name {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem);
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin: 0;
  color: var(--c-ink);
}

/* Channels: wa + email */
.contato__channels {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.contato__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-sans);
  font-size: clamp(0.85rem, 0.75rem + 0.3vw, 1rem);
  font-weight: 500;
  color: var(--c-ink);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast);
  letter-spacing: 0.01em;
}
.contato__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--c-ink-soft);
  transition: color var(--t-fast);
}
.contato__link:hover { color: var(--c-ink); }
.contato__link:hover .contato__icon { color: var(--c-ink); }
.contato__link--wa:hover .contato__icon { color: #25D366; }

.contato__link.is-copied { color: var(--c-ink); }
.contato__link.is-copied::after {
  content: 'copiado';
  margin-left: 0.5em;
  font-size: 0.7em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-blue);
}

.contato__ornaments {
  opacity: 0.3;
  margin-top: var(--s-2);
}
.contato__ornaments img {
  width: clamp(36px, 4vw, 56px);
  height: auto;
  display: block;
  color: var(--c-ink);
}

@media (max-width: 720px) {
  .contato__cards { grid-template-columns: 1fr; }
}

/* ==================== 23. LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.9);
  display: grid;
  place-items: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  backdrop-filter: blur(8px);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-sm);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* ==================== 24. ENTRADA SUTIL (apenas em scroll-into-view) ==================== */
/* Sem hide-and-show — conteúdo sempre visível. Pequena animação CSS-only quando
   o navegador suporta scroll-driven animations, sem depender de JS. */
@supports (animation-timeline: view()) {
  .snap-section > *:not(.hero__gradient):not(.scroll-hint) {
    animation: section-rise linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 50%;
  }
}
@keyframes section-rise {
  from { opacity: 0.4; transform: translateY(14px); }
  to   { opacity: 1;   transform: translateY(0); }
}

/* ==================== 25. RESPONSIVO ==================== */
@media (max-width: 1024px) {
  .site-nav__links { gap: var(--s-5); }
  .artists-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
  .cal-grid { grid-template-columns: repeat(3, 1fr); }
  .cal-grid > *:nth-child(4) { grid-column: 1 / span 1; }
  .timeline__track { grid-auto-columns: clamp(160px, 22vw, 220px); }
  .marcas__mosaic--two-up { grid-auto-rows: minmax(140px, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  /* ---- Snap: proximity em mobile pra fluir natural com toolbar do browser ---- */
  html { scroll-snap-type: y proximity; }
  .snap-section {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    scroll-snap-stop: normal;
    padding: calc(var(--nav-h) + var(--s-5)) var(--s-4) var(--s-6);
    justify-content: flex-start;
    gap: var(--s-4);
  }

  .site-nav { padding: 0 var(--s-4); }
  .site-nav__links { display: none; }
  .site-nav__cta { display: none; }
  .site-nav__menu-toggle { display: flex; margin-left: auto; }

  .site-nav.is-menu-open .site-nav__links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: var(--s-3) var(--s-4);
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }
  .site-nav.is-menu-open .site-nav__links a {
    padding: var(--s-3) 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--c-line);
    font-size: 1rem;
  }
  .site-nav.is-menu-open .site-nav__links a:last-child { border-bottom: 0; }

  .progress-dots { display: none; }

  .floating-cta span { display: none; }
  .floating-cta {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
  .floating-cta svg { width: 28px; height: 28px; }

  /* ---- HERO ---- */
  .section--hero {
    padding-top: calc(var(--nav-h) + var(--s-3));
    padding-bottom: var(--s-5);
  }
  .hero__symbol img { width: 44px; }
  .hero__wordmark .logo-wordmark {
    width: clamp(240px, 78vw, 360px);
  }
  .hero__date { font-size: 0.75rem; letter-spacing: 0.22em; }
  .hero__local-name {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    line-height: 1.1;
  }
  .hero__local-meta { font-size: 0.68rem; }

  /* ---- QUEM SOMOS — empilha texto + foto ---- */
  .section--quem-somos {
    grid-template-columns: 1fr;
    padding-right: var(--s-4);
    gap: var(--s-4);
  }
  .quem-somos__text {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100%;
  }
  .quem-somos__media {
    width: 100%;
    max-height: 50vh;
    aspect-ratio: 3 / 4;
  }

  /* ---- POR QUE — header + 3 fotos stack ---- */
  .section--por-que { padding: calc(var(--nav-h) + var(--s-4)) 0 var(--s-5); }
  .por-que__head {
    padding: 0 var(--s-4);
    margin-bottom: var(--s-3);
  }
  .por-que__head .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .por-que__head .lead { font-size: clamp(0.95rem, 3vw, 1.05rem); }
  .por-que__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 4px;
    height: auto;
    aspect-ratio: auto;
    max-height: none;
  }
  .por-que__gallery img:nth-child(1) { grid-row: auto; aspect-ratio: 3/2; }
  .por-que__gallery img:nth-child(2),
  .por-que__gallery img:nth-child(3) { aspect-ratio: 3/2; }

  /* ---- POSICIONAMENTO — texto + mosaic stack ---- */
  .section--diferenciacao {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: var(--s-4);
    height: auto;
    max-height: none;
  }
  .diff__text {
    padding-left: 0 !important;
    max-width: 100%;
  }
  .diff__mosaic {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
    aspect-ratio: auto !important;
    max-height: none !important;
    height: auto !important;
    gap: 4px;
  }
  .diff__mosaic img {
    aspect-ratio: 4/5 !important;
    height: auto !important;
  }

  /* ---- ARTISTAS ---- */
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-4);
  }
  .artist-card__name { font-size: 0.9rem; }
  .artist-card__label { font-size: 0.6rem; }

  /* ---- PILARES ---- */
  .pilares__grid {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .pilar .editorial-num {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  .pilar__name {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  /* ---- TIMELINE — já tem override mais abaixo ---- */

  /* ---- PRÓXIMO EVENTO — 3 rows stack ---- */
  .section--proximo {
    height: auto;
    max-height: none;
    padding: calc(var(--nav-h) + var(--s-4)) var(--s-4) var(--s-5);
  }
  .proximo__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .proximo__label { font-size: 0.65rem; padding: 3px 8px; }
  .local-row,
  .local-row--reverse {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto;
    gap: var(--s-3);
  }
  .local-photo {
    aspect-ratio: 3/2 !important;
    height: auto !important;
    max-height: 40vh;
    width: 100%;
  }
  .local-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .local-text__h { font-size: 1.05rem; }
  .local-text p { font-size: 0.92rem; }

  /* ---- MOVIMENTO — 3 rows stack vertical, fotos lado a lado ---- */
  .section--movimento {
    height: auto;
    max-height: none;
    padding: calc(var(--nav-h) + var(--s-4)) var(--s-4) var(--s-5);
  }
  .mov-editorial { gap: var(--s-5); max-height: none; }
  .mov-row,
  .mov-row--reverse {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto;
    gap: var(--s-3);
  }
  .mov-row:not(.mov-row--reverse) .mov-text,
  .mov-row--reverse .mov-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100%;
  }
  .mov-text__h { font-size: 1.05rem; }
  .mov-text p { font-size: 0.92rem; }
  .mov-photo {
    aspect-ratio: 16/10 !important;
    height: auto !important;
    max-height: 40vh;
    width: 100%;
  }
  .mov-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Fotos lado a lado em formato vertical (portrait) */
  .mov-photo--double {
    display: flex !important;
    flex-direction: row !important;
    gap: 4px;
    aspect-ratio: 3/2 !important;
    height: auto !important;
    max-height: 40vh;
    width: 100%;
  }
  .mov-photo--double img {
    flex: 1 1 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  /* ---- PÚBLICO — stack vertical, stats mantém lado a lado, mosaic 3 cols ---- */
  .section--publico {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    padding: calc(var(--nav-h) + var(--s-4)) var(--s-4) var(--s-5);
    gap: var(--s-4);
  }
  .publico__text {
    padding-left: 0 !important;
    justify-self: stretch;
    max-width: 100%;
  }
  /* Stats em mobile: manter label/value lado a lado, fonte menor */
  .stats { grid-template-columns: 1fr; }
  .stat {
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: var(--s-3);
    padding: var(--s-3) 0;
  }
  .stat__label { font-size: 0.6rem; letter-spacing: 0.18em; }
  .stat__value { font-size: clamp(1.05rem, 4.5vw, 1.5rem); }
  .publico__mosaic {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(4, auto) !important;
    aspect-ratio: auto !important;
    height: auto !important;
    max-height: none !important;
    gap: 4px;
  }
  .publico__mosaic img {
    aspect-ratio: 3/4 !important;
    height: auto !important;
  }

  /* ---- CALENDÁRIO — stack natural sem nested scroll ---- */
  .section--calendario {
    height: auto;
    max-height: none;
    padding: calc(var(--nav-h) + var(--s-4)) var(--s-4) var(--s-5);
  }
  .cal-head { margin-bottom: var(--s-4); }
  .cal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    overflow: visible;
    max-height: none;
    border-top: 1px solid var(--c-line-strong);
  }
  .cal-card {
    display: grid;
    grid-template-rows: auto;
    grid-row: auto !important;
    grid-column: auto !important;
    padding: var(--s-4) var(--s-3);
    border-left: 0;
    border-bottom: 1px solid var(--c-line);
    gap: var(--s-2);
  }
  .cal-card:last-child { border-bottom: 0; }
  .cal-card--big {
    background: rgba(0,0,0,0.025);
    padding: var(--s-4) var(--s-3);
  }
  .cal-card__date { display: flex; align-items: baseline; gap: var(--s-2); }
  .cal-card__day { font-size: 2rem; }
  .cal-card__month { font-size: 0.7rem; }
  .cal-card__title { font-size: 1.1rem; }
  .cal-card__row { font-size: 0.85rem; }

  /* ---- PARCERIAS ---- */
  .section--parcerias {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
  .parcerias__ornament { display: none; }
  .opportunities { gap: var(--s-4); }
  .opp {
    grid-template-columns: auto 1fr;
    gap: var(--s-3);
  }
  .opp .editorial-num { font-size: 2.25rem; }
  .opp__title { font-size: 1.05rem; }
  .opp__body { font-size: 0.9rem; }

  /* ---- MARCAS — overrides por seção (cada uma com layout próprio) ---- */
  .section--marcas {
    height: auto;
    max-height: none;
    padding: calc(var(--nav-h) + var(--s-4)) 0 var(--s-5);
  }
  .section--marcas .kicker,
  .section--marcas .marcas__head {
    padding: 0 var(--s-4);
    margin-bottom: var(--s-3);
  }
  .marcas__mosaic {
    padding: 0 var(--s-3);
    height: auto;
    max-height: 60vh;
  }
  .marcas__mosaic--two-up { grid-auto-rows: auto; }

  /* Marcas-1 (Jack 6 fotos): 2 cols x 3 rows */
  #marcas-1 .marcas__mosaic {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
  }
  #marcas-1 .marcas__mosaic img {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  /* Marcas-2 (Heineken 3 fotos): 1 col stack vertical (3 fotos altas) */
  #marcas-2 .marcas__mosaic {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(3, auto) !important;
    aspect-ratio: auto;
  }
  #marcas-2 .marcas__mosaic img {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4/3;
  }

  /* Marcas-3 (Red Bull + Sol 6 fotos): 2 cols x 3 rows */
  #marcas-3 .marcas__mosaic {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
  }
  #marcas-3 .marcas__mosaic img {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  /* Marcas-4 (Johnnie + Fanta 6 fotos): 2 cols x 3 rows */
  #marcas-4 .marcas__mosaic {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
  }
  #marcas-4 .marcas__mosaic img {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  /* ---- CONTATO ---- */
  .contato__inner { gap: var(--s-3); padding: 0 var(--s-4); }
  .contato__cards {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  .contato__card { padding: var(--s-4) var(--s-4); }
  .contato__name { font-size: 1.5rem; }
  .contato__link { font-size: 0.92rem; min-height: 44px; }

  /* ---- GALERIA ---- */
  .por-que__gallery,
  .galeria__grid {
    grid-template-columns: 1fr;
  }
  .galeria__grid {
    grid-template-rows: repeat(3, 1fr);
    height: auto;
    aspect-ratio: 2 / 3;
    max-height: 70vh;
  }

  .timeline__track { grid-auto-columns: 200px; }
}

@media (max-width: 480px) {
  /* Padding sections menor */
  .snap-section {
    padding: calc(var(--nav-h) + var(--s-3)) var(--s-3) var(--s-4);
  }

  /* Hero — fontes apertadas */
  .hero__wordmark .logo-wordmark {
    width: clamp(220px, 80vw, 320px);
  }
  .hero__local-name {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }
  .hero__date { font-size: 0.7rem; }
  .hero__local-meta { font-size: 0.62rem; }

  /* Quem somos */
  .quem-somos__text .lead { font-size: 1rem; }
  .quem-somos__media { max-height: 45vh; }

  /* Posicionamento mosaic: já 2x3 em 768px, manter */

  /* Artistas — pode manter 2x4 */
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3);
  }
  .artist-card__photo { aspect-ratio: 3/4; }

  /* Pilares numerais menores */
  .pilar .editorial-num {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .pilar__name {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  /* Timeline 2-col stack — fonts menores */
  .tl-event__name { font-size: 0.78rem; }
  .tl-event__meta { font-size: 0.62rem; letter-spacing: 0.06em; }

  /* Próximo evento */
  .proximo__title { font-size: clamp(1.3rem, 5.5vw, 1.75rem); }

  /* Movimento ≤480: fotos lado a lado vertical mantém, aspect 3/2 (2 portraits) */
  .mov-photo--double {
    flex-direction: row;
    gap: 4px;
    aspect-ratio: 3/2;
  }
  .mov-photo--double img {
    aspect-ratio: auto;
  }

  /* Público — mosaic 2 cols em 480 */
  .publico__mosaic {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(6, auto) !important;
    aspect-ratio: auto !important;
    height: auto !important;
    max-height: none !important;
  }
  .publico__mosaic img { aspect-ratio: 3/4 !important; }
  .stat {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: var(--s-2) 0;
  }
  .stat__value {
    text-align: left;
    font-size: clamp(1.25rem, 5.5vw, 1.6rem);
  }

  /* Calendário — cards full width */
  .cal-card__day { font-size: 1.75rem; }
  .cal-card__title { font-size: 1rem; }
  .cal-card__row { font-size: 0.78rem; padding-top: var(--s-1); }
  .cal-card__badge { font-size: 0.55rem; padding: 3px 6px; }

  /* Parcerias */
  .opp { grid-template-columns: 1fr; gap: var(--s-2); }
  .opp .editorial-num { font-size: 1.75rem; }

  /* Marcas — todos 1 coluna stack (legibilidade máxima) */
  #marcas-1 .marcas__mosaic,
  #marcas-3 .marcas__mosaic,
  #marcas-4 .marcas__mosaic {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    aspect-ratio: auto;
    max-height: none;
  }
  #marcas-1 .marcas__mosaic img,
  #marcas-2 .marcas__mosaic img,
  #marcas-3 .marcas__mosaic img,
  #marcas-4 .marcas__mosaic img {
    aspect-ratio: 16/10;
    height: auto;
  }

  /* Contato — single col cards já em 720px */
  .contato__name { font-size: 1.3rem; }
  .contato__link { font-size: 0.85rem; }

  /* Section titles globais */
  .section-title { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .lead { font-size: clamp(0.95rem, 3.5vw, 1.05rem); }
  .eyebrow { font-size: 0.65rem; letter-spacing: 0.16em; }

  /* Eyebrow + kicker centralizados */
  .por-que__gallery,
  .galeria__grid {
    grid-template-columns: 1fr;
  }
}

/* iPhone 5 / pior caso extremo 320px */
@media (max-width: 360px) {
  .hero__wordmark .logo-wordmark { width: 90vw; }
  .hero__local-name { font-size: 1.25rem; }
  .section-title { font-size: 1.25rem; }
  .artists-grid { grid-template-columns: 1fr; }
}

/* ==================== A11Y + MOBILE REFINEMENTS ==================== */

/* Touch targets ≥ 44px (WCAG / iOS HIG / Material) */
.progress-dots a {
  position: relative;
}
.progress-dots a::before {
  content: '';
  position: absolute;
  inset: -18px;
}
@media (hover: hover) {
  .tl-event__photo:hover { transform: scale(1.02); }
  .progress-dots a:hover { transform: scale(1.4); }
  .cal-card:hover { background: rgba(0,0,0,0.02); }
  .cal-card--big:hover { background: rgba(0,0,0,0.03); }
  .contato__card:hover {
    border-color: var(--c-ink);
    transform: translateY(-2px);
  }
  .marcas__mosaic img:hover { transform: scale(1.02); }
}
@media (hover: none) {
  .tl-event__photo:hover,
  .progress-dots a:hover,
  .cal-card:hover,
  .contato__card:hover,
  .marcas__mosaic img:hover {
    transform: none !important;
    background: inherit;
  }
}

/* Timeline mobile: 7-col → 1-col vertical list (editorial, foto grande + meta) */
@media (max-width: 768px) {
  .timeline-editorial {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    column-gap: 0;
    row-gap: var(--s-4);
    border-top: 1px solid var(--c-line-strong);
    padding-top: var(--s-3);
  }
  .timeline-editorial > .tl-event {
    grid-column: auto !important;
    grid-row: auto !important;
    padding: 0 0 var(--s-3) !important;
    align-self: auto !important;
    border-bottom: 1px solid var(--c-line);
    display: grid !important;
    grid-template-columns: 1fr;
    gap: var(--s-2);
    text-align: left;
  }
  .timeline-editorial > .tl-event:last-child { border-bottom: 0; }
  .tl-event__photo {
    width: 100%;
    aspect-ratio: 16/10 !important;
    margin: 0 !important;
    order: 1 !important;
  }
  .tl-event__name {
    font-size: 1rem !important;
    margin: 0 !important;
    order: 2 !important;
  }
  .tl-event__meta {
    font-size: 0.7rem;
    order: 3 !important;
  }
  .tl-event--top::after,
  .tl-event--bottom::before { display: none; }
  .tl-axis { display: none; }
}

/* Backdrop-filter mais leve em mobile */
@media (max-width: 768px) {
  .site-nav {
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
  }
  .contato__card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .lightbox {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(20, 20, 20, 0.92);
  }
  .hero__aura-blob { filter: blur(60px); }
}

/* Min-height touch targets em nav */
@media (max-width: 768px) {
  .site-nav.is-menu-open .site-nav__links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Skip link visível ao receber foco */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-3);
  z-index: 200;
  padding: var(--s-2) var(--s-4);
  background: var(--c-ink);
  color: var(--c-bg);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: top var(--t-fast) var(--ease-out);
}
.skip-link:focus { top: var(--s-2); outline: none; }

/* ==================== PRINT / PDF A4 LANDSCAPE ==================== */
@page {
  size: A4 landscape;
  margin: 0;
}

@media print {
  /* ---- Globais ---- */
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
    animation: none !important;
    transition: none !important;
  }

  html, body {
    background: var(--c-bg) !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    width: 297mm;
  }

  /* ---- Hide UI interativa ---- */
  .site-nav,
  .progress-dots,
  .floating-cta,
  .lightbox,
  .scroll-hint {
    display: none !important;
  }

  /* ---- Cada seção vira 1 página A4 landscape ---- */
  .snap-section {
    width: 297mm !important;
    height: 210mm !important;
    min-height: 210mm !important;
    max-height: 210mm !important;
    padding: 10mm 12mm !important;
    page-break-after: always !important;
    page-break-inside: avoid !important;
    break-after: page !important;
    break-inside: avoid !important;
    overflow: hidden !important;
    box-shadow: none !important;
    scroll-snap-align: none !important;
  }
  .snap-section:last-of-type {
    page-break-after: auto !important;
    break-after: auto !important;
  }
  .snap-section::before { display: none !important; }

  /* ---- Tipografia em pt pra precisão print ---- */
  body { font-size: 10pt !important; line-height: 1.45 !important; }
  .section-title { font-size: 24pt !important; line-height: 1.1 !important; }
  .lead { font-size: 12pt !important; line-height: 1.45 !important; }
  .eyebrow { font-size: 7pt !important; }
  .eyebrow__num { font-size: 8pt !important; }

  /* ---- Image rendering ---- */
  img {
    image-rendering: high-quality;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* ---- HERO: simplificar aurora pra render PDF melhor ---- */
  .section--hero {
    padding: 12mm 16mm !important;
  }
  .hero__aura-blob {
    filter: blur(40px) !important;
    opacity: 0.5 !important;
    mix-blend-mode: normal !important;
  }
  .hero__wordmark .logo-wordmark {
    width: 200mm !important;
    max-width: 200mm !important;
  }
  .hero__date { font-size: 9pt !important; }
  .hero__local-name { font-size: 28pt !important; }
  .hero__local-meta { font-size: 7pt !important; }

  /* ---- QUEM SOMOS: 2-col preservado ---- */
  .section--quem-somos {
    padding-right: 0 !important;
    gap: 8mm !important;
  }
  .quem-somos__media {
    max-height: 190mm !important;
    height: 190mm !important;
  }
  .quem-somos__text {
    padding-left: 8mm !important;
    padding-right: 4mm !important;
    gap: 4mm !important;
  }

  /* ---- POR QUE: header + galeria editorial ---- */
  .section--por-que {
    height: 210mm !important;
    padding: 12mm 0 0 !important;
    gap: 6mm !important;
  }
  .por-que__head { padding: 0 16mm !important; }
  .por-que__gallery {
    height: 130mm !important;
  }

  /* ---- ARTISTAS: 4×2 grid com fotos quadradas pra caber em 165mm de altura ---- */
  .section--artistas { padding: 12mm 14mm !important; }
  .section--artistas .section-head { margin-bottom: 5mm !important; }
  .artists-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 3mm !important;
    column-gap: 3mm !important;
    row-gap: 5mm !important;
    height: 155mm !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .artist-card {
    gap: 2mm !important;
    min-height: 0 !important;
  }
  .artist-card__photo {
    aspect-ratio: 1 / 1 !important;
    max-height: 60mm !important;
  }
  .artist-card__name {
    font-size: 8pt !important;
    margin: 0 !important;
    line-height: 1.1 !important;
  }
  .artist-card__label {
    font-size: 5.5pt !important;
    padding: 2px 5px !important;
    align-self: flex-start !important;
  }

  /* ---- DIFERENCIAÇÃO: texto + mosaic lateral ---- */
  .section--diferenciacao {
    height: 210mm !important;
    gap: 8mm !important;
  }
  .diff__mosaic {
    max-height: 170mm !important;
    height: 170mm !important;
    gap: 2mm !important;
  }

  /* ---- PILARES: 2×2 com numerais + highlight (force grid explícito) ---- */
  .section--pilares {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 14mm 18mm !important;
  }
  .pilares__head { margin-bottom: 6mm !important; }
  .pilares__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 6mm 12mm !important;
    max-width: 100% !important;
    width: 100% !important;
    height: 150mm !important;
  }
  .pilar {
    display: flex !important;
    flex-direction: column !important;
    gap: 2mm !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .pilar .editorial-num { font-size: 28pt !important; margin: 0 !important; }
  .pilar .rule { width: 8mm !important; margin: 0 0 2mm !important; }
  .pilar__name {
    font-size: 14pt !important;
    line-height: 1.05 !important;
    background-size: 100% 35% !important;
    margin: 0 !important;
  }
  .pilar p {
    max-width: 100% !important;
    font-size: 8.5pt !important;
    line-height: 1.4 !important;
    margin: 1mm 0 0 !important;
  }

  /* ---- TIMELINE: 7 cards em 4×2 grid limpo (kill zigzag desktop) ---- */
  .section--timeline {
    height: 210mm !important;
    padding: 12mm !important;
  }
  .timeline-head { margin-bottom: 5mm !important; }

  /* DISABLE elementos zigzag desktop */
  .tl-axis { display: none !important; }
  .tl-event--top::after,
  .tl-event--bottom::before { display: none !important; }
  .tl-event--top,
  .tl-event--bottom {
    padding: 0 !important;
    align-self: stretch !important;
  }
  /* RESET bottom variant order/margin pra ficar igual aos top */
  .tl-event--bottom .tl-event__photo {
    order: 1 !important;
    margin-top: 0 !important;
  }
  .tl-event--bottom .tl-event__name {
    order: 2 !important;
    margin-top: 0 !important;
  }
  .tl-event--bottom .tl-event__meta { order: 3 !important; }

  .timeline-editorial {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 4mm !important;
    height: 155mm !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .timeline-editorial > .tl-event {
    grid-column: auto !important;
    grid-row: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2mm !important;
    min-height: 0 !important;
    text-align: center !important;
  }
  .tl-event__photo {
    aspect-ratio: 4/3 !important;
    max-height: 55mm !important;
    width: 100% !important;
  }
  .tl-event__name {
    font-size: 8.5pt !important;
    margin: 0 !important;
    line-height: 1.1 !important;
  }
  .tl-event__meta { font-size: 6pt !important; }

  /* ---- PRÓXIMO EVENTO: 3 rows zigzag ---- */
  .section--proximo {
    height: 210mm !important;
    padding: 12mm !important;
    gap: 4mm !important;
  }
  .proximo__title { font-size: 18pt !important; }
  .local-row { gap: 6mm !important; }
  .local-text__h { font-size: 11pt !important; }
  .local-text p { font-size: 8.5pt !important; line-height: 1.4 !important; }

  /* ---- MOVIMENTO: 3 rows editorial ---- */
  .section--movimento {
    height: 210mm !important;
    padding: 12mm !important;
    gap: 4mm !important;
  }
  .mov-text__h { font-size: 11pt !important; }
  .mov-text p { font-size: 8.5pt !important; line-height: 1.4 !important; }

  /* ---- PÚBLICO: 2-col explícito (texto+stats / mosaic 4×3) ---- */
  .section--publico {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) !important;
    gap: 8mm !important;
    height: 210mm !important;
    padding: 12mm !important;
    align-items: center !important;
  }
  .publico__text {
    padding-left: 0 !important;
    justify-self: start !important;
    max-width: 100% !important;
  }
  .publico__text p {
    font-size: 9pt !important;
    line-height: 1.4 !important;
    margin-bottom: 4mm !important;
  }
  .stats {
    margin-top: 3mm !important;
    border-top-width: 0.5pt !important;
  }
  .stat {
    padding: 2mm 0 !important;
    border-bottom-width: 0.5pt !important;
  }
  .stat__value { font-size: 12pt !important; line-height: 1.1 !important; }
  .stat__label { font-size: 6pt !important; letter-spacing: 0.18em !important; }
  .stat__num { font-weight: 600 !important; }
  .publico__mosaic {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
    gap: 2mm !important;
    height: 180mm !important;
    max-height: 180mm !important;
    width: 100% !important;
    align-self: center !important;
  }
  .publico__mosaic img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  /* ---- CALENDÁRIO: 5 cols compactos ---- */
  .section--calendario { padding: 14mm 16mm !important; }
  .cal-head { margin-bottom: 8mm !important; }
  .cal-grid { max-width: 100% !important; }
  .cal-card {
    padding: 6mm 4mm !important;
    gap: 4mm !important;
  }
  .cal-card__day { font-size: 28pt !important; }
  .cal-card__date--tba .cal-card__day { font-size: 18pt !important; }
  .cal-card__month { font-size: 6.5pt !important; }
  .cal-card__badge { font-size: 5.5pt !important; padding: 2px 5px !important; }
  .cal-card__title { font-size: 10pt !important; line-height: 1.15 !important; }
  .cal-card__row { font-size: 7pt !important; padding-top: 3mm !important; }
  .cal-card__label { font-size: 6pt !important; }
  .cal-card__val--num { font-size: 10pt !important; }

  /* ---- PARCERIAS: lista numerada ---- */
  .section--parcerias { padding: 14mm 18mm !important; }
  .opp .editorial-num { font-size: 28pt !important; }
  .opp__title { font-size: 14pt !important; }
  .opp__body { font-size: 9pt !important; line-height: 1.45 !important; }

  /* ---- MARCAS: mosaicos cobrindo página ---- */
  .section--marcas { padding: 14mm 16mm !important; }
  .marcas__mosaic {
    max-height: 170mm !important;
    height: 170mm !important;
    max-width: 100% !important;
    gap: 2mm !important;
  }
  .marcas__head { margin-bottom: 6mm !important; }

  /* ---- CONTATO: gradient drenched ---- */
  .section--contato {
    padding: 14mm !important;
  }
  .contato__wordmark img { width: 130mm !important; max-width: 130mm !important; }
  .contato__link { font-size: 11pt !important; }
}

