/* ══════════════════════════════════════════════════════════════
   16º Festival Hercule Florence · 2026
   Sistema visual herdado da apresentação v39.
   ══════════════════════════════════════════════════════════════ */

:root {
  --white:    #ffffff;
  --white-2:  #f5f5f5;
  --ink:      #0e0d0b;
  --ink-2:    #1c1a17;
  --grey-1:   #2e2c28;
  --grey-2:   #5a5750;
  --grey-3:   #8c897f;
  --grey-4:   #bbb8b0;
  --grey-5:   #d8d5cc;
  --acento:    #2A7D0B;   /* verde da campanha, fechado para ler sobre branco */
  --acento-lt: #4CE01E;   /* o neon da arte, para fundo escuro */
  --laranja:   #e2751a;   /* SESC e Senac, e o eixo Transformações Urbanas */
  --rule:     rgba(14,13,11,0.09);
  --rule-lt:  rgba(255,255,255,0.14);
  --shadow:   0 18px 50px rgba(14,13,11,0.16);
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }   /* height:auto evita a distorção do logo */
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--acento); outline-offset: 3px; }

/* ─── TIPOGRAFIA ─────────────────────────────────────────────── */
.label {
  font-size: 9px; font-weight: 400; letter-spacing: 0.55em;
  text-transform: uppercase; color: var(--acento);
  display: block; margin-bottom: 28px;
}
.label.light { color: var(--acento-lt); }

.h-huge, .h-big, .h-mid {
  font-family: 'Bebas Neue', Impact, sans-serif;
  line-height: 0.9; letter-spacing: -0.01em; color: var(--ink);
}
.h-huge { font-size: clamp(64px, 11vw, 170px); line-height: 0.86; }
.h-big  { font-size: clamp(44px, 7vw, 100px); }
.h-mid  { font-size: clamp(30px, 4vw, 54px); }
.italic {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic; font-size: 0.86em; letter-spacing: 0;
  color: var(--acento);
}
.acento { color: var(--acento); }
/* sobre fundo escuro o acento é o neon da campanha; sobre branco, a versão fechada */
.dark .italic,  .prog .italic,  .bleed .italic,  .hero .italic,  .footer .italic,
.dark .acento,  .prog .acento,  .bleed .acento,  .hero .acento,  .footer .acento {
  color: var(--acento-lt);
}
.dark .h-huge, .dark .h-big, .dark .h-mid { color: var(--white); }

.body-text { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.72; font-weight: 300; color: var(--grey-2); }
.dark .body-text { color: rgba(255,255,255,0.72); }

/* ─── ESTRUTURA ──────────────────────────────────────────────── */
.section { position: relative; padding: clamp(80px, 11vh, 140px) 0; overflow: hidden; }
.section.dark { background: var(--ink-2); color: var(--white); }
.wrap {
  width: 100%; max-width: 1560px; margin: 0 auto; position: relative; z-index: 2;
  padding: 0 clamp(22px, 4vw, 64px);
}
/* faixa que rompe o container e vai de ponta a ponta da tela */
.full { width: 100vw; margin-left: calc(50% - 50vw); }
.section-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.04; filter: grayscale(100%); pointer-events: none;
}
.section.dark .section-bg { opacity: 0.12; filter: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ─── BARRA SUPERIOR ─────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 42px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--rule);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.topbar.show { transform: none; }
.topbar-logo { display: flex; align-items: center; }
.topbar-logo-img { width: auto; height: clamp(38px, 5.4vw, 54px); }
.topbar-right { display: flex; align-items: center; gap: clamp(10px, 2vw, 22px); }
.topbar-link {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--grey-2);
  font-weight: 400; transition: color 0.3s;
}
.topbar-link:hover { color: var(--acento); }
@media (max-width: 720px) { .topbar-link { display: none; } }

