/* =========================================================
   TOKENS
========================================================= */
:root {
  --black:        #0c0a09;
  --black-soft:   #161211;
  --black-card:   #1c1715;
  --gold:         #ffcc29;
  --gold-bright:  #ffe38a;
  --red:          #9c2b2f;
  --cream:        #f3ede2;
  --muted:        #a89f92;
  --line:         rgba(243, 237, 226, 0.12);

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body:    "Manrope", -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 14px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* =========================================================
   RESET
========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { width: 20px; height: 20px; }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  color: var(--cream);
}

/* =========================================================
   BOTÕES
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1410;
  box-shadow: 0 8px 24px -8px rgba(255, 204, 41, 0.6);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(255, 204, 41, 0.75);
}

.btn--lg { padding: 17px 36px; font-size: 1.05rem; }

.btn--outline {
  border-color: var(--line);
  color: var(--cream);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* =========================================================
   NAV
========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  background: transparent;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(12, 10, 9, 0.88);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo img { height: 34px; width: auto; }

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 600;
}
.nav__links a { color: var(--muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--gold-bright); }

.nav__cta { padding: 10px 22px; font-size: 0.88rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  display: none;
}

.hero__video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  z-index: 0;
  pointer-events: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,10,9,.46) 0%, rgba(12,10,9,.12) 45%, rgba(12,10,9,.56) 100%),
    radial-gradient(80% 70% at 50% 50%, transparent 0%, rgba(12,10,9,.16) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 72px 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  height: 56px;
  width: auto;
  margin-bottom: 1.6rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 0.98;
  max-width: none;
  white-space: nowrap;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}

.hero__subline {
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.hero-social a,
.hero-audio-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243,237,226,.45);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(12,10,9,.28);
  backdrop-filter: blur(6px);
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s;
}
.hero-audio-toggle { cursor: pointer; }
.hero-social svg, .hero-audio-toggle svg { width: 20px; height: 20px; }
.hero-social a:hover, .hero-audio-toggle:hover, .hero-audio-toggle.is-playing { transform: translateY(-3px); color: var(--black); background: var(--gold); border-color: var(--gold); }

.hero__scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* =========================================================
   SEÇÃO 2 — STATS
========================================================= */
.stats {
  position: relative;
  z-index: 1;
  background: rgba(22, 18, 17, 0.88);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.stat {
  text-align: center;
  min-width: 160px;
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold-bright);
  line-height: 1;
}

.stat__label {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--line);
}
@media (max-width: 640px) {
  .stats__inner { flex-wrap: nowrap; gap: 10px; justify-content: space-between; }
  .stat { min-width: 0; flex: 1; }
  .stat__number { font-size: clamp(1.75rem, 8.5vw, 2.35rem); }
  .stat__label { margin-top: .35rem; font-size: .62rem; letter-spacing: .02em; }
  .stat-divider { display: block; height: 54px; }
}

/* =========================================================
   SEÇÃO 3 — AGENDA
========================================================= */
.agenda { position: relative; z-index: 1; padding: 100px 0; background: rgba(12, 10, 9, 0.82); }

.agenda-list {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
}

.agenda-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.agenda-item:hover { padding-left: 10px; }

