/* =======================================================================
   NAVARANDA — main.css v2 (fiel ao PDF)
   Estética editorial-cinematográfica do pitch deck oficial
   ======================================================================= */

/* ---------- TOKENS (preto puro Loïc Nottet — fotos coloridas brilham) ---------- */
:root {
  --bg:           #000000;       /* preto puro */
  --bg-alt:       #050505;       /* quase preto */
  --bg-card:      #0a0a0a;       /* mínima diferença pra blocos */
  --bg-elev:      #111111;
  --bg-rich:      #050505;       /* alias: caem todos em preto puro */
  --bg-deep:      #000000;
  --bg-deep-alt:  #050505;
  --fg:           #ffffff;       /* branco puro */
  --fg-muted:    #999999;        /* cinza neutro */
  --fg-dim:      #555555;
  --line:        rgba(255,255,255,0.12);
  --line-soft:   rgba(255,255,255,0.04);
  --accent:      #ffffff;
  --accent-blue: #6aaed3;        /* azul céu — só em pontos pequenos */
  --accent-warm: #6aaed3;        /* alias */
  --accent-deep: #6aaed3;        /* alias */

  /* Aliases pra estilos inline antigos (sépia/cream) — agora caem no dark uniforme */
  --bg-cream:           var(--bg-rich);
  --bg-cream-deep:      var(--bg-rich);
  --bg-warm:            var(--bg-rich);
  --bg-warm-alt:        var(--bg-rich);
  --fg-on-cream:        var(--fg);
  --fg-muted-on-cream:  var(--fg-muted);
  --line-on-cream:      var(--line);

  /* Tipografia OFICIAL Navaranda (brandbook): Lato Light + Lato Regular */
  --font-display: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --container:      1280px;
  --container-wide: 1600px;

  --radius:    0;
  --radius-pill: 999px;

  --transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --section-y: clamp(80px, 12vw, 160px);
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300; /* Lato Light por padrão (brandbook) */
  line-height: 1.6;
  letter-spacing: 0.005em;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
strong, b { font-weight: 400; } /* Lato Regular é o "peso forte" no sistema da marca */
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
p { margin: 0 0 1em; }
::selection { background: #fff; color: var(--bg); }

/* ---------- TYPOGRAPHY — Lato Light + Lato Regular (brandbook) ----------
   - Body: Lato 300 (Light) — leitura
   - Headers: Lato 300 (Light) — geométrica e leve, característica da marca
   - UI/eyebrow/buttons: Lato 400 (Regular) com letter-spacing maior + caps
   - Italic: Lato 300 italic — pros <em> de destaque conceitual
   ---------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 0.4em;
}
.h-display, .h1, h1 { font-size: clamp(40px, 6.5vw, 84px); font-weight: 300; }
.h2, h2             { font-size: clamp(30px, 4.5vw, 56px); font-weight: 300; }
.h3, h3             { font-size: clamp(20px, 2.4vw, 30px); font-weight: 400; letter-spacing: 0; }
.h4, h4             { font-size: clamp(16px, 1.8vw, 20px); font-weight: 400; letter-spacing: 0.04em; }
em, .italic { font-style: italic; font-weight: 300; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5em;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.eyebrow::after { content: ''; display: inline-block; width: 120px; height: 1px; background: var(--line); }
.eyebrow--solo::after { display: none; }
.eyebrow--center { justify-content: center; }
.eyebrow--accent { color: var(--accent-warm); }

.lead { font-size: clamp(18px, 1.8vw, 22px); line-height: 1.5; color: var(--fg-muted); max-width: 60ch; }
.lead-serif {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.5;
  color: var(--fg);
  max-width: 44ch;
  letter-spacing: 0;
}

.section-mega-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 60px); /* PADRÃO: título de seção */
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-style: normal;
  margin: 0;
}
.section-mega-title em { font-style: italic; font-weight: 300; }
/* PADRÃO: título de PÁGINA (no header com imagem) — escala maior */
.hero-pdf-bottom .section-mega-title, .hero-pdf-bottom h1 { font-size: clamp(40px, 6.5vw, 84px); }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 32px; }
.section { padding-block: var(--section-y); position: relative; }
.section--narrow { max-width: 760px; margin: 0 auto; }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-50-50 { grid-template-columns: 1fr 1fr; }
@media (max-width: 800px) { .grid-50-50 { grid-template-columns: 1fr; } }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.center { text-align: center; }
.muted { color: var(--fg-muted); }
.dim { color: var(--fg-dim); }

