/* ============================================================
   1º ROLIÚDE CINE FEST · Cabaceiras (PB) · 3–5 de julho de 2026
   Identidade: "Roliúde Glam + Sertão"
   Tapete vermelho · Dourado de premiação · Pedra & Caatinga
   Mobile-first
   ============================================================ */

:root {
  /* Roliúde Glam */
  --red:        #C41E1E;   /* tapete vermelho */
  --red-deep:   #8E1212;
  --red-glow:   #ff3b30;
  --gold:       #E7B84B;   /* dourado de premiação */
  --gold-soft:  #F2D27E;
  --gold-deep:  #B8862A;

  /* acentos da logo (céu de pôr do sol + faixa teal) */
  --sunset:     #E8772E;
  --teal:       #1E7E6F;
  --teal-soft:  #3FA593;

  /* Sertão / Caatinga / Pedra */
  --sand:       #D8B98A;
  --clay:       #A6633B;
  --stone:      #2A2320;
  --stone-2:    #221C1A;

  /* Base escura cinematográfica */
  --black:      #120D0B;
  --coal:       #1A1411;
  --panel:      #211A16;
  --panel-2:    #2A211B;
  --line:       rgba(231,184,75,0.18);

  --white:      #FBF6EE;
  --muted:      #C9B8A4;
  --muted-2:    #948575;

  --shadow:     0 18px 50px rgba(0,0,0,0.55);
  --radius:     18px;

  --maxw:       560px; /* coluna mobile-first */
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(140% 90% at 50% -10%, rgba(196,30,30,0.20), transparent 55%),
    radial-gradient(120% 80% at 90% 10%, rgba(231,184,75,0.10), transparent 50%),
    var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

/* film grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

::selection { background: var(--gold); color: var(--black); }

/* ─── TYPE ─── */
.display { font-family: 'Anton', 'Bebas Neue', sans-serif; letter-spacing: 1px; line-height: 0.95; text-transform: uppercase; }
.script  { font-family: 'Dancing Script', cursive; }

/* =========================================================
   INTRO / CLAQUETE
   ========================================================= */
#intro {
  position: fixed; inset: 0; z-index: 2000;
  background: radial-gradient(120% 120% at 50% 30%, #2a0d0d, var(--black) 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#intro.hide { opacity: 0; visibility: hidden; }

.intro-logo {
  width: min(64vw, 280px); height: auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.65));
  opacity: 0;
  animation: introLogo 1s cubic-bezier(.2,.8,.2,1) 0.15s forwards;
}
@keyframes introLogo {
  0%   { opacity: 0; transform: scale(0.6) rotate(-6deg); filter: drop-shadow(0 0 0 rgba(231,184,75,0)); }
  60%  { opacity: 1; transform: scale(1.05) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 18px 40px rgba(0,0,0,0.65)); }
}
.intro-word {
  font-family: 'Anton', sans-serif; text-transform: uppercase;
  font-size: clamp(1.5rem, 7vw, 2.4rem); letter-spacing: 3px;
  color: var(--gold-soft);
  opacity: 0; animation: introWord 0.7s ease 1.2s forwards;
}
.intro-sub {
  font-family: 'Dancing Script', cursive; font-size: 1.6rem; color: var(--white);
  opacity: 0; animation: introWord 0.7s ease 1.5s forwards;
}
@keyframes introWord { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.intro-skip {
  position: absolute; bottom: 28px;
  background: none; border: 1px solid var(--line); color: var(--muted);
  padding: 8px 18px; border-radius: 40px; font-size: 0.75rem; letter-spacing: 1px;
  cursor: pointer; text-transform: uppercase;
}

/* =========================================================
   NAV
   ========================================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: rgba(18,13,11,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 34px; height: 34px; }
.nav-logo img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.nav-title {
  font-family: 'Anton', sans-serif; font-size: 1.15rem; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-title b { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white); border: none; border-radius: 40px;
  padding: 9px 16px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(196,30,30,0.45);
  transition: transform 0.2s;
}
.nav-cta:active { transform: scale(0.95); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 96px 20px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
  opacity: 0.45;
}
.hero-spotlight {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(18,13,11,0.55) 0%, rgba(18,13,11,0.25) 35%, rgba(18,13,11,0.85) 100%),
    conic-gradient(from 200deg at 50% -10%, transparent, rgba(231,184,75,0.12), transparent 40%),
    radial-gradient(70% 50% at 50% 8%, rgba(232,119,46,0.20), transparent 60%),
    radial-gradient(90% 60% at 50% 0%, rgba(196,30,30,0.26), transparent 62%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); width: 100%; }

.hero-logo {
  width: min(78vw, 340px); height: auto; margin: 0 auto 6px;
  filter: drop-shadow(0 20px 44px rgba(0,0,0,0.6));
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
h1.hero-h1 { margin: 0; line-height: 0; }

/* hero com a arte-chave inteira (sem cortar) e conteúdo abaixo */
.hero-featured {
  display: block; min-height: auto;
  padding: 0 0 36px; text-align: center;
}
.hero-art {
  width: 100%; max-width: none; height: auto; display: block; margin: 0;
}
.hero-featured .hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 18px 0;
}
.hero-featured .hero-eyebrow { margin-bottom: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 40px; margin-bottom: 22px;
  background: rgba(231,184,75,0.06);
}
.hero h1 {
  font-family: 'Anton', sans-serif; text-transform: uppercase;
  font-size: clamp(2.8rem, 15vw, 5rem); line-height: 0.9; letter-spacing: 1px;
}
.hero h1 .l1 { color: var(--white); }
.hero h1 .l2 {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-deep));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-tagline {
  font-family: 'Dancing Script', cursive; font-size: 1.5rem; color: var(--white);
  margin: 16px 0 4px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center;
  margin: 22px 0; font-size: 0.9rem; color: var(--muted); letter-spacing: 0.5px;
}
.hero-meta b { color: var(--white); }
.hero-meta .dot { color: var(--gold); }

/* countdown */
.countdown {
  display: flex; gap: 8px; justify-content: center; margin: 18px 0 26px;
}
.cd-box {
  background: linear-gradient(180deg, var(--panel-2), var(--coal));
  border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 10px; min-width: 70px;
}
.cd-num { font-family: 'Anton', sans-serif; font-size: 1.9rem; color: var(--gold); line-height: 1; }
.cd-lbl { font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }

.cd-message {
  width: 100%; padding: 16px 18px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(196,30,30,0.25), rgba(30,126,111,0.18));
  border: 1px solid var(--gold); text-align: center; animation: fade 0.6s ease;
}
.cd-msg-title { display: block; font-family: 'Anton', sans-serif; font-size: 1.5rem; color: var(--gold-soft); letter-spacing: 1px; }
.cd-msg-sub { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white); border: none; border-radius: 44px;
  padding: 16px 30px; font-size: 1rem; font-weight: 700; letter-spacing: 0.5px;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 10px 30px rgba(196,30,30,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(196,30,30,0.65); }
.btn-primary:active { transform: scale(0.97); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gold); border: 1px solid var(--line);
  border-radius: 44px; padding: 14px 26px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
}

.hero-scroll {
  display: inline-flex; flex-direction: column; align-items: center; gap: 7px;
  margin: 24px auto 4px; text-decoration: none;
  color: var(--muted-2); font-size: 0.66rem; letter-spacing: 2.5px; text-transform: uppercase;
  animation: bobY 1.9s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--gold); }