/* ─── BOTÃO DIAFRAGMA ────────────────────────────────────────── */
.aperture {
  position: relative; width: 42px; height: 42px; flex: none;
  display: grid; place-items: center; border-radius: 50%;
  transition: background 0.4s var(--ease);
}
.aperture:hover { background: rgba(76,224,30,0.10); }
.aperture svg { width: 30px; height: 30px; overflow: visible; }
.ap-blade {
  fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-linejoin: round;
  transform-origin: 50% 50%;
  transition: transform 0.65s var(--ease), stroke 0.4s;
}
.aperture:hover .ap-blade, .aperture[aria-expanded="true"] .ap-blade { stroke: var(--acento); }
.aperture:hover .ap-blade { transform: rotate(30deg) scale(0.82); }
.aperture[aria-expanded="true"] .ap-blade { transform: rotate(60deg) scale(0.55); }
.aperture-label {
  position: absolute; bottom: -13px; left: 50%; transform: translateX(-50%);
  font-size: 8.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-3);
  white-space: nowrap; pointer-events: none;
}
.hero .aperture .ap-blade { stroke: var(--white); }
.hero .aperture-label { color: rgba(255,255,255,0.6); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,9,8,0.95) 0%, rgba(10,9,8,0.86) 22%,
                            rgba(10,9,8,0.5) 52%, rgba(10,9,8,0.16) 74%, rgba(10,9,8,0.55) 100%);
}
.hero-topbar {
  position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px, 2.4vh, 24px) clamp(18px, 4vw, 42px); margin-bottom: auto;
}
.hero-logo { width: clamp(170px, 19vw, 300px); opacity: 0.95;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.6)); }
.hero-content { position: relative; z-index: 3; padding: 0 clamp(22px, 5vw, 80px) clamp(30px, 5.5vh, 72px); }
.hero-eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); margin-bottom: clamp(12px, 2vh, 20px);
}
.hero-eyebrow .dot { color: var(--acento-lt); }
.hero-title {
  font-family: 'Bebas Neue', sans-serif; color: var(--white);
  /* respeita a altura da janela: o bloco inteiro precisa caber em 100svh */
  font-size: clamp(44px, min(12.5vw, 12.5vh), 200px);
  line-height: 0.82; letter-spacing: -0.015em;
}
.hero-title span { display: block; }
.hero-title .l3 { color: var(--acento-lt); }
.hero-tema {
  margin-top: 20px; max-width: 620px;
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(16px, min(2.2vw, 3.2vh), 30px); line-height: 1.3; color: rgba(255,255,255,0.92);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(20px, 3.4vh, 34px); }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 28px; border-radius: 2px;
  background: var(--acento); color: var(--white);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.btn:hover { background: var(--acento-lt); }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.34); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.hero-scroll {
  position: absolute; right: clamp(22px, 5vw, 80px); bottom: clamp(38px, 7vh, 76px);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 8px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.hero-scroll::before {
  content: ''; width: 1px; height: 52px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop { 0%,100% { transform: scaleY(0.4); transform-origin: top; } 50% { transform: scaleY(1); } }
@media (max-width: 860px) { .hero-scroll { display: none; } }

/* ─── EIXOS ──────────────────────────────────────────────────── */
.eixos { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); margin-top: 56px; }
.eixo { padding-top: 0; }
.eixo-foto {
  height: 96px; margin-bottom: 20px; background-size: cover; background-position: center;
  filter: grayscale(100%) contrast(1.05); border-bottom: 2px solid transparent;
  transition: filter 0.6s var(--ease);
}
.eixo:hover .eixo-foto { filter: none; }

.eixo-title { font-family: 'Bebas Neue', sans-serif; font-size: 36px; line-height: 0.98; margin: 0 0 14px; }
.eixo-body { font-size: 15px; }
.eixo:nth-child(1) .eixo-title { color: #6d7a33; }   /* território e natureza — verde queimado */
.eixo:nth-child(2) .eixo-title { color: #c22118; }   /* povos originários — vermelho */
.eixo:nth-child(3) .eixo-title { color: var(--laranja); }   /* transformações urbanas — laranja */
.eixo:nth-child(1) .eixo-foto { border-bottom-color: #6d7a33; }
.eixo:nth-child(2) .eixo-foto { border-bottom-color: #c22118; }
.eixo:nth-child(3) .eixo-foto { border-bottom-color: var(--laranja); }
.eixo-body { font-size: 14px; line-height: 1.66; font-weight: 300; color: var(--grey-2); }
@media (max-width: 780px) { .eixos { grid-template-columns: 1fr; gap: 26px; } }

/* ─── BENTO ──────────────────────────────────────────────────── */
.bento {
  display: grid; gap: 6px; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 22vh, 280px); margin-top: 44px;
}
.bento-cell { overflow: hidden; }
.bento-cell {
  background-size: cover; background-position: center;
  filter: grayscale(100%) contrast(1.06);
  transition: filter 0.7s var(--ease), transform 1.1s var(--ease), background-size 1.1s var(--ease);
}
.bento-cell:hover { filter: none; transform: scale(1.09); z-index: 2; position: relative; }
.bento .c1 { grid-column: span 2; grid-row: span 2; }
.bento .c2 { grid-column: span 2; }
.bento .c3 { grid-column: span 1; }
.bento .c4 { grid-column: span 1; }
.bento .c5 { grid-column: span 4; }
@media (max-width: 780px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .c1 { grid-column: span 2; } .bento .c2 { grid-column: span 2; }
  .bento .c5 { grid-column: span 2; }
}

/* ─── AÇÕES (a cidade como tela) — grade 2x2, fotos em cores ─── */
.acoes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; margin-top: 52px; }
.acao {
  display: flex; flex-direction: row; align-items: stretch;
  background: var(--ink); color: var(--white); overflow: hidden;
}
.acao-txt { padding: clamp(22px, 2.6vw, 34px); flex: 1.15; display: flex; flex-direction: column; justify-content: center; }
.acao-foto {
  flex: 0 0 40%; background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease);
}
.acao:hover .acao-foto { transform: scale(1.06); }

.acao-label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--acento-lt); margin-bottom: 10px; }
.acao-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 2.4vw, 34px); line-height: 1.02; margin-bottom: 12px; color: var(--white); }
.acao-desc { font-size: 15px; line-height: 1.7; font-weight: 300; color: rgba(255,255,255,0.74); }
@media (max-width: 780px) {
  .acoes { grid-template-columns: 1fr; }
  .acao { flex-direction: column-reverse; }
  .acao-foto { flex: none; aspect-ratio: 16/9; }
}

/* ══════════════════════════════════════════════════════════════
   NAVEGADOR DE PROGRAMAÇÃO
   ══════════════════════════════════════════════════════════════ */
.prog { background: var(--white-2); }
.prog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.prog-count { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-3); }
.prog-count b { color: var(--acento); font-weight: 500; }

.prog-tabs { display: flex; gap: 2px; margin: 36px 0 0; background: var(--grey-5); padding: 2px; width: fit-content; }
.prog-tab {
  padding: 11px 26px;
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey-2);
  transition: background 0.4s var(--ease), color 0.3s;
}
.prog-tab[aria-selected="true"] { background: var(--ink); color: var(--white); }
@media (max-width: 560px) {
  .prog-tabs { width: 100%; }
  .prog-tab { flex: 1; padding: 11px 8px; letter-spacing: 0.16em; white-space: nowrap; }
}