/* ---------- BUTTONS — editorial, sem pílulas ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--fg);
  transition: opacity var(--transition), gap var(--transition);
}
.btn::after { content: '→'; transition: transform var(--transition); }
.btn:hover { opacity: 0.7; gap: 18px; }
.btn:hover::after { transform: translateX(4px); }
.btn--primary { color: var(--fg); border-bottom-width: 2px; }
.btn--lg { font-size: 14px; padding-bottom: 12px; }
.btn--sm { font-size: 11px; padding-bottom: 6px; }
.btn--no-arrow::after { display: none; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0) 100%);
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
  border-bottom: none;
}
.site-header.is-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  padding: 16px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-logo { display: inline-flex; align-items: center; gap: 0; line-height: 0; }

/* ====== HERO COM VÍDEO DE FUNDO ====== */
.hero-video-wrap { position: relative; overflow: hidden; background: #000; }
.hero-video-wrap > .hero-video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.hero-video-wrap .hero-pdf-bottom,
.hero-video-wrap .hero-scroll { position: relative; z-index: 2; }

/* Tile de vídeo no wallboard /multimedia */
.wall-tile-video {
  position: relative; background: #000;
}
.wall-tile-video video {
  display: block; width: 100%; height: auto; object-fit: cover;
}
.wall-tile-video--vertical video { aspect-ratio: 9/16; }

/* ====== LOGO OFICIAL (PNG com alpha) ====== */
.brand-logo { display: block; height: auto; max-width: 100%; }
.brand-logo--color { filter: none; }
/* Fundos escuros: força branco puro mantendo o alpha do PNG */
.brand-logo--white { filter: brightness(0) invert(1); }
/* Fundos claros (cream/branco): força preto puro */
.brand-logo--black { filter: brightness(0); }

/* Loader logo (presença forte de marca) */
.loader-logo .brand-logo { height: 160px !important; width: auto !important; }

/* Footer logo (assinatura clara) */
.footer-brand .brand-logo { height: 140px !important; width: auto !important; }

/* Header logo (presença firme — brandbook prioriza marca) */
.site-header .brand-logo { height: 100px !important; width: auto !important; }
/* Em telas pequenas, reduz pra caber + menu */
@media (max-width: 800px) {
  .site-header .brand-logo { height: 64px !important; }
  .footer-brand .brand-logo { height: 96px !important; }
}

/* Screen-reader only utility (caso ainda não exista) */
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.primary-nav ul { display: flex; gap: 36px; align-items: center; }
.primary-nav a { font-size: 12px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.75; }
.primary-nav a:hover { opacity: 1; }
.primary-nav .current-menu-item > a { opacity: 1; }
.menu-toggle { display: none; }

@media (max-width: 1024px) {
  .menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; z-index: 102; }
  .menu-toggle span { width: 26px; height: 1px; background: var(--fg); transition: var(--transition); }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; background: var(--bg); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--transition); z-index: 101; }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; }
  .primary-nav ul { flex-direction: column; gap: 28px; text-align: center; }
  .primary-nav a { font-size: 22px; font-family: var(--font-display); text-transform: none; letter-spacing: 0; opacity: 1; }
}

/* ---------- HERO (PDF-style: foto da capa em bleed total) ---------- */
.hero-pdf {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-pdf::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
}
.hero-pdf-bottom {
  position: relative; z-index: 2;
  padding: 0 clamp(32px, 4vw, 64px) 80px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-pdf-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 400;
  max-width: 860px;
  color: rgba(255,255,255,0.92);
  margin: 0;
}
.hero-pdf-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
}
.hero-scroll::after { content: ''; width: 1px; height: 36px; background: rgba(255,255,255,0.4); animation: scrollDown 2.4s ease-in-out infinite; }
@keyframes scrollDown { 0%, 100% { transform: scaleY(0.3); transform-origin: top; } 50% { transform: scaleY(1); } }

/* ---------- SPLIT FOTO + TEXTO (página 2, 18, 19 do PDF) ---------- */
.split-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 80vh;
}
.split-photo--reverse { direction: rtl; }
.split-photo--reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .split-photo, .split-photo--reverse { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
  .split-photo-img { min-height: 60vh; }
}
.split-photo-img {
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  position: relative;
}
.split-photo-text { padding: clamp(48px, 8vw, 120px); }

/* ---------- PLATAFORMA / NÚMEROS GIGANTES (página 3, 4) ---------- */
.platform-block {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(40px, 6vw, 80px) 0;
}
@media (max-width: 800px) { .platform-block { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

.platform-icon { width: clamp(80px, 11vw, 140px); height: clamp(80px, 11vw, 140px); flex-shrink: 0; }
.platform-icon svg { width: 100%; height: 100%; }

.giant-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
}
.giant-num em { font-style: italic; font-weight: 300; }
.giant-num-prefix {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.giant-num-prefix::after {
  content: ''; display: block; width: 80%; max-width: 220px; height: 1px; background: var(--line); margin-top: 8px;
}
.giant-num-suffix {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--fg-muted);
  margin-top: 16px;
  display: block;
}

.metric-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  margin-top: clamp(40px, 6vw, 80px);
}
@media (max-width: 600px) { .metric-pair { grid-template-columns: 1fr; } }
.metric-pair .giant-num { font-size: clamp(48px, 6vw, 80px); }