.hs-chev {
  width: 11px; height: 11px; display: inline-block;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
@keyframes bobY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

/* =========================================================
   SECTION SHELL
   ========================================================= */
section { position: relative; z-index: 1; padding: 46px 16px; }
.wrap { max-width: var(--maxw); margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-label::before { content: "●"; color: var(--red); font-size: 0.6rem; }
.section-title {
  font-family: 'Anton', sans-serif; text-transform: uppercase;
  font-size: clamp(2rem, 9vw, 3rem); line-height: 0.95; margin-bottom: 14px;
}
.section-intro { color: var(--muted); font-size: 0.98rem; margin-bottom: 20px; max-width: 46ch; }

/* cabeçalho de seção centralizado (rótulo + título); conteúdo à esquerda */
section .wrap > .reveal:first-child { text-align: center; }
section .wrap > .reveal:first-child .section-label { justify-content: center; }
section .wrap > .reveal:first-child .section-intro { text-align: left; margin-left: 0; margin-right: 0; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   ABOUT CARDS
   ========================================================= */
.about-grid { display: grid; gap: 14px; }
.fact-card {
  background: linear-gradient(165deg, var(--panel), var(--coal));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; position: relative; overflow: hidden;
}
.fact-card .ic { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.fact-card .ic-img { float: right; height: 64px; width: auto; margin: 0 0 8px 14px; }
.free-ico { height: 1.05em; width: auto; vertical-align: -2px; margin-right: 4px; }
.fact-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--gold-soft); }
.fact-card p { font-size: 0.9rem; color: var(--muted); }
.fact-card .big {
  font-family: 'Anton', sans-serif; font-size: 2.6rem; color: var(--gold); line-height: 1;
}

/* =========================================================
   PROGRAMAÇÃO (TABS + CARDS)
   ========================================================= */
.tabs {
  display: flex; gap: 8px; margin-bottom: 22px;
  background: var(--coal); border: 1px solid var(--line);
  border-radius: 50px; padding: 6px;
}
.tab {
  flex: 1; text-align: center; padding: 12px 6px;
  border-radius: 44px; border: none; cursor: pointer;
  background: transparent; color: var(--muted);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.5px;
  transition: all 0.25s; line-height: 1.1;
}
.tab small { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 1px; color: var(--muted-2); margin-top: 2px; }
.tab.active {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff; box-shadow: 0 6px 16px rgba(196,30,30,0.45);
}
.tab.active small { color: rgba(255,255,255,0.85); }

.day-panel { display: none; }
.day-panel.active { display: block; animation: fade 0.4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.sess-card {
  display: flex; gap: 14px; align-items: stretch;
  background: linear-gradient(165deg, var(--panel), var(--coal));
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 14px;
  transition: transform 0.25s, border-color 0.25s;
}
.sess-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.sess-thumb {
  width: 104px; min-height: 124px; flex-shrink: 0; position: relative;
  background: linear-gradient(150deg, var(--clay), var(--stone));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.sess-thumb img,
.sess-thumb .thumb-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 1; }
.sess-thumb.thumb-tinted::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(155deg, rgba(196,30,30,0.32) 0%, rgba(184,134,42,0.20) 45%, rgba(18,13,11,0.66) 100%);
  mix-blend-mode: multiply;
}
.sess-thumb .ph { font-size: 2.2rem; opacity: 0.5; }
.sess-time {
  position: absolute; top: 8px; left: 8px; z-index: 4;
  background: rgba(18,13,11,0.85); color: var(--gold);
  font-family: 'Anton', sans-serif; font-size: 0.8rem; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 8px;
}
.sess-body { padding: 14px 14px 14px 0; display: flex; flex-direction: column; justify-content: center; }
.sess-tag {
  font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red-glow); font-weight: 700; margin-bottom: 4px;
}
.sess-body h4 { font-size: 1.02rem; line-height: 1.15; margin-bottom: 5px; }
.sess-body p { font-size: 0.82rem; color: var(--muted); }
.sess-body .meta { font-size: 0.74rem; color: var(--muted-2); margin-top: 6px; }

.day-venue {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-soft);
  background: rgba(231,184,75,0.06); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 14px; margin-bottom: 16px;
}
.sess-list { margin-top: 6px; font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.sess-list b { color: var(--gold-soft); font-weight: 600; }

.soon-note {
  text-align: center; padding: 24px; border: 1px dashed var(--line); border-radius: var(--radius);
  color: var(--muted); font-size: 0.9rem; background: rgba(231,184,75,0.04);
}
.soon-note .script { font-size: 1.4rem; color: var(--gold-soft); display: block; margin-bottom: 6px; }

/* =========================================================
   FILME DE ABERTURA (DESTAQUE)
   ========================================================= */
.feature {
  background:
    linear-gradient(180deg, rgba(18,13,11,0.2), rgba(18,13,11,0.92)),
    linear-gradient(150deg, var(--red-deep), var(--stone));
  border: 1px solid var(--gold); border-radius: 22px;
  padding: 28px 22px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.feature::before {
  content: "★"; position: absolute; top: -10px; right: -6px;
  font-size: 7rem; color: rgba(231,184,75,0.10);
}
.feature .badge {
  display: inline-block; background: var(--gold); color: var(--black);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 30px; margin-bottom: 14px;
}
.feature h3 { font-family: 'Anton', sans-serif; font-size: 2rem; text-transform: uppercase; line-height: 1; margin-bottom: 8px; }
.feature .dir { color: var(--gold-soft); font-size: 0.86rem; margin-bottom: 12px; }
.feature p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.feature .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 0.72rem; color: var(--white); border: 1px solid var(--line); border-radius: 30px; padding: 5px 12px; background: rgba(0,0,0,0.25); }

/* =========================================================
   CABACEIRAS — SHUFFLE STACK (curiosidades)
   ========================================================= */
.stack-wrap { position: relative; height: 380px; margin: 8px 0 18px; }
.stack { position: relative; height: 100%; }
.stack-card {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, var(--panel-2), var(--coal));
  border: 1px solid var(--line); border-radius: 22px;
  padding: 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: grab; user-select: none;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), opacity 0.45s;
  overflow: hidden;
}
.stack-card .sc-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.5;
}
.stack-card.photo-bg .sc-bg { opacity: 0.9; }
.stack-card.photo-bg::after { background: linear-gradient(180deg, rgba(18,13,11,0.15) 30%, rgba(18,13,11,0.94)); }
.stack-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(18,13,11,0.92));
}
.stack-card .sc-content { position: relative; z-index: 2; }
.stack-card .sc-num { font-family: 'Anton', sans-serif; font-size: 0.9rem; color: var(--gold); letter-spacing: 2px; }
.stack-card h4 { font-family: 'Anton', sans-serif; font-size: 1.5rem; text-transform: uppercase; line-height: 1.05; margin: 6px 0 8px; }
.stack-card p { font-size: 0.9rem; color: var(--muted); }
.stack-controls { display: flex; align-items: center; justify-content: center; gap: 16px; }
.stack-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--coal); border: 1px solid var(--line); color: var(--gold);
  font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.stack-arrow:active { transform: scale(0.9); }
.stack-dots { display: flex; gap: 7px; }
.stack-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); transition: all 0.3s; }
.stack-dot.active { background: var(--gold); width: 22px; border-radius: 6px; }

/* heritage films row */
.films-scroll {
  display: flex; gap: 12px; overflow-x: auto; padding: 6px 2px 14px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.films-scroll::-webkit-scrollbar { height: 4px; }
.film-card {
  flex: 0 0 132px; scroll-snap-align: start;
  background: var(--coal); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden;
}
.film-poster {
  height: 158px; background: linear-gradient(160deg, var(--clay), var(--stone));
  display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: 0.9;
}
.film-card .fc-body { padding: 10px; }
.film-card h5 { font-size: 0.82rem; line-height: 1.1; margin-bottom: 3px; }
.film-card span { font-size: 0.7rem; color: var(--muted-2); }

/* =========================================================
   LOCAL
   ========================================================= */
.local-card {
  background: linear-gradient(165deg, var(--panel), var(--coal));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  text-align: center;
}
.local-card .ic { font-size: 2.4rem; }
.local-card h3 { font-family: 'Anton', sans-serif; font-size: 1.6rem; text-transform: uppercase; margin: 8px 0 4px; }
.local-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }

/* =========================================================
   INGRESSOS CTA
   ========================================================= */
.tickets {
  text-align: center;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(196,30,30,0.30), transparent 60%),
    linear-gradient(180deg, var(--coal), var(--black));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.tickets .free-badge {
  display: inline-block; background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--black); font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  font-size: 0.74rem; padding: 7px 16px; border-radius: 30px; margin-bottom: 16px;
}
.tickets h2 { font-family: 'Anton', sans-serif; font-size: clamp(2.2rem,11vw,3.4rem); text-transform: uppercase; line-height: 0.95; }
.tickets p { color: var(--muted); margin: 12px 0 24px; }

/* =========================================================
   COBERTURA / PÓS-FESTIVAL
   ========================================================= */
.cobertura { background: linear-gradient(180deg, var(--coal), var(--black)); }

.slideshow {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4 / 3; background: var(--panel);
  margin-bottom: 18px; box-shadow: var(--shadow);
}
.ss-track { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.slide.active { opacity: 1; }
.slide.ph { align-items: center; justify-content: center; font-size: 3rem; opacity: 0; }
.slide.ph.active { opacity: 1; }
.slide .cap {
  position: relative; z-index: 2; width: 100%; padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(18,13,11,0.9));
  font-size: 0.86rem; color: var(--white);
}
.ss-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(18,13,11,0.7); color: var(--gold); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.ss-prev { left: 10px; } .ss-next { right: 10px; }
.ss-dots { position: absolute; bottom: 10px; left: 0; right: 0; z-index: 3; display: flex; gap: 6px; justify-content: center; }
.ss-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.45); transition: all 0.3s; }
.ss-dot.active { background: var(--gold); width: 20px; border-radius: 5px; }

.gal-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.gal-clear { background: transparent; border: 1px solid var(--line); color: var(--muted); border-radius: 40px; padding: 12px 18px; font-size: 0.82rem; cursor: pointer; }
.gal-clear:hover { border-color: var(--red); color: var(--white); }
.gal-note { text-align: center; font-size: 0.78rem; color: var(--muted-2); margin-top: 10px; }

.ig-embed { margin: 4px 0 18px; display: flex; justify-content: center; }
.ig-embed .instagram-media { margin: 0 auto !important; }
.ig-placeholder {
  width: 100%; border: 1px dashed var(--line); border-radius: 18px; padding: 26px 20px;
  text-align: center; color: var(--muted); background: rgba(231,184,75,0.04);
}
.ig-placeholder .big { font-size: 2rem; display: block; margin-bottom: 8px; }
.ig-placeholder a { color: var(--gold); font-weight: 700; text-decoration: none; }

.follow-card {
  display: flex; gap: 14px; align-items: center;
  background: linear-gradient(135deg, rgba(196,30,30,0.18), rgba(30,126,111,0.14));
  border: 1px solid var(--gold); border-radius: 20px; padding: 16px;
}
.follow-card img { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; }
.follow-card .fc-txt { flex: 1; min-width: 0; }
.follow-card .fc-txt b { display: block; font-size: 1rem; color: var(--gold-soft); }
.follow-card .fc-txt span { font-size: 0.8rem; color: var(--muted); }
.follow-card .fc-btn { padding: 12px 20px; font-size: 0.86rem; flex-shrink: 0; }