.prog-toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 22px; }
.prog-search {
  flex: 1 1 260px; display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; background: var(--white); border: 1px solid var(--rule);
}
.prog-search input { flex: 1; border: none; background: none; font-size: 14px; font-weight: 300; }
.prog-search input:focus { outline: none; }
.prog-search svg { width: 15px; height: 15px; stroke: var(--grey-3); fill: none; stroke-width: 1.6; flex: none; }
.prog-clear { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey-3); padding: 6px 4px; }
.prog-clear:hover { color: var(--acento); }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.chip {
  padding: 8px 15px; border-radius: 2px; border: 1px solid var(--grey-5); background: var(--white);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-2);
  transition: all 0.3s var(--ease);
}
.chip:hover { border-color: var(--grey-3); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.chip .n { opacity: 0.5; margin-left: 6px; font-size: 9px; }

/* Grade de atividades */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin-top: 34px; }
.card {
  position: relative; text-align: left; background: var(--white); border: 1px solid var(--rule);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.5s var(--ease), border-color 0.4s;
  animation: cardIn 0.5s var(--ease) both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } }
.card:hover { border-color: var(--acento); }
.card-img { aspect-ratio: 16/10; background-size: cover; background-position: center; filter: grayscale(100%) contrast(1.05); transition: filter 0.6s; }
.card:hover .card-img { filter: none; }
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 9px; font-size: 8.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--grey-3); }
.card-tipo { color: var(--acento); }
.card-date { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.02em; line-height: 1; color: var(--ink); }
.card-title { font-family: 'Bebas Neue', sans-serif; font-size: 21px; line-height: 1.06; }
.card-local { font-size: 12.5px; font-weight: 300; color: var(--grey-2); margin-top: auto; padding-top: 8px; }
.card-artist { font-size: 12px; font-weight: 300; font-style: italic; color: var(--grey-3); }
.card.is-destaque { border-color: rgba(76,224,30,0.34); }
.card.is-destaque::before {
  content: '✦'; position: absolute; top: 12px; right: 14px; z-index: 2;
  color: var(--acento); font-size: 13px; text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.cards-empty { padding: 60px 0; text-align: center; color: var(--grey-3); font-weight: 300; }

/* Vista por dia (timeline vertical) */
.days { margin-top: 34px; border-top: 1px solid var(--rule); }
.day { display: grid; grid-template-columns: 150px 1fr; gap: clamp(16px, 3vw, 40px); padding: 26px 0; border-bottom: 1px solid var(--rule); }
.day-date { position: sticky; top: 92px; align-self: start; }
.day-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 64px); line-height: 0.86; }
.day-num .sep { color: var(--acento); font-size: 0.5em; vertical-align: middle; margin: 0 2px; }
.day-wd { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-3); margin-top: 6px; }
.day-tag { display: inline-block; margin-top: 10px; font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--acento); }
.day-items { display: flex; flex-direction: column; gap: 2px; }
.day-item {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  text-align: left; padding: 15px 16px; border-radius: 3px; transition: background 0.3s;
}
.day-item:hover { background: var(--white); }
.day-item-t { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 20px; line-height: 1.08; }
.day-item-l { display: block; font-size: 12.5px; font-weight: 300; color: var(--grey-2); margin-top: 3px; }
.day-item-r { font-size: 8.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey-3); text-align: right; white-space: nowrap; }
.day-item-r b { display: block; color: var(--acento); font-weight: 400; }
@media (max-width: 720px) {
  .day { grid-template-columns: 1fr; gap: 12px; }
  .day-date { position: static; display: flex; align-items: baseline; gap: 12px; }
  .day-wd, .day-tag { margin: 0; }
  .day-item { grid-template-columns: 1fr; }
  .day-item-r { text-align: left; }
}