/* ---------- BARRAS DE PÚBLICO (página 3, 4, 21) ---------- */
.audience-stack { display: flex; flex-direction: column; gap: 18px; }
.audience-row { display: grid; grid-template-columns: 1fr; gap: 8px; }
.audience-bar {
  position: relative;
  height: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.audience-bar-fill { position: absolute; inset: 0 auto 0 0; background: rgba(255,255,255,0.92); border-radius: var(--radius-pill); }
.audience-row-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  display: flex; align-items: baseline; gap: 12px;
}
.audience-row-label .pct {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}

/* TOP CIDADES */
.top-list h4 { font-size: 11px; font-family: var(--font-body); letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 24px; font-weight: 400; }
.top-list ul { display: flex; flex-direction: column; gap: 14px; }
.top-list li { font-family: var(--font-display); font-size: 22px; padding-left: 20px; position: relative; }
.top-list li::before { content: '•'; position: absolute; left: 0; color: var(--fg-muted); }

/* ---------- BACKGROUND DE FOTO (página 5, 9) ---------- */
.section-photo-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: clamp(80px, 12vw, 180px) 0;
}
.section-photo-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.9) 100%);
}
.section-photo-bg > * { position: relative; z-index: 2; }

/* Círculo branco sobreposto à foto (assinatura visual) */
.composition-circle {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.5);
  background-size: cover;
  background-position: center;
}

/* ---------- BRAND STACK — lista editorial vertical ---------- */
.brand-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.brand-stack-item {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-size: clamp(32px, 4.5vw, 56px);
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);

}
.brand-stack-item img { max-height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }

/* ---------- VENN DIAGRAM (página 14) ---------- */
.venn { position: relative; width: 100%; max-width: 760px; margin: 64px auto; aspect-ratio: 16/9; }
.venn-circle {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 32px;
}
.venn-circle--left { left: 0; }
.venn-circle--right { right: 0; border-style: dashed; border-color: rgba(255,255,255,0.45); }
.venn-overlap {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  z-index: 2;
}
.venn-label {
  position: absolute;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0;
  line-height: 1.5;
}
.venn-label--tl { top: -10px; left: 6%; }
.venn-label--tr { top: -10px; right: 6%; text-align: right; }
@media (max-width: 600px) {
  .venn { aspect-ratio: 1; max-width: 320px; }
  .venn-circle { width: 78%; }
  .venn-circle--left { left: 0; top: 0; transform: none; }
  .venn-circle--right { right: 0; top: auto; bottom: 0; transform: none; }
  .venn-overlap { width: 18%; }
  .venn-label--tl, .venn-label--tr { position: static; text-align: center; display: block; margin: 12px 0; }
}

/* ---------- TRÊS CÍRCULOS PARCERIAS (página 15-17) ---------- */
.three-circles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  margin: 64px 0;
}
.three-circles::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 20%; right: 20%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
@media (max-width: 800px) {
  .three-circles { grid-template-columns: 1fr; gap: 64px; }
  .three-circles::before { display: none; }
}
.three-circle-item { text-align: center; position: relative; z-index: 2; }
.three-circle-item h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 32px; font-weight: 500; }
.three-circle-dot {
  width: 200px; height: 200px;
  margin: 0 auto 32px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: all var(--transition);
}
.three-circle-item--active .three-circle-dot { background: rgba(255,255,255,0.85); border-color: #fff; }
.three-circle-item--active h4 { color: #fff; }
.three-circle-item:not(.three-circle-item--active) { opacity: 0.55; }
.three-circle-text { font-size: 14px; color: var(--fg-muted); max-width: 280px; margin: 0 auto; line-height: 1.6; }

/* ---------- PHONE MOCKUP (página 6 — Instagram) ---------- */
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9/19;
  background: #000;
  border: 8px solid #1a1a1a;
  border-radius: 36px;
  padding: 14px 10px;
  margin: 0 auto;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
}
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 80px; height: 18px; background: #1a1a1a; border-radius: 12px; z-index: 2; }
.phone-screen {
  background: #fff;
  color: #000;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  padding: 28px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* .phone-header removido — código morto, era único font-family não-Lato */
.phone-comment { display: grid; grid-template-columns: 28px 1fr; gap: 8px; font-size: 10px; line-height: 1.4; text-align: left; }
.phone-comment-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #f09433 0%, #bc1888 100%); }
.phone-comment-author { font-weight: 500; }
.phone-comment-meta { color: #888; font-size: 9px; margin-top: 2px; }

/* ---------- BAR CHART (página 7 — engajamento) ---------- */
.barchart { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(8px, 1.5vw, 24px); align-items: end; margin: 48px 0 16px; min-height: 360px; }
.barchart-col { display: flex; flex-direction: column; align-items: center; }
.barchart-avatar {
  width: clamp(40px, 5vw, 56px); height: clamp(40px, 5vw, 56px);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255,255,255,0.25);
  margin-bottom: 12px;
  background-color: #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
}
.barchart-bar { width: 100%; background: rgba(255,255,255,0.92); }
.barchart-label { font-family: var(--font-body); font-size: 13px; color: var(--fg-muted); margin-top: 12px; }
.barchart-col--featured .barchart-bar { background: #fff; }

/* ---------- SHOW CARDS ---------- */
.show-list { display: flex; flex-direction: column; gap: 0; }
.show-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: padding var(--transition);
}
.show-card:first-child { border-top: 1px solid var(--line-soft); }
.show-card:hover { padding-left: 16px; }
.show-date { font-family: var(--font-display); line-height: 1; text-align: left; }
.show-date .day { display: block; font-size: 56px; font-weight: 400; }
.show-date .month { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); margin-top: 8px; }
.show-info h3 { font-size: 28px; margin-bottom: 4px; font-weight: 500; }
.show-info p { font-size: 14px; color: var(--fg-muted); margin: 0; letter-spacing: 0; }
.show-card.is-sold-out { opacity: 0.4; }
.sold-out-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 0;
  border: none;
}
@media (max-width: 700px) { .show-card { grid-template-columns: 1fr; gap: 8px; text-align: center; } .show-date { text-align: center; } }