.agenda-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 66px;
  flex-shrink: 0;
  color: var(--gold);
}
.agenda-item__day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}
.agenda-item__month {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.agenda-item__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.agenda-item__city {
  font-weight: 700;
  font-size: 1.15rem;
}
.agenda-item__venue {
  color: var(--muted);
  font-size: 0.92rem;
}

.agenda-item__cta {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}
.agenda-item__cta:hover {
  border-color: var(--gold);
  background: rgba(255, 204, 41, 0.08);
}

.agenda__cta-geral { margin-top: 2.5rem; }

/* =========================================================
   DVD DO MEU JEITO
========================================================= */
.dvd-section { position: relative; z-index: 1; padding: 82px 0 0; background: rgba(12,10,9,.92); border-top: 1px solid var(--line); overflow: hidden; }
.dvd-section__grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 42px; }
.dvd-section__text { color: var(--muted); max-width:32ch; }
.dvd-playlist { width: 100%; aspect-ratio: 16/9; border: 1px solid var(--line); border-radius: var(--radius); background: #000; }
.sponsors-slider { margin-top: 62px; padding: 22px 0; border-top: 1px solid var(--line); background: #050505; overflow: hidden; }
.sponsors-track { display:flex; width:max-content; animation:sponsor-scroll 35s linear infinite; }
.sponsors-slider:hover .sponsors-track { animation-play-state: paused; }
.sponsor { flex:0 0 190px; height:70px; background-image:url('assets/sponsors-dvd-do-meu-jeito.png'); background-repeat:no-repeat; background-size:760px 286px; opacity:.48; transform:scale(.65); }
.sponsor--antonioni{background-position:0 0}.sponsor--azevedo{background-position:-250px 0}.sponsor--allfix{background-position:-510px 0}.sponsor--jk{background-position:0 -88px}.sponsor--campinas{background-position:-250px -88px}.sponsor--mgm{background-position:-510px -88px}.sponsor--arquitetos{background-position:0 -182px}.sponsor--rt{background-position:-210px -182px}.sponsor--palma{background-position:-400px -182px}.sponsor--pedreira{background-position:-570px -182px}
@keyframes sponsor-scroll { from { transform:translateX(0) } to { transform:translateX(-50%) } }

@media (max-width: 640px) { .dvd-section { padding-top:58px; } .dvd-section__grid { grid-template-columns:1fr; gap:22px; } .sponsors-slider { margin-top:40px; } .sponsor { flex-basis:150px; transform:scale(.85); transform-origin:left center; } }

.agenda-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 24px;
  margin-top: 2.5rem;
}

.calendar-panel,
.week-panel {
  background: var(--black-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.calendar-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.calendar-panel__header h3,
.week-panel h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}

.calendar-nav {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: border-color .2s, color .2s;
}
.calendar-nav:hover { border-color: var(--gold); color: var(--gold); }

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.calendar-weekdays { margin-bottom: 10px; }
.calendar-weekdays span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  color: var(--cream);
  font-size: .9rem;
}
.calendar-day.has-event { color: var(--black); background: var(--gold); font-weight: 800; }
.calendar-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--black);
}
.calendar-day.is-today { outline: 1px solid var(--cream); outline-offset: 2px; }
.calendar-day.is-today.has-event { outline-color: var(--gold-bright); }
.calendar-day.has-event { cursor: pointer; }
.calendar-day__schedule {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 230px;
  padding: 9px 11px;
  border: 1px solid rgba(255,204,41,.45);
  border-radius: 8px;
  background: rgba(12,10,9,.97);
  color: var(--cream);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 5px);
  transition: opacity .18s, transform .18s;
}
.calendar-day.has-event:hover .calendar-day__schedule,
.calendar-day.has-event.is-selected .calendar-day__schedule { opacity: 1; transform: translate(-50%, 0); }

.calendar-google {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold-bright);
  font-size: .86rem;
  font-weight: 700;
}
.calendar-google:hover { color: var(--gold); }

.week-panel { display: flex; flex-direction: column; }
.week-panel__eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.week-events { margin-top: 16px; }
.week-event {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.week-event time {
  min-width: 58px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: capitalize;
}
.week-event strong,
.week-event span { display: block; }
.week-event strong { font-size: .96rem; }
.week-event span { color: var(--muted); font-size: .83rem; }

/* =========================================================
   SEÇÃO 3.1 MÚSICA
========================================================= */
.music-hub {
  position: relative;
  z-index: 1;
  padding: 68px 0;
  background: linear-gradient(120deg, rgba(12,10,9,.91), rgba(22,18,17,.86) 42%, rgba(12,10,9,.91));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.music-hub__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 20px; margin-top: 2rem; }
.music-card {
  min-height: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12,10,9,.7);
}
.music-card__icon { font-size: 1.9rem; color: var(--gold); line-height: 1; margin-bottom: 26px; }
.music-card__platform { color: var(--gold); font-family: var(--font-display); font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; }
.music-card h3 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; line-height: 1; margin: 8px 0 14px; }
.music-card p:not(.music-card__platform) { max-width: 42ch; color: var(--muted); font-size: .92rem; }
.music-card .btn { margin-top: auto; padding: 11px 20px; }
.spotify-embed { width: 100%; height: 152px; margin: 8px 0 18px; border: 0; border-radius: 10px; }
.music-platforms { display: flex; flex-direction: column; justify-content: center; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(12,10,9,.78); }
.music-platforms__logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.music-platforms__logos a { display: grid; place-items: center; gap: 8px; min-height: 112px; padding: 12px 6px; border: 1px solid var(--line); border-radius: 10px; color: var(--cream); transition: color .2s, border-color .2s, background .2s; }
.music-platforms__logos a:hover { color: var(--gold); border-color: var(--gold); background: rgba(255,204,41,.08); }
.music-platforms__logos svg { width: 28px; height: 28px; }
.music-platforms__logos span { text-align: center; font-size: .68rem; font-weight: 800; line-height: 1.1; }
.music-hub__more { margin-top: 24px; color: var(--muted); font-size: .9rem; }
.music-hub__more a { color: var(--gold-bright); font-weight: 700; }
.music-hub__more a:hover { color: var(--gold); }
.btn--spotify { background: #1ed760; color: #071b0d; }
.btn--spotify:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -12px rgba(30,215,96,.7); }