/* Mapa esquemático */
.mapa { margin-top: 34px; display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.mapa-canvas {
  position: relative; aspect-ratio: 4/3; background: var(--white);
  border: 1px solid var(--rule); border-radius: 4px; overflow: hidden;
}
.mapa-textura {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: grayscale(100%); opacity: 0.07; pointer-events: none;
}
.mapa-grid { position: absolute; inset: 0; opacity: 0.5; }
.mapa-grid line { stroke: var(--rule); stroke-width: 0.4; }
.mapa-link { stroke: var(--grey-5); stroke-width: 0.6; stroke-dasharray: 2 3; }
.pin {
  position: absolute; transform: translate(-50%, -50%);
  display: grid; place-items: center; padding: 0;
}
.pin-dot {
  width: var(--s, 11px); height: var(--s, 11px); border-radius: 50%;
  background: var(--ink); border: 2px solid var(--white-2);
  box-shadow: 0 2px 8px rgba(14,13,11,0.22);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.pin:hover .pin-dot, .pin.on .pin-dot { background: var(--acento); transform: scale(1.22); }
.pin-n {
  position: absolute; font-family: 'Bebas Neue', sans-serif; font-size: 10px; color: var(--white);
  opacity: 0; transition: opacity 0.3s;
}
.pin.on .pin-n { opacity: 1; }
.pin-label {
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-2);
  white-space: nowrap; background: rgba(245,245,245,0.9); padding: 2px 5px; border-radius: 2px;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.pin:hover .pin-label, .pin.on .pin-label { opacity: 1; }
.mapa-note { font-size: 10px; letter-spacing: 0.1em; color: var(--grey-3); margin-top: 12px; font-weight: 300; }
.mapa-list { display: flex; flex-direction: column; }
.mapa-item {
  display: flex; align-items: baseline; gap: 12px; text-align: left;
  padding: 13px 4px; border-bottom: 1px solid var(--rule); transition: color 0.3s;
}
.mapa-item:hover, .mapa-item.on { color: var(--acento); }
.mapa-item-n { font-family: 'Bebas Neue', sans-serif; font-size: 15px; color: var(--grey-4); flex: none; width: 18px; }
.mapa-item.on .mapa-item-n, .mapa-item:hover .mapa-item-n { color: var(--acento); }
.mapa-item-nome { font-size: 14px; font-weight: 400; }
.mapa-item-b { font-size: 11px; font-weight: 300; color: var(--grey-3); }
.mapa-item-c { margin-left: auto; font-size: 10px; letter-spacing: 0.2em; color: var(--grey-3); }
@media (max-width: 880px) { .mapa { grid-template-columns: 1fr; } }

/* ─── DETALHE DA ATIVIDADE ───────────────────────────────────── */
.detail {
  position: fixed; inset: 0; z-index: 500; display: grid; place-items: end center;
  background: rgba(14,13,11,0.55); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.detail.open { opacity: 1; pointer-events: auto; }
.detail-panel {
  width: min(680px, 100%); max-height: 92vh; overflow-y: auto;
  background: var(--white); border-radius: 6px 6px 0 0;
  transform: translateY(40px); transition: transform 0.5s var(--ease);
}
.detail.open .detail-panel { transform: none; }
.detail-img { aspect-ratio: 21/9; background-size: cover; background-position: center; }
.detail-body { padding: clamp(24px, 4vw, 44px); }
.detail-close {
  position: sticky; top: 0; float: right; z-index: 3; margin: 14px 14px 0 0;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.9);
  display: grid; place-items: center; font-size: 16px; line-height: 1; color: var(--ink);
}
.detail-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey-3); margin-bottom: 16px; }
.detail-meta .tipo { color: var(--acento); }
.detail-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 4.4vw, 52px); line-height: 0.96; margin-bottom: 6px; }
.detail-artist { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 19px; color: var(--grey-2); margin-bottom: 20px; }
.detail-desc { font-size: 15px; line-height: 1.75; font-weight: 300; color: var(--grey-2); }
.detail-rows { margin-top: 26px; border-top: 1px solid var(--rule); }
.detail-row { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--rule); font-size: 13.5px; font-weight: 300; }
.detail-row dt { font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey-3); padding-top: 3px; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.btn-sm { padding: 12px 22px; font-size: 9px; }
.btn-dark { background: var(--ink); }
.btn-dark:hover { background: var(--grey-1); }
.btn-line { background: none; border: 1px solid var(--grey-5); color: var(--grey-1); }
.btn-line:hover { background: var(--white-2); border-color: var(--grey-3); }

/* ─── PAINEL DIAFRAGMA (menu) ────────────────────────────────── */
.panel {
  position: fixed; inset: 0; z-index: 400; background: rgba(14,13,11,0.97);
  color: var(--white); opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease);
  display: flex; flex-direction: column;
}
.panel.open { opacity: 1; pointer-events: auto; }
.panel-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px clamp(18px, 4vw, 42px); border-bottom: 1px solid var(--rule-lt); }
.panel-bar .aperture .ap-blade { stroke: var(--white); }
.panel-inner {
  flex: 1; overflow-y: auto; display: grid; grid-template-columns: 1fr 1.25fr;
  gap: clamp(24px, 5vw, 70px); padding: clamp(20px, 4vh, 56px) clamp(18px, 4vw, 42px);
  max-width: 1280px; width: 100%; margin: 0 auto;
}
.panel-col-t { font-size: 9px; letter-spacing: 0.44em; text-transform: uppercase; color: var(--acento-lt); margin-bottom: clamp(12px, 2vh, 24px); }
.panel-nav { display: flex; flex-direction: column; }
.panel-nav a {
  display: flex; align-items: baseline; gap: 16px; padding: clamp(7px, 1.3vh, 13px) 0;
  border-bottom: 1px solid var(--rule-lt);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(19px, min(3.2vw, 3.6vh), 40px); line-height: 1;
  color: rgba(255,255,255,0.82); transition: color 0.3s var(--ease), padding-left 0.4s var(--ease);
  opacity: 0; transform: translateY(14px);
}
.panel.open .panel-nav a { animation: panelIn 0.6s var(--ease) forwards; }
@keyframes panelIn { to { opacity: 1; transform: none; } }
.panel-nav a:hover { color: var(--acento-lt); padding-left: 12px; }
.panel-nav .n { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.2em; color: var(--grey-3); flex: none; }

/* Submenu da programação */
.panel-caret {
  width: 7px; height: 7px; margin-left: auto; align-self: center;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.4s var(--ease);
}
.panel-nav a.aberto .panel-caret { transform: rotate(-135deg) translateY(-2px); }
.panel-nav a.aberto { color: var(--acento-lt); }
.panel-sub { padding: 6px 0 16px 34px; border-bottom: 1px solid var(--rule-lt); }
.panel-sub-all {
  display: block; padding: 10px 0; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--acento-lt);
}
.panel-sub-all:hover { color: var(--white); }
.panel-sub-dia { display: grid; grid-template-columns: 78px 1fr; gap: 12px; padding: 7px 0; align-items: start; }
.panel-sub-d {
  text-align: left; font-family: 'Bebas Neue', sans-serif; font-size: 16px;
  color: rgba(255,255,255,0.9); line-height: 1.1;
}
.panel-sub-d span { display: block; font-family: 'DM Sans', sans-serif; font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-3); }
.panel-sub-d:hover { color: var(--acento-lt); }
.panel-sub-itens { display: flex; flex-direction: column; }
.panel-sub-item {
  text-align: left; padding: 5px 0; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.78); transition: color 0.25s, padding-left 0.25s;
}
.panel-sub-item:hover { color: var(--acento-lt); padding-left: 6px; }
.panel-sub-item i { font-style: normal; color: var(--acento-lt); margin-right: 5px; }
.panel-sub-item span { display: block; font-size: 11px; color: var(--grey-3); }