/* ---------- COMPARE (Formatos) ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { padding: 64px 48px; border-right: 1px solid var(--line); position: relative; }
.compare-card:last-child { border-right: none; }
@media (max-width: 900px) { .compare-card { border-right: none; border-bottom: 1px solid var(--line); } .compare-card:last-child { border-bottom: none; } }
.compare-card h3 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 8px; font-weight: 400; }
.compare-card h3 em { font-style: italic; }
.compare-card .compare-sub { font-style: italic; font-family: var(--font-display); color: var(--fg-muted); margin-bottom: 32px; font-size: 20px; }
.compare-specs { display: grid; gap: 16px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line-soft); }
.compare-spec { display: flex; justify-content: space-between; align-items: baseline; }
.compare-spec dt { color: var(--fg-muted); font-size: 13px; letter-spacing: 0; text-transform: uppercase; font-family: var(--font-body); }
.compare-spec dd { margin: 0; font-family: var(--font-display); font-size: 24px; }

/* ---------- REPERTORIO ---------- */
.rep-group { margin-bottom: 80px; }
.rep-group-title { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.rep-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px 48px; }
.rep-item { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line-soft); transition: padding var(--transition); }
.rep-item:hover { padding-left: 12px; }
.rep-item strong { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.rep-item span { font-size: 13px; color: var(--fg-muted); font-style: italic; }

/* ---------- FORM ---------- */
.form-shell { max-width: 720px; margin: 0 auto; }
.form-row { display: grid; gap: 24px; margin-bottom: 24px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row.cols-2 { grid-template-columns: 1fr; } }
.form-field label, .field-label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 10px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="number"], select, textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color var(--transition);
}
input:focus, select:focus, textarea:focus { outline: none; border-bottom-color: #fff; }
textarea { min-height: 120px; resize: vertical; }
.form-intent { display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 48px; justify-content: center; }
.intent-pill {
  padding: 0 0 6px;
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.intent-pill:hover { color: var(--fg); }
.intent-pill.is-active { color: var(--fg); border-bottom-color: var(--fg); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line-soft); padding: 96px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 80px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 24px; font-weight: 400; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 15px; color: var(--fg); opacity: 0.85; font-family: var(--font-display); }
.footer-col a:hover { opacity: 1; }
.footer-brand { max-width: 340px; }
.footer-brand p { font-size: 14px; color: var(--fg-muted); margin-top: 20px; line-height: 1.6; }
.footer-socials { display: flex; gap: 24px; margin-top: 28px; align-items: center; }
.footer-socials a { display: inline-flex; align-items: center; justify-content: center; color: var(--fg-muted); transition: color var(--transition); padding: 0; border: none; background: transparent; }
.footer-socials a:hover { color: var(--fg); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--fg-dim); letter-spacing: 0; }

/* ---------- PAGE HEADER ---------- */
.page-header { padding: 200px 0 80px; text-align: center; position: relative; }
.page-header h1 { font-size: clamp(40px, 6.5vw, 84px); font-weight: 400; margin: 0; line-height: 0.95; }
.page-header .lead { margin: 32px auto 0; }

/* ---------- ALBUM ---------- */
.album-card { display: grid; gap: 16px; }
.album-cover { aspect-ratio: 1; background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-card) 100%); border: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: center; }
.album-cover-text { font-family: var(--font-display); font-size: clamp(40px, 6vw, 80px); font-weight: 400; font-style: italic; }
.album-meta { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.2em; text-transform: uppercase; }
.album-title { font-size: 26px; margin-bottom: 8px; }

/* ---------- TESTIMONIAL ---------- */
.testimonial { padding: 32px 0; border-top: 1px solid var(--line-soft); }
.testimonial p { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 20px; line-height: 1.5; color: var(--fg); margin-bottom: 16px; }
.testimonial-author { font-size: 12px; color: var(--fg-muted); letter-spacing: 0; }