@media (max-width: 640px) {
  .agenda-item { flex-wrap: wrap; }
  .agenda-item__cta { width: 100%; text-align: center; margin-top: 8px; }
  .agenda-dashboard, .music-hub__grid { grid-template-columns: 1fr; }
  .calendar-panel, .week-panel, .music-card { padding: 22px; }
}

/* =========================================================
   SEÇÃO 4 — FORMATOS DE SHOW
========================================================= */
.formatos {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: rgba(22, 18, 17, 0.9);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.formatos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}

.format-card {
  background: var(--black-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.format-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 41, 0.4);
}

.format-card__image {
  height: 240px;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.08);
  transition: filter 0.45s var(--ease), transform 0.55s var(--ease);
}
.format-card:hover .format-card__image { filter: grayscale(0) contrast(1); transform: scale(1.04); }

.format-card__body { padding: 24px; }
.format-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}
.format-card__body p {
  color: var(--muted);
  font-size: 0.94rem;
}

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

/* Scroll-reveal genérico (aplicado via JS) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   SEÇÃO 5 — BIOGRAFIA
========================================================= */
.bio { padding: 110px 0; overflow: hidden; }

.bio__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.bio__text p { color: var(--muted); margin-bottom: 1.1rem; max-width: 52ch; }
.bio__text strong { color: var(--gold-bright); }
.bio__text .btn { margin-top: 0.8rem; }

.bio__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.bio__image {
  max-height: 560px;
  width: auto;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.55));
}
.bio__image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .bio__inner { grid-template-columns: 1fr; }
  .bio__image-wrap { order: -1; }
}

/* =========================================================
   SEÇÃO 5.1 — TEASER DO DVD
========================================================= */
.dvd-teaser {
  padding: 0 0 110px;
}

.dvd-teaser__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--black-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}

.dvd-teaser__media {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
  width: 100%;
}

.dvd-teaser__loop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dvd-teaser__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 10, 9, 0.25);
  transition: background 0.25s var(--ease);
}
.dvd-teaser__play-icon svg {
  width: 30px;
  height: 30px;
  color: #1a1410;
}
.dvd-teaser__play-icon::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.6);
  transition: transform 0.25s var(--ease);
}
.dvd-teaser__media:hover .dvd-teaser__play-icon { background: rgba(12, 10, 9, 0.1); }
.dvd-teaser__media:hover .dvd-teaser__play-icon::before { transform: scale(1.08); }
.dvd-teaser__play-icon svg { position: relative; z-index: 1; }

.dvd-teaser__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
}
.dvd-teaser__text p:not(.eyebrow) { color: var(--muted); max-width: 42ch; }

@media (max-width: 780px) {
  .dvd-teaser__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   SEÇÃO 5.1 GALERIA DESLIZANTE
========================================================= */
.gallery-showcase {
  position: relative;
  z-index: 1;
  padding: 100px 0 110px;
  overflow: hidden;
  background: rgba(12, 10, 9, 0.9);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-viewport { margin-top: 2.5rem; overflow: hidden; width: 100%; }
.gallery-track { display: flex; width: max-content; gap: 0; animation: gallery-scroll 58s linear infinite; }
.gallery-viewport:hover .gallery-track { animation-play-state: paused; }
.gallery-item { display: block; flex: 0 0 auto; margin: 0; height: 320px; overflow: hidden; background: var(--black-card); }
.gallery-item img { display: block; width: auto; height: 320px; max-width: none; object-fit: contain; }
@keyframes gallery-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.bio { position: relative; z-index: 1; background: rgba(12, 10, 9, 0.9); }
.bio__inner { grid-template-columns: .9fr 1.1fr; }
.bio__image-wrap { justify-content: flex-start; }
.bio__image { width: 100%; max-height: none; object-fit: cover; aspect-ratio: 4 / 5; border-radius: var(--radius); filter: none; }

@media (max-width: 900px) {
  .bio__image-wrap { order: -1; }
  .gallery-item, .gallery-item img { height: 240px; }
}

/* Modal de vídeo */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal[hidden] { display: none; }

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 4, 0.92);
  backdrop-filter: blur(4px);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.video-modal__content video {
  width: 100%;
  border-radius: 12px;
  display: block;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--black-card);
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.video-modal__close:hover { border-color: var(--gold); color: var(--gold-bright); }

/* =========================================================
   SEÇÃO 6 — ÁREA DO CONTRATANTE / IMPRENSA
========================================================= */
.imprensa {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: rgba(22, 18, 17, 0.92);
  border-top: 1px solid var(--line);
}

.imprensa__lede {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.imprensa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.press-card {
  background: var(--black-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}
.press-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(255, 204, 41, 0.4), 0 20px 40px -20px rgba(255, 204, 41, 0.5);
}

.press-card__icon {
  width: 40px; height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 41, 0.1);
  color: var(--gold);
  margin-bottom: 14px;
}
.press-card__icon svg { width: 22px; height: 22px; }

.press-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.press-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.press-card__cta {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-bright);
}