.panel-search { display: flex; align-items: center; gap: 12px; padding: 15px 20px; border: 1px solid var(--rule-lt); border-radius: 999px; background: rgba(255,255,255,0.04); }
.panel-search input { flex: 1; background: none; border: none; color: var(--white); font-size: 15px; font-weight: 300; }
.panel-search input::placeholder { color: rgba(255,255,255,0.36); }
.panel-search input:focus { outline: none; }
.panel-search svg { width: 16px; height: 16px; stroke: var(--acento-lt); fill: none; stroke-width: 1.6; }
.panel-days { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.panel-day {
  min-width: 44px; padding: 9px 10px; border-radius: 3px; border: 1px solid var(--rule-lt);
  font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: rgba(255,255,255,0.8);
  transition: all 0.3s var(--ease);
}
.panel-day:hover { background: var(--acento); border-color: var(--acento); color: var(--white); }
.panel-day .n { display: block; font-family: 'DM Sans', sans-serif; font-size: 7.5px; letter-spacing: 0.16em; color: var(--grey-3); }
.panel-day:hover .n { color: rgba(255,255,255,0.7); }
.panel-results { margin-top: 22px; display: flex; flex-direction: column; max-height: 42vh; overflow-y: auto; }
.panel-result {
  display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; text-align: left;
  padding: 13px 6px; border-bottom: 1px solid var(--rule-lt); transition: background 0.3s, padding-left 0.3s;
}
.panel-result:hover { background: rgba(255,255,255,0.05); padding-left: 12px; }
.panel-result-t { display: block; font-size: 15px; font-weight: 400; }
.panel-result-l { display: block; font-size: 11.5px; font-weight: 300; color: var(--grey-3); margin-top: 2px; }
.panel-result-d { font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: var(--acento-lt); white-space: nowrap; }
.panel-hint { font-size: 11px; font-weight: 300; color: var(--grey-3); margin-top: 16px; line-height: 1.6; }
@media (max-width: 880px) {
  .panel-inner { grid-template-columns: 1fr; }
  .panel-results { max-height: none; }
}

/* ─── FULL-BLEED / RESPIROS ──────────────────────────────────── */
.bleed { position: relative; min-height: 88svh; display: grid; align-items: center; overflow: hidden; }
.bleed-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.bleed.mono .bleed-bg { filter: grayscale(100%) contrast(1.1); }
.bleed-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,9,8,0.9) 0%, rgba(10,9,8,0.62) 45%, rgba(10,9,8,0.24) 100%); }
.bleed-overlay.right { background: linear-gradient(255deg, rgba(10,9,8,0.9) 0%, rgba(10,9,8,0.6) 45%, rgba(10,9,8,0.2) 100%); }
.bleed .wrap { color: var(--white); }
.bleed-eyebrow { font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--acento-lt); margin-bottom: 20px; }
.bleed-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(46px, 8vw, 128px); line-height: 0.86; }
.bleed-sub { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(17px, 2.1vw, 28px); color: rgba(255,255,255,0.88); margin-top: 18px; max-width: 560px; }
.bleed-credit { position: absolute; right: 22px; bottom: 18px; font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.bleed .wrap.right { margin-left: auto; text-align: right; }

/* Destaque Máscaras */
.destaque-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 5vw, 70px); align-items: center; }
.destaque-stats { display: flex; gap: clamp(20px, 3vw, 44px); margin-bottom: 26px; }
.stat-n { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 5vw, 62px); line-height: 0.9; color: var(--acento-lt); }
.stat-l { font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }
.destaque-note { margin-top: 22px; padding-left: 18px; border-left: 2px solid var(--acento); font-family: 'DM Serif Display', serif; font-style: italic; font-size: 17px; color: rgba(255,255,255,0.9); }
@media (max-width: 880px) { .destaque-grid { grid-template-columns: 1fr; } }

/* ─── PARCERIAS ──────────────────────────────────────────────── */
.parcerias { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 48px; background: var(--rule); }
.parceria { background: var(--white); padding: 34px clamp(20px, 2.4vw, 34px); }
.parceria-tag { font-size: 8px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--acento); margin-bottom: 14px; }
.parceria-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; line-height: 1.02; margin-bottom: 10px; }
.parceria-desc { font-size: 13.5px; line-height: 1.64; font-weight: 300; color: var(--grey-2); }
.parceria-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.parceria-list button { text-align: left; font-size: 13px; font-weight: 300; color: var(--grey-1); display: flex; gap: 10px; transition: color 0.3s; }
.parceria-list button:hover { color: var(--acento); }
.parceria-list .d { font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: var(--grey-3); flex: none; width: 46px; }
@media (max-width: 780px) { .parcerias { grid-template-columns: 1fr; } }

/* ─── REDE ───────────────────────────────────────────────────── */
.rede { margin-top: 48px; }
.rede-row { display: grid; grid-template-columns: 150px 1fr; gap: clamp(16px, 3vw, 40px); padding: 22px 0; border-top: 1px solid var(--rule); }
.rede-cat { font-size: 9px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--acento); padding-top: 4px; }
.rede-names { font-size: 15px; line-height: 1.9; font-weight: 300; color: var(--grey-1); }
.rede-names .sep { color: var(--grey-4); margin: 0 8px; }
@media (max-width: 720px) { .rede-row { grid-template-columns: 1fr; gap: 8px; } }