/* ---------- CTA BAND ---------- */
.cta-band { background: var(--bg); border-top: 1px solid var(--line-soft); text-align: center; }
.cta-band-inner { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.cta-band h2 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 24px; font-weight: 400; }

/* ---------- ERROR 404 ---------- */
.error-page { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 200px 32px 80px; }
.error-page .num { font-family: var(--font-display); font-size: clamp(140px, 22vw, 280px); line-height: 1; font-style: italic; }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; padding-left: 40px; max-width: 720px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 64px; }
.timeline-item::before { content: ''; position: absolute; left: -40px; top: 12px; width: 15px; height: 15px; border-radius: 50%; background: var(--bg); border: 2px solid #fff; }
.timeline-year { font-family: var(--font-display); font-size: 40px; color: #fff; margin-bottom: 8px; font-style: italic; }
.timeline-text { color: var(--fg-muted); margin: 0; max-width: 56ch; }

/* ---------- UTILS ---------- */
.ratio-16-9 { position: relative; padding-top: 56.25%; overflow: hidden; }
.ratio-16-9 iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.divider { width: 60px; height: 1px; background: var(--line); margin: 24px 0; }
.divider-center { margin: 24px auto; }

.mt-0 { margin-top: 0; } .mt-1 { margin-top: 16px; } .mt-2 { margin-top: 32px; } .mt-3 { margin-top: 48px; } .mt-4 { margin-top: 64px; } .mt-5 { margin-top: 96px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 16px; } .mb-2 { margin-bottom: 32px; } .mb-3 { margin-bottom: 48px; } .mb-4 { margin-bottom: 64px; } .mb-5 { margin-bottom: 96px; }

/* ---------- REVEAL (progressive enhancement: visível por padrão, JS adiciona efeito) ---------- */
[data-reveal] { opacity: 1; transform: none; transition: opacity 1000ms ease, transform 1000ms cubic-bezier(0.16, 1, 0.3, 1); }
/* JS adiciona .js-reveal-ready no <html>, que ativa o efeito */
.js-reveal-ready [data-reveal] { opacity: 0; transform: translateY(24px); }
.js-reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 120ms; }
[data-reveal][data-delay="2"] { transition-delay: 240ms; }
[data-reveal][data-delay="3"] { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
@media print {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .site-header { position: static !important; }
}

/* ---------- PRESS ---------- */
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0; border-top: 1px solid var(--line-soft); }
.press-card { padding: 40px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); transition: background var(--transition); }
.press-card:hover { background: rgba(255,255,255,0.02); }
.press-source { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 16px; }
.press-card h3 { font-size: 22px; margin-bottom: 16px; line-height: 1.3; font-weight: 500; }
.press-card a { font-size: 12px; color: var(--fg-muted); letter-spacing: 0; }

/* ---------- SECTIONS — todas em preto, variando apenas com sub-pretos ---------- */
.section--deep { background: var(--bg); }
.section--rich { background: var(--bg-alt); }
.section--warm, .section--cream { background: var(--bg-alt); color: var(--fg); }
.section--warm h1, .section--warm h2, .section--warm h3, .section--warm h4,
.section--cream h1, .section--cream h2, .section--cream h3, .section--cream h4 { color: var(--fg); }
.section--warm em, .section--cream em { color: var(--accent-blue); }

/* Foto colorida pura (sem overlay escurecedor) */
.split-photo-img--pure::after { display: none !important; }
.split-photo-img--pure { filter: none !important; }
.split-photo-img--pure { background-blend-mode: normal; }

/* ============================================================================
   DNA LOÏC NOTTET: cursor custom + loading screen + marquee + parallax + transitions
   ============================================================================ */

/* ---------- CURSOR CUSTOM ---------- */
@media (hover: hover) and (pointer: fine) {
  html, body { cursor: none; }
  a, button, [role="button"], input, textarea, select, .show-card, .gallery-photo, .portal-card { cursor: none; }
  .cursor {
    position: fixed; top: 0; left: 0;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #fff;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 280ms cubic-bezier(0.16, 1, 0.3, 1),
                height 280ms cubic-bezier(0.16, 1, 0.3, 1),
                background 280ms ease,
                mix-blend-mode 0ms;
    mix-blend-mode: difference;
    will-change: transform;
  }
  .cursor.is-hover {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.4);
  }
  .cursor.is-link {
    width: 64px; height: 64px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.8);
  }
  .cursor-trail {
    position: fixed; top: 0; left: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }
}

/* ---------- LOADING SCREEN ---------- */
.loader {
  position: fixed; inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 800ms ease, visibility 0s 800ms;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  animation: loaderFloat 2s ease-in-out infinite;
}
@keyframes loaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.loader-progress {
  display: none; /* removido — substituído por contador tipográfico */
}
.loader-text {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---------- MARQUEE (faixa rolante de texto) ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  animation: marqueeRoll 40s linear infinite;
  padding-right: 64px;
}
.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--fg);
  letter-spacing: -0.02em;

}
.marquee-item--muted { color: var(--fg-dim); }
.marquee-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-blue);
  flex-shrink: 0;
}
@keyframes marqueeRoll {
  to { transform: translateX(-50%); }
}