@media (max-width: 900px) {
  .imprensa-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) { .imprensa-grid { grid-template-columns: 1fr; } }

/* =========================================================
   RODAPÉ
========================================================= */
.footer {
  position: relative;
  z-index: 1;
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 70px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer__logo { height: 32px; margin-bottom: 14px; }
.footer__brand p { color: var(--muted); max-width: 32ch; font-size: 0.92rem; }

.footer__nav-title {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer__nav, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}
.footer__nav a, .footer__contact a { color: var(--muted); transition: color 0.2s; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-bright); }

.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.footer__social a:hover { color: var(--gold-bright); border-color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 22px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}
.footer__bottom p + p { margin-top: 6px; }
.footer__bottom a { color: var(--gold-bright); font-weight: 700; }
.footer__bottom a:hover { color: var(--gold); }

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

/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
========================================================= */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(12, 10, 9, 0.78);
  color: var(--gold);
  border: 1px solid rgba(255, 204, 41, 0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.8);
  transition: transform 0.2s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); background: var(--gold); color: var(--black); }
.whatsapp-float svg { width: 30px; height: 30px; }


/* =========================================================
   RESPONSIVO — NAV MOBILE
========================================================= */
@media (max-width: 860px) {
  .nav, .nav.is-scrolled { padding: 16px 0; background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
  .nav__inner { position: relative; min-height: 38px; padding-right: 72px; }
  .nav__logo { display: flex; align-items: center; }
  .nav__links {
    position: absolute;
    top: calc(100% + 16px);
    left: 0; right: 0;
    background: rgba(12, 10, 9, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
    border-bottom: 1px solid var(--line);
  }
  .nav__links.is-open { max-height: 320px; padding: 18px 0; }
  .nav__links a { padding: 14px 0; width: 100%; text-align: center; }

  .nav__cta { display: none; }
  .nav__toggle { display: flex !important; position: absolute; top: 50%; right: 18px; z-index: 201; width: 42px; height: 42px; margin: 0; padding: 10px; transform: translateY(-50%); align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.45); border-radius: 7px; background: rgba(12,10,9,.62); box-shadow: 0 3px 16px rgba(0,0,0,.35); }
  .nav__toggle span { width: 22px; background: var(--cream); box-shadow: 0 1px 8px rgba(0,0,0,.7); }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .hero__bg { display: block; background: center / cover no-repeat url('assets/hero.png'); }
  .hero__video { display: none; }
}

@media (max-width: 640px) {
  .hero__video { position: absolute; width: 100%; height: 100%; opacity: .46; }
  .hero__vignette { width: 100%; height: 100%; background: linear-gradient(180deg, rgba(12,10,9,.38) 0%, rgba(12,10,9,.08) 48%, rgba(12,10,9,.52) 100%), radial-gradient(80% 70% at 50% 50%, transparent 0%, rgba(12,10,9,.12) 100%); }
  .section-inner { padding: 0 18px; }
  .hero { min-height: 560px; }
  .hero__content { padding: 80px 18px 0; }
  .hero__logo { height: 46px; }
  .hero__subline { font-size: .95rem; }
  .hero-social { width: 100%; flex-wrap: nowrap; gap: 5px; }
  .hero-social a, .hero-audio-toggle { width: min(9vw, 36px); height: min(9vw, 36px); flex: 0 0 min(9vw, 36px); }
  .stats { padding: 42px 0; }
  .agenda, .formatos, .bio, .imprensa { padding: 66px 0; }
  .calendar-panel__header h3 { font-size: 1.45rem; }
  .calendar-weekdays, .calendar-grid { gap: 5px; }
  .calendar-day__schedule { left: 0; transform: translate(0, 5px); max-width: 190px; }
  .calendar-day.has-event:hover .calendar-day__schedule, .calendar-day.has-event.is-selected .calendar-day__schedule { transform: translate(0, 0); }
  .music-hub { padding: 56px 0; }
  .music-hub .section-inner { text-align: center; }
  .music-hub .section-title { max-width: 13ch; margin-left: auto; margin-right: auto; }
  .music-card, .music-platforms { align-items: center; text-align: center; }
  .music-platforms__logos { width: 100%; }
  .music-platforms__logos a { min-height: 86px; }
  .bio__image-wrap { display: none; }
  .bio__inner { display: block; width: 100%; }
  .bio__text { width: 100%; max-width: none; }
  .bio__text p { max-width: none; }
  .agenda__cta-geral { width: 100%; max-width: 100%; white-space: normal; text-align: center; padding: 14px 18px; }
  .stats, .agenda, .music-hub, .formatos, .bio, .gallery-showcase, .imprensa, .footer { width: 100%; background-color: rgba(12, 10, 9, 0.96); }
  .hero__headline { white-space: normal; }
}