/* ─── RODAPÉ ─────────────────────────────────────────────────── */
.footer { position: relative; min-height: 92svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; background: var(--ink); }
.footer-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; opacity: 0.5; filter: grayscale(60%); }
.footer::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,8,0.96), rgba(10,9,8,0.7) 55%, rgba(10,9,8,0.5)); }
.footer .wrap { z-index: 3; color: var(--white); }
.footer-logo { width: clamp(160px, 18vw, 240px); margin-bottom: 40px; }
.footer-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 6.4vw, 96px); line-height: 0.9; }
.footer-sub { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(17px, 2.2vw, 28px); color: rgba(255,255,255,0.82); margin-top: 20px; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 12px 34px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--rule-lt); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-meta b { color: var(--white); font-weight: 400; }

/* ─── ACESSIBILIDADE / MOVIMENTO ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--white); padding: 12px 20px; font-size: 12px;
}
.skip:focus { left: 12px; top: 12px; }

/* ══════════════════════════════════════════════════════════════
   REVISÃO 2 — programação em fundo escuro, tipografia maior,
   tipo em tag, hora abaixo da data, blocos novos.
   ══════════════════════════════════════════════════════════════ */

/* ─── PROGRAMAÇÃO EM PRETO ───────────────────────────────────── */
.prog { background: var(--ink); color: var(--white); }
.prog .h-big { color: var(--white); }
.prog .label { color: var(--acento-lt); }
.prog-count { font-size: 12px; color: rgba(255,255,255,0.5); }
.prog-count b { color: var(--white); }

.prog-tabs { background: rgba(255,255,255,0.08); }
.prog-tab { color: rgba(255,255,255,0.6); font-size: 11px; }
.prog-tab[aria-selected="true"] { background: var(--white); color: var(--ink); }

.prog-search { background: rgba(255,255,255,0.06); border-color: var(--rule-lt); }
.prog-search input { color: var(--white); font-size: 15px; }
.prog-search input::placeholder { color: rgba(255,255,255,0.38); }
.prog-search svg { stroke: rgba(255,255,255,0.5); }
.prog-clear { color: rgba(255,255,255,0.5); font-size: 10px; }
.prog-clear:hover { color: var(--acento-lt); }

.chip {
  background: transparent; border-color: var(--rule-lt);
  color: rgba(255,255,255,0.72); font-size: 9px; padding: 7px 13px;
}
.chip:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }
.chip[aria-pressed="true"] { background: var(--white); border-color: var(--white); color: var(--ink); }

/* segunda fileira: instituições e espaços (o antigo bloco de parcerias) */
.chips-locais { margin-top: 7px; padding-top: 10px; border-top: 1px solid var(--rule-lt); }
.chips-locais .chip { font-size: 8.5px; letter-spacing: 0.1em; }

/* no celular, listas longas de chips viram carrossel horizontal — evita rolagem vertical infinita */
@media (max-width: 720px) {
  .chips-locais, #progChips {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: 3px;
  }
  .chips-locais::-webkit-scrollbar, #progChips::-webkit-scrollbar { display: none; }
  .chips-locais .chip, #progChips .chip { flex: none; white-space: nowrap; }
}

/* ─── VISTA POR DIA ──────────────────────────────────────────── */
.days { border-top-color: var(--rule-lt); }
.day { border-bottom-color: var(--rule-lt); grid-template-columns: 190px 1fr; }
.day-num { font-size: clamp(52px, 6.4vw, 86px); color: var(--white); }
.day-num .sep { color: var(--acento-lt); }
.day-wd { font-size: 13px; letter-spacing: 0.18em; color: rgba(255,255,255,0.6); margin-top: 8px; }
.day-tag { font-size: 10px; letter-spacing: 0.2em; color: var(--acento-lt); }

.day-item {
  grid-template-columns: 128px 1fr;
  gap: 20px; align-items: start; padding: 18px 16px;
}
.day-item:hover { background: rgba(255,255,255,0.055); }
/* hora: coluna própria, alinhada sob a data */
.di-hora {
  font-family: 'Bebas Neue', sans-serif; font-size: 26px; line-height: 1;
  color: var(--white); letter-spacing: 0.01em;
}
.di-hora.vago { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38); line-height: 1.4; }
.di-linha {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
}
.di-tag {
  display: inline-block; flex: none; padding: 5px 11px;
  border: 1px solid var(--acento-lt); border-radius: 2px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--acento-lt);
}
.day-item:hover .di-tag { background: var(--acento-lt); color: var(--white); }
.day-item-t { font-size: 29px; color: var(--white); }
.day-item-l { font-size: 14px; color: rgba(255,255,255,0.62); margin-top: 5px; }
.day-item-l em { font-style: normal; color: rgba(255,255,255,0.82); }