/* ---------- PARALLAX (data-parallax="0.3" no JS controla) ---------- */
[data-parallax] {
  will-change: transform;
}

/* ---------- TRANSIÇÃO DE PÁGINA (overlay slide) ---------- */
.page-transition {
  position: fixed; inset: 0;
  background: #000;
  z-index: 9000;
  transform: translateY(100%);
  pointer-events: none;
}
.page-transition.is-leaving {
  animation: pageOut 600ms cubic-bezier(0.86, 0, 0.07, 1) forwards;
}
.page-transition.is-entering {
  transform: translateY(0);
  animation: pageIn 600ms cubic-bezier(0.86, 0, 0.07, 1) forwards;
}
@keyframes pageOut { to { transform: translateY(0); } }
@keyframes pageIn  { to { transform: translateY(-100%); } }

/* ---------- REVEALS — versão Loïc (stagger + clip-path) ---------- */
.reveal-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.reveal-mask > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-mask.is-visible > span { transform: translateY(0); }

/* ---------- SCROLL INDICATOR — removido (parecia muito "Linear app") ---------- */
.scroll-progress { display: none; }

/* ---------- PORTAL CARDS V2 (foto bg + número gigante) ---------- */
.portal-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .portal-grid-v2 { grid-template-columns: 1fr; } }

.portal-v2 {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: var(--fg);
  isolation: isolate;
}
.portal-v2::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
  transition: background 600ms ease;
}
.portal-v2:hover::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.95) 100%);
}
.portal-v2-num {
  position: absolute;
  top: 24px; left: 28px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(80px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fg);

  mix-blend-mode: overlay;
  opacity: 0.65;
}
.portal-v2-content {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 2;
}
.portal-v2-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.portal-v2-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 12px;

}
.portal-v2-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 36ch;
  letter-spacing: 0;
}
.portal-v2::after {
  content: '→';
  position: absolute;
  right: 28px; top: 28px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--fg);
  opacity: 0.7;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), opacity 400ms ease;
}
.portal-v2:hover::after { transform: translate(6px, -6px); opacity: 1; }

/* ---------- PORTAL CARDS LEGADO (mantido pra compatibilidade outras páginas) ---------- */
.portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .portal-grid { grid-template-columns: 1fr; } }
.portal-card {
  padding: clamp(40px, 6vw, 80px) clamp(32px, 4vw, 48px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  position: relative;
  transition: background var(--transition);
}
.portal-card:last-child { border-right: none; }
@media (max-width: 900px) { .portal-card { border-right: none; border-bottom: 1px solid var(--line); } .portal-card:last-child { border-bottom: none; } }
.portal-card:hover { background: rgba(255,255,255,0.02); }
.portal-card-num { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--fg-muted); letter-spacing: 0; }
.portal-card-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 400; margin: 24px 0 16px; line-height: 1.05; }
.portal-card-title em { font-style: italic; }
.portal-card-text { color: var(--fg-muted); font-size: 14px; margin-bottom: 24px; max-width: 32ch; }
.portal-card-arrow { font-family: var(--font-display); font-size: 24px; color: var(--fg-muted); transition: transform var(--transition), color var(--transition); }
.portal-card:hover .portal-card-arrow { transform: translateX(8px); color: #fff; }

/* ---------- GALLERY 2UP (estilo "Fotos em shows" Lei Rouanet) ---------- */
.gallery-show { margin-bottom: 80px; }
.gallery-show-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.gallery-show-title { font-family: var(--font-display); font-weight: 400; font-size: 28px; margin: 0; }
.gallery-show-title em { font-style: italic; }
.gallery-show-title .venue { font-weight: 500; }
.gallery-show-date { font-size: 12px; letter-spacing: 0.2em; color: var(--fg-muted); }
.gallery-2up { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .gallery-2up { grid-template-columns: 1fr; } }
.gallery-photo { aspect-ratio: 4/3; background-size: cover; background-position: center; border-radius: 8px; overflow: hidden; }

/* ---------- CLIPPING CARD com PRINT da matéria ---------- */
.clipping-list { display: flex; flex-direction: column; gap: 0; }
.clipping-card {
  display: grid;
  grid-template-columns: 320px 200px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line-soft);
  transition: padding var(--transition);
  text-decoration: none;
  color: inherit;
}
.clipping-card:last-child { border-bottom: 1px solid var(--line-soft); }
.clipping-card:hover { padding-left: 16px; }
@media (max-width: 1000px) {
  .clipping-card { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
}
.clipping-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center top;
  background-color: var(--bg-card);
  transition: transform var(--transition);
}
.clipping-card:hover .clipping-thumb { transform: scale(1.02); }
.clipping-veiculo { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 32px; color: var(--fg); line-height: 1; }
.clipping-data { font-size: 11px; letter-spacing: 0.2em; color: var(--fg-muted); margin-top: 8px; display: block; font-family: var(--font-body); }
.clipping-titulo { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--fg); line-height: 1.35; margin: 0; letter-spacing: -0.02em; }
.clipping-card .btn { white-space: nowrap; }