/* contador — estado encerrado com botão */
.cd-actions { display: flex; gap: 10px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.cd-btn {
  background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff;
  border: none; border-radius: 40px; padding: 10px 18px; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
}

/* =========================================================
   TRAILER / VÍDEO NOS CARDS + LIGHTBOX
   ========================================================= */
.sess-thumb .thumb-vid { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 1; }
.trailer-btn {
  position: absolute; inset: 0; z-index: 3; cursor: pointer; border: none; background: rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
}
.trailer-btn::after {
  content: ""; width: 0; height: 0; margin-left: 4px;
  border-left: 16px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.trailer-btn .ring {
  position: absolute; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(196,30,30,0.85); box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}
.trailer-btn::after { position: relative; z-index: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 1500; background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.lightbox.open { display: flex; animation: fade 0.25s ease; }
.lightbox video { max-width: 100%; max-height: 86vh; border-radius: 14px; background: #000; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid var(--line); color: #fff; font-size: 1.3rem; cursor: pointer;
}

/* =========================================================
   CAST / PODCAST
   ========================================================= */
.cast { background: linear-gradient(180deg, var(--black), var(--coal)); }
.cast-card {
  background: linear-gradient(165deg, var(--panel), var(--coal));
  border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
}
.cast-media { position: relative; background: #000; }
.cast-media video { display: block; width: 100%; height: auto; max-height: 70vh; }
.cast-body { padding: 20px; }
.cast-body .ct-tag { font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-soft); font-weight: 700; }
.cast-body h3 { font-family: 'Anton', sans-serif; font-size: 1.6rem; text-transform: uppercase; margin: 6px 0 8px; }
.cast-body p { color: var(--muted); font-size: 0.92rem; }

/* logos reais na seção de apoio */
.spon-logo {
  width: 104px; height: 62px; object-fit: contain;
  background: #fff; border-radius: 12px; padding: 9px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* =========================================================
   MAPA ILUSTRADO DO EVENTO
   ========================================================= */
.map-frame {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: #e7d2a6;
}
.map-frame svg { display: block; width: 100%; height: auto; }
.map-pin { cursor: pointer; transition: transform 0.2s; transform-box: fill-box; transform-origin: center bottom; }
.map-pin:hover { transform: translateY(-3px) scale(1.08); }
.map-pin.active .pin-body { fill: var(--red); }
.map-pin .pin-num { font-family: 'Anton', sans-serif; font-size: 11px; fill: #fff; }
.map-info {
  margin-top: 14px; background: linear-gradient(165deg, var(--panel), var(--coal));
  border: 1px solid var(--gold); border-radius: 16px; padding: 18px; min-height: 90px;
}
.map-info .mi-tag { font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red-glow); font-weight: 700; }
.map-info h4 { font-family: 'Anton', sans-serif; font-size: 1.35rem; text-transform: uppercase; margin: 4px 0 6px; }
.map-info p { font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; }
.map-info a { color: var(--gold); font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.map-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.map-legend button {
  display: flex; align-items: center; gap: 7px; background: var(--coal);
  border: 1px solid var(--line); color: var(--muted); border-radius: 30px;
  padding: 7px 12px; font-size: 0.76rem; cursor: pointer; transition: all 0.2s;
}
.map-legend button .dotnum {
  width: 18px; height: 18px; border-radius: 50%; background: var(--gold); color: var(--black);
  font-family: 'Anton', sans-serif; font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
}
.map-legend button.active { border-color: var(--gold); color: var(--white); }

/* =========================================================
   SOBRE O LABRFF
   ========================================================= */
.labrff { background: linear-gradient(180deg, var(--coal), var(--black)); }
.labrff-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0; }
.lab-stat {
  background: linear-gradient(165deg, var(--panel), var(--coal));
  border: 1px solid var(--line); border-radius: 16px; padding: 16px; text-align: center;
}
.lab-stat .ls-num { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.lab-stat .ls-lbl { font-size: 0.74rem; color: var(--muted); margin-top: 6px; }
.labrff-quote {
  border-left: 3px solid var(--gold); padding: 6px 0 6px 16px; margin-top: 6px;
  font-style: italic; color: var(--muted); font-size: 0.92rem;
}

/* =========================================================
   CONVIDADOS
   ========================================================= */
.guests-scroll {
  display: flex; gap: 14px; overflow-x: auto; padding: 6px 2px 14px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.guests-scroll::-webkit-scrollbar { height: 4px; }
.guest-card {
  flex: 0 0 150px; scroll-snap-align: start; text-align: center;
  background: linear-gradient(165deg, var(--panel), var(--coal));
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 12px;
}
.guest-photo {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 10px;
  background: linear-gradient(150deg, var(--clay), var(--stone));
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; background-size: cover; background-position: center;
}
.guest-photo.has-photo { font-size: 0; }
.guest-card h5 { font-size: 0.92rem; margin-bottom: 3px; }
.guest-card span { font-size: 0.72rem; color: var(--gold-soft); }

/* =========================================================
   GUIA DE LOCAIS
   ========================================================= */
.guide-grid { display: grid; gap: 14px; }
.guide-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(165deg, var(--panel), var(--coal));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 16px;
  transition: transform 0.25s, border-color 0.25s;
}
.guide-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.guide-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: rgba(231,184,75,0.10); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.guide-icon.has-photo {
  width: 84px; height: 84px; font-size: 0; padding: 0; border: 1px solid var(--line);
  background-size: cover; background-position: center;
}
.guide-body { flex: 1; min-width: 0; }
.guide-body h4 { font-size: 1.05rem; color: var(--gold-soft); margin-bottom: 3px; }
.guide-body .g-meta { font-size: 0.72rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--red-glow); font-weight: 700; margin-bottom: 6px; }
.guide-body p { font-size: 0.86rem; color: var(--muted); margin-bottom: 10px; }
.guide-map {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; color: var(--gold); text-decoration: none;
  border: 1px solid var(--line); border-radius: 30px; padding: 7px 14px; transition: all 0.2s;
}
.guide-map:hover { background: var(--red); color: #fff; border-color: var(--red); }
.guide-cta { text-align: center; margin-top: 20px; }
.loc-subhead {
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin: 26px 0 12px;
}
.loc-subhead:first-of-type { margin-top: 4px; }

/* =========================================================
   MARCADOR DE PRESENÇA
   ========================================================= */
.presenca {
  text-align: center;
  background: radial-gradient(80% 60% at 50% 0%, rgba(30,126,111,0.18), transparent 60%), var(--coal);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pres-days { display: flex; gap: 10px; justify-content: center; margin: 22px 0; flex-wrap: wrap; }
.pres-day {
  background: var(--panel); border: 1px solid var(--line); color: var(--muted);
  border-radius: 16px; padding: 14px 18px; cursor: pointer; min-width: 92px;
  transition: all 0.2s; font-weight: 700;
}
.pres-day .pd-num { font-family: 'Anton', sans-serif; font-size: 1.7rem; color: var(--gold); display: block; line-height: 1; }
.pres-day .pd-day { font-size: 0.66rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }
.pres-day.sel { border-color: var(--teal-soft); background: rgba(30,126,111,0.15); }
.pres-day.sel .pd-check { color: var(--teal-soft); }
.pres-day .pd-check { display: block; height: 14px; color: transparent; font-size: 0.8rem; margin-top: 4px; }
.pres-confirm-box { min-height: 30px; margin-top: 6px; }
.pres-confirmed {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(30,126,111,0.2);
  border: 1px solid var(--teal-soft); color: var(--white); border-radius: 40px; padding: 12px 22px;
  font-weight: 700; animation: fade 0.4s ease;
}

/* =========================================================
   QUIZ
   ========================================================= */
.quiz-card {
  background: linear-gradient(165deg, var(--panel), var(--coal));
  border: 1px solid var(--line); border-radius: 22px; padding: 24px 20px;
  box-shadow: var(--shadow);
}
.quiz-progress { height: 6px; background: var(--stone); border-radius: 4px; overflow: hidden; margin-bottom: 18px; }
.quiz-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--red)); transition: width 0.4s; }
.quiz-q { font-family: 'Anton', sans-serif; font-size: 1.4rem; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; }
.quiz-opts { display: grid; gap: 10px; }
.quiz-opt {
  text-align: left; background: var(--coal); border: 1px solid var(--line); color: var(--white);
  border-radius: 14px; padding: 14px 16px; cursor: pointer; font-size: 0.92rem; transition: all 0.2s;
}
.quiz-opt:hover { border-color: var(--gold); transform: translateX(3px); }
.quiz-result { text-align: center; animation: fade 0.5s ease; }
.quiz-result .qr-emoji { font-size: 3.2rem; }
.quiz-result .qr-tag { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.quiz-result h3 { font-family: 'Anton', sans-serif; font-size: 2rem; text-transform: uppercase; line-height: 1; margin: 6px 0 10px; }
.quiz-result p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.quiz-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   CARTÃO-POSTAL
   ========================================================= */
.postal-wrap { display: grid; gap: 16px; }
.postal-canvas-box {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
  background: var(--coal);
}
.postal-canvas-box canvas { display: block; width: 100%; height: auto; }
.postal-form { display: grid; gap: 12px; }
.postal-form input {
  background: var(--panel); border: 1px solid var(--line); color: var(--white);
  border-radius: 12px; padding: 13px 16px; font-size: 0.95rem; outline: none;
}
.postal-form input:focus { border-color: var(--gold); }
.postal-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* =========================================================
   PATROCINADORES / APOIO
   ========================================================= */
/* fundo de papel claro, como a arte do festival */
.sponsors {
  background:
    radial-gradient(120% 70% at 50% 0%, #f3e6c8, transparent 60%),
    linear-gradient(180deg, #efe1c2 0%, #e6d2a8 100%);
  color: #2a2018;
}
.sponsors .section-label { color: #9a2a1e; }
.sponsors .section-label::before { color: #9a2a1e; }
.sponsors .section-title { color: #2a2018; }

.spon-tier { margin-bottom: 30px; }
.spon-tier:last-child { margin-bottom: 0; }
.spon-label {
  display: block; text-align: center; font-size: 0.72rem; letter-spacing: 2.5px;
  font-weight: 800; text-transform: uppercase; color: #9a2a1e; margin-bottom: 16px;
}
.spon-grid { display: flex; flex-wrap: wrap; gap: 18px 22px; justify-content: center; align-items: flex-start; }
.spon {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  background: transparent; border: none; padding: 4px 6px;
  width: 120px; transition: transform 0.25s;
}
.spon:hover { transform: translateY(-3px); }
.spon svg { width: 48px; height: 48px; color: #2a2018; }
.spon .spon-name {
  font-family: 'Anton', sans-serif; font-size: 0.95rem; letter-spacing: 0.5px;
  color: #2a2018; line-height: 1; text-align: center; text-transform: uppercase;
}
.spon .spon-sub { font-size: 0.58rem; letter-spacing: 0.5px; text-transform: uppercase; color: #7a684c; text-align: center; line-height: 1.2; }

/* destaque Realização */
.spon.spon-lead { width: 240px; }
.spon.spon-lead svg { width: 62px; height: 62px; }

/* wordmark tipográfico (LABRFF, Pousada Roliúde, SEBRAE, SP) */
.spon-wordmark { font-family: 'Anton', sans-serif; color: #2a2018; line-height: 0.9; text-align: center; }
.lab-mark { font-family: 'Anton', sans-serif; font-size: 2.6rem; color: #2a2018; line-height: 0.85; letter-spacing: 1px; }
.lab-mark i { color: #9a2a1e; font-style: normal; }
.rol-mark .small { display: block; font-size: 0.62rem; letter-spacing: 3px; font-family: 'Inter', sans-serif; font-weight: 700; }
.rol-mark .big { display: block; font-size: 1.7rem; letter-spacing: 1px; }
.sebrae-mark { font-size: 1.7rem; letter-spacing: 1px; }
.sp-mark {
  width: 50px; height: 50px; border-radius: 50%; border: 2.5px solid #2a2018;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif; font-size: 1.5rem; color: #2a2018;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer { text-align: center; padding: 48px 20px 120px; border-top: 1px solid var(--line); }
.foot-logo { width: 140px; height: auto; margin: 0 auto 14px; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5)); }
.foot-real { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.foot-real a { color: var(--gold); text-decoration: none; font-weight: 700; }
.foot-labrff { margin: 6px 0 4px; }
.foot-social { display: flex; gap: 14px; justify-content: center; margin: 18px 0; }
.foot-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--gold);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.foot-social a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.foot-handles { font-size: 0.74rem; letter-spacing: 1px; color: var(--gold-soft); margin-top: 4px; }
.foot-copy { font-size: 0.78rem; color: var(--muted-2); margin-top: 12px; }

/* =========================================================
   CHATBOT — Guia Caririzeiro
   ========================================================= */
#guia-chat { position: fixed; right: 16px; bottom: 18px; z-index: 500; }
.chat-fab {
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 8px 26px rgba(196,30,30,0.55);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  position: relative; transition: transform 0.2s;
}
.chat-fab:active { transform: scale(0.92); }
.chat-fab .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(196,30,30,0.6); animation: pulse 2.2s infinite;
}
@keyframes pulse { to { box-shadow: 0 0 0 18px rgba(196,30,30,0); } }
.chat-hint {
  position: absolute; right: 72px; bottom: 14px; white-space: nowrap;
  background: var(--gold); color: var(--black); font-size: 0.74rem; font-weight: 700;
  padding: 8px 12px; border-radius: 12px; box-shadow: var(--shadow);
  animation: bobY 2s ease-in-out infinite;
}
.chat-hint::after { content: ""; position: absolute; right: -5px; bottom: 12px; width: 10px; height: 10px; background: var(--gold); transform: rotate(45deg); }

.chat-pop {
  position: fixed; right: 12px; bottom: 12px; left: 12px;
  max-width: 380px; margin-left: auto;
  height: 70svh; max-height: 560px;
  background: var(--coal); border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow); display: none; flex-direction: column; overflow: hidden;
}
.chat-pop.open { display: flex; animation: fade 0.3s ease; }
.chat-head {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: linear-gradient(135deg, var(--red-deep), var(--stone)); border-bottom: 1px solid var(--line);
}
.chat-head .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.chat-head .who b { display: block; font-size: 0.92rem; }
.chat-head .who span { font-size: 0.7rem; color: var(--gold-soft); }
.chat-close { margin-left: auto; background: none; border: none; color: var(--white); font-size: 1.2rem; cursor: pointer; }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 82%; padding: 10px 13px; border-radius: 14px; font-size: 0.88rem; line-height: 1.4; }
.msg.bot { background: var(--panel-2); border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg.user { background: linear-gradient(135deg, var(--red), var(--red-deep)); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 10px 14px; border-top: 1px solid var(--line); }
.chat-quick button {
  background: rgba(231,184,75,0.08); border: 1px solid var(--line); color: var(--gold-soft);
  font-size: 0.74rem; padding: 7px 12px; border-radius: 30px; cursor: pointer; transition: background 0.2s;
}
.chat-quick button:active { background: rgba(231,184,75,0.2); }
.chat-form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); }
.chat-form input {
  flex: 1; background: var(--panel); border: 1px solid var(--line); color: var(--white);
  border-radius: 30px; padding: 11px 16px; font-size: 0.9rem; outline: none;
}
.chat-form input:focus { border-color: var(--gold); }
.chat-form button {
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--gold); color: var(--black); font-size: 1.1rem; flex-shrink: 0;
}

/* =========================================================
   PLAYER DE MÚSICA FIXO
   ========================================================= */
.music-player {
  position: fixed; left: 14px; bottom: 16px; z-index: 480;
  display: flex; align-items: center; gap: 10px;
  background: rgba(26,20,17,0.92); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 44px; padding: 7px 8px 7px 7px;
  box-shadow: var(--shadow); max-width: 240px;
}
.mp-art {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--gold); flex-shrink: 0;
}
.mp-art.spin { animation: mpspin 7s linear infinite; }
@keyframes mpspin { to { transform: rotate(360deg); } }
.mp-info { min-width: 0; flex: 1; }
.mp-info b { display: block; font-size: 0.78rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mp-info span { font-size: 0.64rem; letter-spacing: 0.5px; color: var(--gold-soft); }
.mp-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(196,30,30,0.45); transition: transform 0.15s;
}
.mp-toggle:active { transform: scale(0.92); }

@media (max-width: 380px) {
  .music-player { max-width: 190px; }
  .mp-info b { font-size: 0.72rem; }
}

/* =========================================================
   TOAST
   ========================================================= */
.toast {
  position: fixed; left: 50%; bottom: 90px; transform: translate(-50%, 30px);
  background: var(--gold); color: var(--black); font-weight: 700; font-size: 0.86rem;
  padding: 12px 20px; border-radius: 40px; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: all 0.35s; z-index: 600; max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* =========================================================
   ✦ REVITALIZAÇÃO — camada de craft (2026)
   Direção: "Cinema de rua do sertão" — marquise art déco,
   fita de filme, ticket-stub, tipografia de pôster de madeira.
   Sobrescreve por ordem de origem; preserva todas as classes.
   ========================================================= */

/* ícone base (sprite) */
.i { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; fill: none;
     stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ─── atmosfera de fundo: holofote + vinheta quente ─── */
body {
  background:
    radial-gradient(115% 70% at 50% -8%, rgba(232,119,46,0.16), transparent 52%),
    radial-gradient(150% 95% at 50% -12%, rgba(196,30,30,0.20), transparent 56%),
    var(--black);
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 22%, transparent 58%, rgba(0,0,0,0.55) 100%);
}

/* ─── marquise de lâmpadas (decorativo reutilizável) ─── */
.bulbs { display: flex; gap: 9px; justify-content: center; align-items: center; margin: 0 auto; }
.bulbs i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 8px rgba(231,184,75,0.85), 0 0 2px #fff inset;
  animation: bulb 1.6s ease-in-out infinite;
}
.bulbs i:nth-child(2n) { animation-delay: .2s; background: var(--red-glow); box-shadow: 0 0 8px rgba(255,59,48,0.8); }
.bulbs i:nth-child(3n) { animation-delay: .4s; }
.bulbs i:nth-child(4n) { animation-delay: .6s; }
@keyframes bulb { 0%,100% { opacity: .35; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }

/* ─── rótulo de seção: moldura de filme + filete gravado ─── */
.section-label {
  position: relative; color: var(--gold-soft);
  font-weight: 700; font-size: 0.68rem; letter-spacing: 3.5px;
}
.section-label::before {
  content: ""; width: 16px; height: 12px; border-radius: 2px;
  border: 1.6px solid var(--red-glow); background:
    linear-gradient(90deg, transparent 2px, var(--red-glow) 2px 3px, transparent 3px) 0 0/4px 100%;
  opacity: .9; display: inline-block;
}
section .wrap > .reveal:first-child .section-label::after {
  content: ""; position: absolute; left: 50%; bottom: -9px; transform: translateX(-50%);
  width: 54px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── título: tipografia de pôster de madeira (letterpress) ─── */
.section-title, .hero h1, .tickets h2, .feature h3,
.cast-body h3, .stack-card h4, .quiz-result h3 {
  text-shadow: 0 1px 0 rgba(0,0,0,0.4), 0 2px 0 rgba(142,18,18,0.25), 0 3px 14px rgba(0,0,0,0.45);
}
.section-title { letter-spacing: 0.5px; }
.section-title::first-line { color: var(--white); }

/* destaque dourado na 2ª linha dos títulos de seção (via <i> opcional) */
.section-title i { font-style: normal;
  background: linear-gradient(135deg, #ffe9b0, var(--gold-soft) 55%, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ─── filete duplo gravado entre seções ─── */
section + section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(var(--maxw), calc(100% - 32px)); height: 0;
  border-top: 1px solid rgba(231,184,75,0.22);
  box-shadow: 0 2px 0 rgba(231,184,75,0.07);
}

/* ─── BOTÃO PRIMÁRIO: ticket-stub com recortes ─── */
.btn-primary {
  background:
    radial-gradient(circle at left center, transparent 7px, var(--red) 7.5px) left/51% 100% no-repeat,
    radial-gradient(circle at right center, transparent 7px, var(--red-deep) 7.5px) right/51% 100% no-repeat;
  border-radius: 14px; letter-spacing: 1px; text-transform: uppercase; font-size: 0.92rem;
  box-shadow: 0 12px 30px rgba(196,30,30,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
}
.btn-primary::before {
  content: ""; position: absolute; left: 14px; top: 50%; width: 0; height: 56%;
  transform: translateY(-50%); border-left: 1.5px dashed rgba(255,255,255,0.45);
}
.btn-primary .i { stroke-width: 2; }
.btn-ghost {
  border-radius: 14px; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.78rem;
  border-color: rgba(231,184,75,0.4);
  transition: background .2s, border-color .2s, color .2s;
}
.btn-ghost:hover { background: rgba(231,184,75,0.08); border-color: var(--gold); color: var(--gold-soft); }

/* ─── HERO: faixa de lâmpadas + eyebrow refinado ─── */
.hero-featured { padding-bottom: 30px; }
.hero-eyebrow {
  background: linear-gradient(180deg, rgba(231,184,75,0.12), rgba(231,184,75,0.04));
  border-color: rgba(231,184,75,0.45); color: var(--gold-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.countdown { gap: 9px; }
.cd-box {
  position: relative; border-radius: 12px;
  background: linear-gradient(180deg, #2c231d, #15100d);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5), inset 0 1px 0 rgba(231,184,75,0.12);
}
.cd-box::after { /* parafuso de placa */
  content: ""; position: absolute; top: 5px; right: 6px; width: 3px; height: 3px;
  border-radius: 50%; background: rgba(231,184,75,0.4);
}
.cd-num { letter-spacing: 1px; font-variant-numeric: tabular-nums;
  text-shadow: 0 0 14px rgba(231,184,75,0.35); }

/* ─── HERO ART: arte vertical que DISSOLVE no fundo (máscara de transparência) ─── */
.hero-art-wrap { position: relative; line-height: 0; }
.hero-art {
  width: 100%; height: auto; display: block;
  /* a base da imagem vira transparente e revela o fundo real do site → sem emenda */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 85%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 85%, rgba(0,0,0,0) 100%);
}
.hero-art-wrap::after { display: none; }
/* o conteúdo (eyebrow/contagem) sobe sobre a zona dissolvida = transição contínua */
.hero-featured .hero-inner { position: relative; z-index: 2; margin-top: -42px; padding-top: 0; }
@media (min-width: 620px) {
  .hero-art { max-height: 92vh; object-fit: cover; object-position: center top; }
}

/* ─── CABEÇALHO DA CONTAGEM (próxima sessão) ─── */
.cd-head {
  text-align: center; margin-bottom: 12px; line-height: 1.25;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.cd-head .cd-kicker {
  font-size: 0.64rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted-2);
}
.cd-head .cd-kicker.live { color: var(--red-glow); font-weight: 700; }
.cd-head .cd-kicker.live::before {
  content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-glow); margin-right: 6px; vertical-align: 1px;
  box-shadow: 0 0 8px var(--red-glow); animation: pulse 1.6s infinite ease-in-out;
}
.cd-head b {
  font-family: 'Anton', sans-serif; font-size: 1.05rem; letter-spacing: 0.5px;
  color: var(--gold-soft); text-transform: uppercase; line-height: 1.05; max-width: 22ch;
}

/* ─── ABAS: trilho de cinema ─── */
.tabs { background: linear-gradient(180deg, #15100d, #0e0a08); box-shadow: inset 0 2px 6px rgba(0,0,0,0.5); }
.tab.active { box-shadow: 0 6px 16px rgba(196,30,30,0.5), inset 0 1px 0 rgba(255,255,255,0.2); }

/* ─── SESSÃO: motivo de fita de filme + thumb editorial ─── */
.sess-card {
  background: linear-gradient(165deg, #241c17, #140f0c);
  border-color: rgba(231,184,75,0.14);
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}
.sess-card::before { /* perfuração de fita na borda esquerda */
  content: ""; position: absolute; left: 96px; top: 0; bottom: 0; width: 9px; z-index: 5;
  background:
    radial-gradient(circle at center, #0e0a08 2.4px, transparent 2.6px) center/9px 16px repeat-y,
    linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.2));
  pointer-events: none;
}
.sess-thumb { width: 106px; }
.sess-time {
  background: var(--gold); color: var(--black); font-weight: 700;
  border-radius: 6px 6px 6px 0; padding: 3px 9px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
}
.sess-tag { color: var(--gold-soft); letter-spacing: 2px; }
.sess-tag::before { content: "▸ "; color: var(--red-glow); }
.sess-body h4 { letter-spacing: 0.2px; }

/* ─── FACT CARDS: índice numerado, menos uniforme ─── */
.about-grid { counter-reset: fact; }
.fact-card {
  background: linear-gradient(165deg, #221a15, #130e0b);
  border-color: rgba(231,184,75,0.14);
}
.fact-card::before {
  counter-increment: fact; content: counter(fact, decimal-leading-zero);
  position: absolute; top: 12px; right: 14px;
  font-family: 'Anton', sans-serif; font-size: 1.5rem; color: rgba(231,184,75,0.18);
  letter-spacing: 1px;
}
.fact-card:nth-child(2n) { background: linear-gradient(165deg, #261c14, #14100c); }
.fact-card h3 { color: var(--gold-soft); }
.fact-card .ic-img { filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }

/* ─── DESTAQUE (feature): marquise + recorte ─── */
.feature { border-color: rgba(231,184,75,0.55); border-radius: 18px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(231,184,75,0.18); }
.feature .badge { box-shadow: 0 6px 14px rgba(231,184,75,0.4); border-radius: 8px; letter-spacing: 2px; }
.feature .chip { border-color: rgba(231,184,75,0.3); }

/* ─── LABRFF stats: cara de tíquete numerado ─── */
.lab-stat {
  position: relative; background: linear-gradient(165deg, #231b15, #130e0b);
  border-color: rgba(231,184,75,0.16);
}
.lab-stat::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 10px; height: 0;
  border-top: 1px dashed rgba(231,184,75,0.25);
}
.lab-stat .ls-num { text-shadow: 0 0 12px rgba(231,184,75,0.25); }
.labrff-quote { border-left-width: 2px; font-size: 1.02rem; line-height: 1.45; }

/* ─── stack de curiosidades: borda dourada fina + número de claquete ─── */
.stack-card { border-color: rgba(231,184,75,0.22); border-radius: 18px; }
.stack-card .sc-num {
  display: inline-block; background: rgba(18,13,11,0.7); border: 1px solid var(--line);
  padding: 3px 9px; border-radius: 6px; letter-spacing: 3px;
}

/* ─── filmes patrimônio: pôster com filete ─── */
.film-card { border-color: rgba(231,184,75,0.16); border-radius: 12px; }
.film-card h5 { color: var(--gold-soft); }

/* ─── GUIA DE LOCAIS: ícone com moldura de filme ─── */
.guide-icon {
  background: linear-gradient(160deg, rgba(196,30,30,0.16), rgba(231,184,75,0.06));
  border-color: rgba(231,184,75,0.3); color: var(--gold-soft);
}
.guide-icon .i { width: 22px; height: 22px; }
.guide-card { background: linear-gradient(165deg, #221a15, #130e0b); border-color: rgba(231,184,75,0.14); }

/* ─── CAST tag com ponto teal ─── */
.cast-body .ct-tag { display: inline-flex; align-items: center; gap: 7px; }
.cast-body .ct-tag .i { width: 15px; height: 15px; color: var(--teal-soft); }

/* ─── INGRESSOS: ticket-stub gigante com lâmpadas ─── */
.tickets { padding-top: 54px; padding-bottom: 54px; }
.tickets .wrap {
  position: relative; padding: 34px 24px 32px; border-radius: 20px;
  background:
    radial-gradient(circle at left 50%, transparent 12px, rgba(231,184,75,0.05) 12.5px) left/51% 100% no-repeat,
    radial-gradient(circle at right 50%, transparent 12px, rgba(231,184,75,0.05) 12.5px) right/51% 100% no-repeat;
  border: 1px dashed rgba(231,184,75,0.4);
}
.tickets .free-badge { box-shadow: 0 6px 16px rgba(231,184,75,0.35); }
.tickets h2 i { font-style: normal;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ─── QUIZ: resultado com selo, não emoji ─── */
.quiz-result .qr-emoji {
  width: 88px; height: 88px; margin: 0 auto 6px; border-radius: 50%;
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(231,184,75,0.16), transparent 70%);
  font-size: 0; color: var(--gold-soft);
}
.quiz-result .qr-emoji .i { width: 42px; height: 42px; }
.quiz-opt:hover { background: rgba(231,184,75,0.06); }

/* ─── CHATBOT fab: claquete real ─── */
.chat-fab { font-size: 0; }
.chat-fab .i { width: 26px; height: 26px; color: #fff; stroke-width: 2; }
.chat-head .avatar { font-size: 0; }
.chat-head .avatar .i { width: 20px; height: 20px; color: var(--black); }

/* ─── PLAYER: disco com brilho ─── */
.music-player { border-color: rgba(231,184,75,0.25); }

/* ─── PATROCINADORES: corrige título em fundo claro ─── */
.sponsors .section-title,
.sponsors .section-title::first-line { color: #2a2018; text-shadow: none; }
.sponsors .section-title i { background: none; -webkit-text-fill-color: #9a2a1e; color: #9a2a1e; }
.sponsors .section-label::before { border-color: #9a2a1e;
  background: linear-gradient(90deg, transparent 2px, #9a2a1e 2px 3px, transparent 3px) 0 0/4px 100%; }
.sponsors .section-label::after { display: none; }
.spon { background: #fff; border: 1px solid rgba(122,45,18,0.16); border-radius: 14px;
  padding: 16px 14px; box-shadow: 0 6px 16px rgba(0,0,0,0.08); justify-content: center; min-height: 92px; }
.spon-lead { width: 100%; max-width: 280px; }
.spon-logo-lead { width: 132px; height: 132px; padding: 14px; }
.spon-note { text-align: center; font-size: 0.72rem; color: #8a7558; margin-top: 14px; }

/* faixa oficial de patrocinadores (board único) */
.spon-board {
  margin-top: 6px; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(122,45,18,0.16); box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}
.spon-board img { width: 100%; height: auto; display: block; }

/* ─── JORNADA · GLOBO Hollywood → Roliúde ─── */
.jornada { text-align: center; }
.globe-wrap { margin-top: 10px; position: relative; }
#globe {
  width: 100%; max-width: 440px; height: auto; margin: 0 auto; display: block;
  cursor: grab; touch-action: pan-y;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.55));
}
#globe:active { cursor: grabbing; }
.globe-cap {
  margin: 16px auto 0; max-width: 40ch;
  font-size: 0.78rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted-2);
}
.globe-cap b { color: var(--gold-soft); font-weight: 700; }

/* ─── SELETOR DE IDIOMA (botão + dropdown) ─── */
.lang-switch { position: fixed; top: 12px; right: 12px; z-index: 1200; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(18,13,11,0.74); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 40px;
  color: var(--gold-soft); font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.76rem; letter-spacing: 0.5px; padding: 9px 13px; cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4); transition: border-color .2s, background .2s;
}
.lang-btn:hover { border-color: rgba(231,184,75,0.5); }
.lang-btn .lang-globe { width: 15px; height: 15px; color: var(--gold-soft); }
.lang-chev { width: 13px; height: 13px; transition: transform .22s cubic-bezier(.16,1,.3,1); color: var(--muted); }
.lang-switch.open .lang-chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 7px); right: 0; min-width: 156px;
  background: var(--coal); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 5px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(.98);
  transform-origin: top right; pointer-events: none;
  transition: opacity .2s ease, transform .22s cubic-bezier(.16,1,.3,1), visibility .2s;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.lang-menu button {
  text-align: left; background: transparent; border: none; cursor: pointer;
  color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.88rem;
  padding: 11px 14px; border-radius: 9px; transition: background .15s, color .15s;
}
.lang-menu button:hover { background: rgba(231,184,75,0.08); color: var(--gold-soft); }
.lang-menu button.active { background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff; }

/* ─── FOOTER: filete e botão ─── */
footer { background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4)); }
.foot-social a { transition: background .2s, transform .2s, border-color .2s; }
.foot-labrff .i { width: 17px; height: 17px; }

/* ─── ícones contextuais ─── */
.sess-thumb .ph { font-size: 0; }
.sess-thumb .ph .i { width: 38px; height: 38px; opacity: .42; color: var(--sand); stroke-width: 1.6; }
.free-badge .i, .free-ico { width: 14px; height: 14px; vertical-align: -2px; margin-right: 5px; }
.hero-actions .btn-primary .i { width: 18px; height: 18px; }
.guest-photo { font-size: 0; }
.guest-photo .i { width: 34px; height: 34px; color: var(--gold-soft); opacity: .8; }

/* ─── reveal: leve sobe-e-clareia mais cinematográfico ─── */
.reveal { transform: translateY(22px); filter: saturate(.9); }
.reveal.in { filter: none; }

/* =========================================================
   RESPONSIVE — wider screens get a touch more room
   ========================================================= */
@media (min-width: 620px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { font-size: 1rem; }
}

/* =========================================================
   ✦ CORREÇÕES MOBILE — overflow & respiro (2026)
   ========================================================= */

/* trava qualquer estouro horizontal */
html, body { max-width: 100%; overflow-x: hidden; }
.wrap, .hero-inner { max-width: 100%; }
.section-title, .hero h1, .tickets h2, .feature h3, .cast-body h3 {
  overflow-wrap: break-word; word-break: normal; hyphens: none;
}

/* títulos: escala mobile sã, sem letter-spacing que estoura */
.section-title { font-size: clamp(1.55rem, 7.2vw, 2.9rem); letter-spacing: 0; padding-inline: 2px; }
.tickets h2   { font-size: clamp(2rem, 9.5vw, 3.2rem); letter-spacing: 0; }

/* HERO eyebrow: pílula que quebra linha e cabe na tela */
.hero-eyebrow {
  max-width: calc(100% - 8px); flex-wrap: wrap; justify-content: center;
  text-align: center; line-height: 1.5; font-size: 0.62rem; letter-spacing: 1.6px;
  padding: 7px 14px; margin-inline: auto;
}

/* HERO ações: botões empilhados e à largura total no mobile */
.hero-actions { width: 100%; gap: 10px; }
.hero-actions .btn-primary,
.hero-actions .btn-ghost { flex: 1 1 100%; justify-content: center; }

/* botões: padding/tracking que não estoura */
.btn-primary { padding: 15px 22px; font-size: 0.86rem; letter-spacing: 0.6px; }
.btn-ghost   { padding: 14px 20px; font-size: 0.78rem; letter-spacing: 1px; }

/* countdown encolhe em telas estreitas */
.cd-box { min-width: 0; flex: 1 1 0; padding: 11px 6px; }
.cd-num { font-size: clamp(1.4rem, 8vw, 1.9rem); }

/* perfuração de fita removida no mobile — limpa o card */
.sess-card::before { display: none; }

/* vinheta cinematográfica mais leve (não embaça o conteúdo) */
body::before { background: radial-gradient(125% 85% at 50% 24%, transparent 66%, rgba(0,0,0,0.42) 100%); }

/* sponsors/qualquer flex que possa transbordar */
.films-scroll, .guests-scroll, .scroller { max-width: 100%; }

/* ── telas bem estreitas ── */
@media (max-width: 400px) {
  section { padding: 40px 14px; }
  .section-title { font-size: clamp(1.4rem, 7vw, 2.2rem); }
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 1.2px; }
  .countdown { gap: 6px; }
}

@media (min-width: 620px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { font-size: 1rem; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { flex: 0 1 auto; }
}

/* ─── PLAYER DE MÚSICA: discreto, fixo, botão circular ─── */
.music-player {
  left: 14px; bottom: 16px; width: 48px; height: 48px; max-width: none;
  padding: 0; gap: 0; border: none; background: none; box-shadow: none; backdrop-filter: none;
  border-radius: 50%; opacity: 0.8; transition: opacity .2s, transform .2s;
}
.music-player:hover { opacity: 1; transform: translateY(-2px); }
.music-player .mp-info { display: none; }
.music-player .mp-art {
  position: absolute; inset: 0; width: 48px; height: 48px;
  border: 1px solid var(--line); box-shadow: 0 6px 16px rgba(0,0,0,0.45);
}
.music-player .mp-toggle {
  position: absolute; inset: 0; margin: auto; width: 26px; height: 26px;
  background: rgba(18,13,11,0.8); border: 1px solid rgba(231,184,75,0.45); color: var(--gold-soft);
  font-size: 0.66rem; box-shadow: none;
}
@media (max-width: 380px) {
  .music-player { width: 44px; height: 44px; }
  .music-player .mp-art { width: 44px; height: 44px; }
}

/* =========================================================
   ✦ POLISH (impeccable · mobile) — craft pass
   ========================================================= */

/* 1 · tipografia de pôster SEM gradient-text: dourado sólido, nítido */
.section-title i, .tickets h2 i {
  background: none; -webkit-background-clip: border-box; background-clip: border-box;
  -webkit-text-fill-color: currentColor; color: var(--gold-soft);
}

/* 2 · pull-quote do LABRFF sem faixa lateral — aspas de destaque */
.labrff-quote {
  border-left: 0; padding: 6px 6px 4px; margin-top: 12px; text-align: center;
  font-style: italic; color: var(--muted); font-size: 1.06rem; line-height: 1.5;
  position: relative;
}
.labrff-quote::before {
  content: "\201C"; display: block; font-family: 'Anton', serif;
  font-size: 2.8rem; line-height: 0.7; color: var(--gold); opacity: .55; margin-bottom: 8px;
}

/* 3 · ritmo vertical — respiro variado, não monótono */
section { padding-block: 50px; }
#sobre { padding-top: 26px; }
.cast, .labrff, #cabaceiras { padding-block: 62px; }
#destaque { padding-top: 30px; }
.sponsors { padding-block: 56px; }

/* 4 · alvos de toque confortáveis */
.guide-map { padding: 9px 15px; }
.stack-arrow { width: 48px; height: 48px; }

/* 5 · motion: ease-out-expo, entrada mais cinematográfica */
.reveal {
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1),
              filter .85s cubic-bezier(.16,1,.3,1);
  transform: translateY(26px);
}
.sess-card, .guide-card, .fact-card, .btn-primary, .btn-ghost, .foot-social a {
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}

/* micro-craft: rótulo de seção com filete mais fino e presente */
.section-label { gap: 9px; }
.cd-head b { line-height: 1.1; }

/* =========================================================
   ✦ PATROCINADORES — board dissolvido no fundo (sem retângulo)
   ========================================================= */
/* seção volta a ser escura como o resto do site */
.sponsors { background: transparent; color: var(--white); }
.sponsors .section-label { color: var(--gold-soft); }
.sponsors .section-label::before {
  border-color: var(--red-glow);
  background: linear-gradient(90deg, transparent 2px, var(--red-glow) 2px 3px, transparent 3px) 0 0/4px 100%;
}
.sponsors .section-title,
.sponsors .section-title::first-line { color: var(--white); text-shadow: 0 1px 0 rgba(0,0,0,0.4), 0 2px 0 rgba(142,18,18,0.25), 0 3px 14px rgba(0,0,0,0.45); }
.sponsors .section-title i { color: var(--gold-soft); -webkit-text-fill-color: currentColor; background: none; }

/* board: invertido p/ ficar ESCURO com logos claros = mesma cor do site.
   Sem moldura; bordas esfumadas fundem no fundo. */
.spon-board { border: 0; border-radius: 0; box-shadow: none; overflow: visible; margin-top: 14px; }
.spon-board img {
  /* board já escuro (logos brancos) — só esfuma as bordas p/ fundir no fundo */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%),
    linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%),
    linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-composite: intersect;
}

/* =========================================================
   ✦ SEM NEON — remove glows, pulsos e vermelho berrante
   ========================================================= */
/* vermelho-neon -> vermelho-tapete (menos saturado) */
:root { --red-glow: #C0392B; }

/* remove halos de brilho (text-shadow 0 0) */
.cd-num, .ls-num, .lab-stat .ls-num { text-shadow: none; }

/* remove glows coloridos dos botões/controles -> sombra escura neutra */
.btn-primary { box-shadow: 0 10px 24px -10px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.14); }
.btn-primary:hover { box-shadow: 0 14px 30px -10px rgba(0,0,0,0.65); }
.tab.active { box-shadow: 0 4px 12px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.15); }
.nav-cta, .mp-toggle { box-shadow: 0 4px 12px rgba(0,0,0,0.45); }
.chat-fab { box-shadow: 0 8px 22px rgba(0,0,0,0.5); }
.lang-menu button.active, .feature .badge, .tickets .free-badge,
.free-badge, .cd-message { box-shadow: none; }

/* ponto "no ar" sem glow e sem pulso */
.cd-head .cd-kicker.live::before { box-shadow: none; animation: none; }

/* lâmpadas de marquise sem brilho neon (caso apareçam) */
.bulbs i { box-shadow: none; animation: none; }

/* chatbot: sem anel pulsante de neon */
.chat-fab .pulse { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