@media (max-width: 720px) {
  .day { grid-template-columns: 1fr; gap: 10px; }
  .day-date { display: flex; align-items: baseline; gap: 12px; position: static; }
  .day-item { grid-template-columns: 1fr; gap: 2px; }
  .day-item > span:not(.di-hora) { display: contents; }
  .di-hora {
    order: -1; font-size: 14px; letter-spacing: 0.03em; margin-bottom: 2px;
    color: var(--acento-lt);
  }
  .di-hora.vago { font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
  .di-linha { order: 0; flex-direction: row; align-items: baseline; gap: 12px; }
  .day-item-l { order: 1; }
  .day-item-d { order: 2; }
}

/* cards e mapa no escuro */
.prog .card { background: rgba(255,255,255,0.04); border-color: var(--rule-lt); }
.prog .card:hover { background: rgba(255,255,255,0.08); box-shadow: none; border-color: rgba(255,255,255,0.3); }
.prog .card-title { color: var(--white); font-size: 26px; }
.prog .card-date { color: var(--white); font-size: 25px; }
.prog .card-tipo { color: var(--acento-lt); font-size: 10.5px; }
.prog .card-local { color: rgba(255,255,255,0.6); font-size: 13.5px; }
.prog .card-artist { color: rgba(255,255,255,0.45); }
.prog .cards-empty { color: rgba(255,255,255,0.45); }
.prog .mapa-canvas { background: rgba(255,255,255,0.03); border-color: var(--rule-lt); }
.prog .mapa-grid line { stroke: rgba(255,255,255,0.08); }
.prog .mapa-link { stroke: rgba(255,255,255,0.14); }
.prog .pin-dot { background: var(--white); border-color: var(--ink); }
.prog .pin:hover .pin-dot, .prog .pin.on .pin-dot { background: var(--acento-lt); }
.prog .pin-label { background: rgba(14,13,11,0.9); color: rgba(255,255,255,0.9); }
.prog .mapa-textura { opacity: 0.12; }
.prog .mapa-note { color: rgba(255,255,255,0.4); }
.prog .mapa-item { border-bottom-color: var(--rule-lt); }
.prog .mapa-item-nome { font-size: 15px; }
.prog .mapa-item-b, .prog .mapa-item-c { color: rgba(255,255,255,0.45); }
.prog .mapa-item-n { color: rgba(255,255,255,0.35); }

/* ─── SLIDESHOW NO FULL-BLEED ────────────────────────────────── */
.bleed-slideshow { position: absolute; inset: 0; overflow: hidden; }
.bleed-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease), transform 7s linear;
  transform: scale(1.06);
}
.bleed-slide.on { opacity: 1; transform: scale(1.14); }

/* ─── BANNERS (encerramento) ─────────────────────────────────── */
.banners { display: flex; flex-direction: column; gap: 10px; }
.banner {
  position: relative; display: block; min-height: 132px; overflow: hidden;
  background-size: cover; background-position: center;
}
.banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.7) 55%, rgba(10,9,8,0.25) 100%);
  transition: background 0.5s;
}

.banner:hover::after { background: linear-gradient(90deg, rgba(10,9,8,0.86) 0%, rgba(10,9,8,0.5) 60%, rgba(10,9,8,0.1) 100%); }
.banner-in { position: relative; z-index: 2; display: block; padding: 26px clamp(20px, 2.4vw, 32px); }
.banner-t { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 30px; line-height: 1.02; color: var(--white); }
.banner-d { display: block; margin-top: 8px; max-width: 460px; font-size: 13.5px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.72); }

/* ─── QUEM APOIA (fundo branco) ──────────────────────────────── */
.apoio { background: var(--white); padding: clamp(60px, 9vh, 110px) 0; }
.apoio-t {
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--grey-3); margin-bottom: 44px;
}
.logos {
  display: grid; gap: clamp(20px, 3vw, 46px) clamp(16px, 2.6vw, 40px);
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  align-items: center;
}
.logo-cel { display: grid; place-items: center; min-height: 74px; }
.logo-cel img {
  max-height: 62px; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: 0.62;
  transition: filter 0.45s var(--ease), opacity 0.45s var(--ease);
}
.logo-cel:hover img { filter: none; opacity: 1; }
/* ─── RODAPÉ: redes sociais ──────────────────────────────────── */
.social { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.social-l {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--rule-lt); transition: all 0.35s var(--ease);
}
.social-l svg { width: 19px; height: 19px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.social-l:hover { background: var(--white); border-color: var(--white); }
.social-l:hover svg { stroke: var(--ink); }
.social-t { font-size: 12px; letter-spacing: 0.16em; color: rgba(255,255,255,0.55); }
@media (max-width: 520px) { .social-t { display: none; } }

/* ─── PARALLAX POR CAMADAS ───────────────────────────────────── */
.bleed-bg, .bleed-slideshow { will-change: transform; }
.bleed .wrap { will-change: transform; }
.footer-bg { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .bleed-bg, .bleed-slideshow, .bleed .wrap, .footer-bg { transform: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   REVISÃO 3
   ══════════════════════════════════════════════════════════════ */

/* ─── PROGRAMAÇÃO: barra de controles mais enxuta ────────────── */
.prog-controles {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin: 36px 0 0;
}
.prog-controles .prog-tabs { margin: 0; flex: none; }
.prog-controles .prog-search { flex: 1 1 300px; }

/* primeira fileira: os espaços de destaque, com cor */
.chips-destaque { margin-top: 14px; }
.chips-destaque .chip {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  padding: 9px 17px; border-color: var(--laranja); color: var(--laranja);
}
.chips-destaque .chip:hover { background: rgba(226,117,26,0.16); }
.chips-destaque .chip[aria-pressed="true"] { background: var(--laranja); border-color: var(--laranja); color: var(--ink); }
.chips-rotulo {
  width: 100%; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 10px;
}

/* ─── FAZER COLETIVO: duas colunas ───────────────────────────── */
.bleed-2col {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 5vw, 80px); align-items: end;
}
@media (max-width: 880px) { .bleed-2col { grid-template-columns: 1fr; align-items: start; } }

/* ─── ENCERRAMENTO: 3 blocos altos, lado a lado ──────────────── */
.banners {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  margin-top: 48px;
}
.banner { min-height: clamp(320px, 46vh, 500px); display: flex; align-items: flex-end; }
.banner::after {
  background: linear-gradient(to top, rgba(10,9,8,0.95) 10%, rgba(10,9,8,0.55) 55%, rgba(10,9,8,0.15) 100%);
}
.banner:hover::after {
  background: linear-gradient(to top, rgba(10,9,8,0.9) 5%, rgba(10,9,8,0.35) 60%, rgba(10,9,8,0.05) 100%);
}
.banner-t { font-size: 34px; }
.banner-d { font-size: 14.5px; }
@media (max-width: 880px) { .banners { grid-template-columns: 1fr; } .banner { min-height: 240px; } }

/* ─── QUEM APOIA: logos maiores e mais presentes ─────────────── */
.logos { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1100px) { .logos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px)  { .logos { grid-template-columns: repeat(2, 1fr); } }
.logo-cel { min-height: 92px; }
.logo-cel img { max-height: 76px; filter: none; opacity: 1; }
.logo-cel:hover img { transform: scale(1.05); }

/* ─── RODAPÉ: redes maiores e mais soltas ────────────────────── */
.social { gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.social-l { width: 54px; height: 54px; }
.social-l svg { width: 24px; height: 24px; }
.social-t { font-size: 13px; letter-spacing: 0.2em; }
.footer-cred {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--rule-lt);
  font-size: 11px; letter-spacing: 0.14em; color: rgba(255,255,255,0.45);
}
.footer-cred a { color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.3); }
.footer-cred a:hover { color: var(--white); border-color: var(--white); }

/* ─── HERO: sequência de fotos (quando o vídeo não roda) ─────── */
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.7s var(--ease), transform 3.5s linear;
  transform: scale(1.04);
}
.hero-slide.on { opacity: 1; transform: scale(1.1); }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 2.4s linear; transform: none; }
  .hero-slide.on { transform: none; }
  /* o crossfade é suave o bastante para continuar valendo */
  .hero-slide, .bleed-slide { animation: none; }
}