/* ---------- WALLBOARD MULTIMEDIA (página /multimedia — masonry irregular) ---------- */
.wall {
  column-count: 3;
  column-gap: 20px;
  margin-top: 48px;
}
@media (max-width: 1000px) { .wall { column-count: 2; } }
@media (max-width: 640px)  { .wall { column-count: 1; } }

.wall-tile {
  display: block;
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  color: var(--fg);
  text-decoration: none;
}
.wall-tile-img {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: block;
}
.wall-tile-img--1x1 { aspect-ratio: 1/1; }
.wall-tile-img--4x5 { aspect-ratio: 4/5; }
.wall-tile-img--3x4 { aspect-ratio: 3/4; }
.wall-tile-img--16x9 { aspect-ratio: 16/9; }
.wall-tile-img--9x16 { aspect-ratio: 9/16; }
.wall-tile-img--2x3 { aspect-ratio: 2/3; }

.wall-tile-meta {
  padding: 20px 24px;
}
.wall-tile-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 8px;
}
.wall-tile-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  margin: 0;
  letter-spacing: -0.02em;

}
.wall-tile-sub { font-family: var(--font-body); font-size: 12px; color: var(--fg-muted); margin-top: 6px; letter-spacing: 0; }

/* Tile com vídeo/iframe (Spotify, YouTube) */
.wall-tile-embed {
  width: 100%;
  display: block;
  border: 0;
}
.wall-tile-embed--spotify-artist { height: 380px; }
.wall-tile-embed--spotify-track { height: 152px; }
.wall-tile-embed--youtube { aspect-ratio: 16/9; }

/* Tile de quote tipográfico (sem foto) */
.wall-tile-quote {
  padding: 32px 28px;
  background: var(--bg-alt);
}
.wall-tile-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  color: var(--fg);
  margin: 0 0 16px;
  letter-spacing: -0.02em;

}
.wall-tile-quote cite {
  font-family: var(--font-body);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Tile Instagram-style (post mockup) */
.wall-tile-ig {
  background: #fff;
  color: #000;
  padding: 14px 16px 18px;
}
.wall-tile-ig-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
  font-family: var(--font-body); font-size: 13px;
}
.wall-tile-ig-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #f09433 0%, #bc1888 100%); }
.wall-tile-ig-author { font-weight: 600; font-size: 13px; }
.wall-tile-ig-body { font-size: 12px; line-height: 1.5; color: #222; }
.wall-tile-ig-meta { font-size: 11px; color: #888; margin-top: 8px; }

/* Hover effect */
a.wall-tile { transition: transform var(--transition); }
a.wall-tile:hover { transform: translateY(-4px); }
.wall-tile-img { transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1); }
a.wall-tile:hover .wall-tile-img { transform: scale(1.04); }

/* ---------- TURNÊ LIST (estilo página da agenda Lei Rouanet) ---------- */
.tour-table { width: 100%; border-collapse: collapse; }
.tour-table tr { border-bottom: 1px solid var(--line-soft); }
.tour-table tr:first-child { border-top: 1px solid var(--line-soft); }
.tour-table td { padding: 20px 12px; font-family: var(--font-display); font-size: 20px; }
.tour-table td:first-child { padding-left: 0; font-weight: 500; color: var(--fg-muted); width: 100px; }
.tour-table td:nth-child(2) { font-weight: 500; }
.tour-table td:nth-child(3) { color: var(--fg-muted); font-style: italic; }
.tour-table td:last-child { padding-right: 0; text-align: right; }
.tour-table .tour-status { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-dim); }
.tour-table .tour-status--em-breve { color: var(--fg-muted); }

/* ==============================================================
   RESPONSIVE REFINEMENTS — pass final (2026-05-28)
   Breakpoints padronizados: 1024 / 800 / 640 / 480
   Mobile-first ajustes pra hero, splits, tour-table, timeline,
   form intent, footer e safe-areas iOS.
   ============================================================== */

/* Prevent horizontal scroll global */
html, body { overflow-x: hidden; max-width: 100%; }
img, video { max-width: 100%; }

/* Tablet large (≤1024) */
@media (max-width: 1024px) {
  .container, .container-wide { padding: 0 28px; }
  .page-header { padding: 160px 0 64px; }
  .page-header h1 { font-size: clamp(36px, 7vw, 64px); }
  .section { padding-block: clamp(64px, 10vw, 120px); }
}