/* ─── VERDE DA CAMPANHA: botão sólido só brilha sobre fundo escuro ─── */
.hero .btn:not(.btn-ghost):not(.btn-line),
.dark .btn:not(.btn-ghost):not(.btn-line):not(.btn-dark),
.bleed .btn:not(.btn-ghost):not(.btn-line) {
  background: var(--acento-lt); color: var(--ink);
}
.hero .btn:not(.btn-ghost):not(.btn-line):hover,
.dark .btn:not(.btn-ghost):not(.btn-line):not(.btn-dark):hover,
.bleed .btn:not(.btn-ghost):not(.btn-line):hover {
  background: #6cf03e;
}

/* ─── LOCAIS: endereço e atalho para o mapa ──────────────────── */
.mapa-item-linha {
  display: grid; grid-template-columns: 1fr auto; align-items: stretch;
  border-bottom: 1px solid var(--rule-lt); transition: background 0.3s;
}
.mapa-item-linha:hover, .mapa-item-linha.on { background: rgba(255,255,255,0.04); }
.mapa-item-linha .mapa-item { border-bottom: none; width: 100%; }
.mapa-item-nome { display: block; }
.mapa-item-b { display: block; margin-top: 2px; }
.mapa-item-ir {
  flex: none; width: 46px; display: grid; place-items: center;
  border-left: 1px solid var(--rule-lt); opacity: 0.45; transition: all 0.3s var(--ease);
}
.mapa-item-ir svg { width: 17px; height: 17px; fill: none; stroke: var(--acento-lt); stroke-width: 1.6; }
.mapa-item-ir:hover { opacity: 1; background: rgba(76,224,30,0.12); }
.detail-mapa {
  display: inline-block; margin-top: 8px; font-size: 12.5px; font-weight: 500;
  color: var(--acento); border-bottom: 1px solid currentColor;
}
.detail-mapa:hover { color: var(--ink); }

/* ─── CRÉDITO DA FOTO DO TOPO ────────────────────────────────── */
.hero-credito {
  position: absolute; right: clamp(18px, 4vw, 42px); bottom: clamp(14px, 2.4vh, 22px);
  z-index: 4; max-width: 46vw; text-align: right;
  font-size: 10.5px; font-weight: 300; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5); line-height: 1.5;
  transition: opacity 0.6s var(--ease);
}
.hero-credito b { font-weight: 500; color: rgba(255,255,255,0.82); }
@media (max-width: 860px) { .hero-credito { position: static; max-width: none; text-align: left;
  padding: 0 clamp(22px, 5vw, 80px) 14px; } }

/* ─── DETALHE: crédito, "também em", selo de inscrição ───────── */
.detail-tambem { font-size: 12px; font-style: italic; color: var(--grey-3); }
.dark .detail-tambem, .prog .detail-tambem { color: rgba(255,255,255,0.55); }
.di-insc {
  font-style: normal; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 10px; color: var(--acento-lt); margin-left: 4px;
}

/* ─── LINK DE INSCRIÇÃO NOS CARDS DE OCUPAÇÃO URBANA ─────────── */
.acao-link {
  display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--acento-lt);
  border-bottom: 1px solid currentColor;
}
.acao-link:hover { color: var(--white); }

/* ─── DESCRIÇÃO CURTA + "VER MAIS" NO CARD DO DIA ────────────── */
.day-item-d {
  display: block; margin-top: 8px; max-width: 62ch;
  font-size: 15px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.62);
}
.ver-mais {
  display: inline-flex; align-items: center; gap: 5px; margin-left: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.03em; white-space: nowrap;
  color: var(--acento-lt); transition: color 0.25s, gap 0.25s;
}
.day-item:hover .ver-mais { gap: 8px; }
.ver-mais svg {
  width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8;
  flex: none;
}
@media (max-width: 720px) {
  .day-item-d { max-width: none; }
}