/* Tablet portrait (≤800) */
@media (max-width: 800px) {
  .container, .container-wide { padding: 0 24px; }
  .page-header { padding: 140px 0 56px; }
  .page-header h1 { font-size: clamp(32px, 8vw, 56px); }
  .page-header .lead { font-size: 16px; max-width: 90%; }

  /* Hero */
  .hero-pdf-bottom { padding: 0 24px 56px; gap: 20px; }
  .hero-pdf-tagline { max-width: 100%; font-size: clamp(26px, 6.5vw, 38px); }
  .hero-pdf-ctas { gap: 14px; }
  .hero-pdf-ctas .btn { font-size: 12px; }
  .hero-scroll { display: none; } /* não atrapalha em mobile */

  /* Split foto + texto */
  .split-photo-text { padding: 56px 24px; }
  .split-photo-img { min-height: 60vh; }

  /* Section spacing */
  .section { padding-block: clamp(48px, 9vw, 88px); }

  /* Tour table: linhas que respiram */
  .tour-table tr { display: block; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .tour-table td { display: block; padding: 4px 0; font-size: 16px; text-align: left !important; width: auto !important; }
  .tour-table td:first-child { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); font-weight: 400; padding-top: 4px; }
  .tour-table td:nth-child(2) { font-size: 22px; }
  .tour-table td:last-child { padding-top: 8px; padding-bottom: 4px; }

  /* Timeline clean (o-projeto): ano em cima do texto */
  .timeline-clean li { grid-template-columns: 1fr !important; gap: 8px !important; padding: 28px 0 !important; }
  .timeline-clean .timeline-year { font-size: 28px !important; }

  /* Edge-to-edge quote sections (containers absolutos) */
  .section[style*="background-image"] [style*="position:absolute"][style*="left:32px"] {
    left: 24px !important; right: 24px !important;
  }

  /* Compare specs */
  .compare-spec { flex-wrap: wrap; gap: 4px; }
  .compare-spec dd { font-size: 18px; }
  .eyebrow::after { width: 60px; }

  /* Form intent */
  .form-intent { gap: 14px 18px; justify-content: flex-start; }
  .intent-pill { font-size: 12px; }

  /* Wallboard /multimedia: tiles compactos */
  .wall-tile-meta { padding: 16px !important; }

  /* Site logo já reduzido em rule anterior; reforço */
  .site-header { padding: 18px 0; }
  .site-header.is-scrolled { padding: 12px 0; }

  /* Footer compacto */
  .site-footer { padding: 64px 0 24px; }
  .footer-grid { margin-bottom: 48px; }
  .footer-bottom { font-size: 11px; flex-direction: column; align-items: flex-start; }
}

/* Mobile large (≤640) */
@media (max-width: 640px) {
  .container, .container-wide { padding: 0 20px; }
  .page-header { padding: 120px 0 40px; }
  .hero-pdf-bottom { padding: 0 20px 40px; }
  .hero-pdf { min-height: 78vh !important; }
  .split-photo-text { padding: 48px 20px; }
  .split-photo-img { min-height: 52vh; }

  /* Giant num menor */
  .giant-num { font-size: clamp(40px, 11vw, 72px); }
  .platform-block { padding: 32px 0; }
  .platform-icon { width: 64px; height: 64px; }

  /* Section padding mais enxuto */
  .section { padding-block: clamp(40px, 8vw, 72px); }

  /* Form fields */
  input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
  select, textarea { font-size: 15px; padding: 12px 0; }
}

/* Mobile (≤480) */
@media (max-width: 480px) {
  .container, .container-wide { padding: 0 16px; }
  .site-header { padding: 14px 0; }
  .site-header.is-scrolled { padding: 10px 0; }
  .site-header .brand-logo { height: 52px !important; }
  .loader-logo .brand-logo { height: 110px !important; }
  .footer-brand .brand-logo { height: 76px !important; }

  /* Hero CTAs vão pra coluna em mobile pequena */
  .hero-pdf-ctas { flex-direction: column; align-items: flex-start; width: 100%; }
  .hero-pdf-ctas .btn { font-size: 12px; }

  /* Headers menores */
  .page-header h1 { font-size: clamp(28px, 9vw, 44px); }

  /* Lead-serif menor */
  .lead-serif { font-size: clamp(16px, 4.5vw, 20px); }

  /* Buttons-lg menos volumosos */
  .btn--lg { font-size: 13px; padding-bottom: 10px; }

  /* Wallboard quote sources */
  .wall-tile-quote { padding: 24px !important; }
}

/* iOS safe-areas (iPhone notch / Dynamic Island) */
@supports (padding: max(0px)) {
  .site-header .container-wide {
    padding-left: max(28px, env(safe-area-inset-left));
    padding-right: max(28px, env(safe-area-inset-right));
  }
  .hero-pdf-bottom {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}

/* Touch devices: aumenta área de toque dos links/botões pequenos */
@media (hover: none) and (pointer: coarse) {
  .btn { padding-bottom: 10px; }
  .intent-pill { padding: 4px 0 10px; }
  .footer-socials a { padding: 6px; }
  .menu-toggle { padding: 12px; }
}
