/* =====================================================
   CARNAVAL JUAZEIRO 2027 — MÍDIA KIT EDITORIAL
   Design System: pitch deck + magazine + rate card
===================================================== */

/* ---- TOKENS ---- */
:root {
  --blue:    #1a30de;
  --blue-dk: #1120a1;
  --blue-xdk:#0c166b;
  --magenta: #ff4da1;
  --magenta-dk: #d9267c;
  --yellow:  #ffc037;
  --lime:    #77c82e;
  --orange:  #fa9849;
  --white:   #FFFFFF;
  --cyan:    #00f0ff;
  --ink:     #1a30de;
  --ink2:    #1120a1;
  --ink3:    #0b1670;
  --paper:   #F4F6FA;
  --muted:   rgba(255,255,255,.45);
  --sidebar-w: 220px;
  --font-head: 'Futura-CondensedExtraBold', 'Futura Condensed', 'Jost', sans-serif;
  --font-cond: 'Futura-Condensed', 'Futura Condensed', 'Jost', sans-serif;
  --font-body: 'Futura', 'Jost', sans-serif;
  --tr: .25s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: auto;
}
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.55;
}

/* Futura/Jost geometric letter-spacing tuning */
.sidebar-year, .cover-title, .scard-num, .ns-val, .rc-tier-name, .contato-title {
  letter-spacing: -0.02em;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* =====================================================
   LAYOUT: SIDEBAR + MAIN
===================================================== */
.sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--ink2);
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 24px;
  z-index: 200;
  gap: 0;
}
.sidebar-logo {
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  width: 100%;
  display: flex;
  justify-content: center;
}
.sidebar-logo img { height: 48px; width: auto; object-fit: contain; filter: brightness(1.2); }
.sidebar-nav {
  flex: 1;
  width: 100%;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.snav-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 20px;
  font-family: var(--font-cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.42);
  transition: color var(--tr), background var(--tr), border-color var(--tr);
  position: relative;
  border-left: 3px solid transparent;
}
.snav-item::before {
  content: attr(data-label);
  font-size: .62rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: rgba(255,255,255,.25);
  margin-right: 10px;
  min-width: 18px;
  font-family: var(--font-body);
}
.snav-item:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.04); }
.snav-item.active {
  color: var(--white);
  border-left-color: var(--magenta);
  background: rgba(219,13,115,.08);
}
.snav-item.active::before { color: var(--magenta); }
.sidebar-year {
  font-family: var(--font-head);
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: .06em;
  color: rgba(255,255,255,.04);
  padding: 0 20px;
  align-self: flex-start;
  pointer-events: none;
  user-select: none;
}

/* MOBILE TOPBAR */
.topbar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 80px;
  background: var(--ink2);
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.topbar-logo-link {
  display: flex;
  align-items: center;
  transition: opacity var(--tr), transform var(--tr);
}
.topbar-logo-link:hover {
  opacity: 0.9;
}
.topbar-logo-link:active {
  transform: scale(0.97);
}
.topbar-logo { height: 44px; width: auto; object-fit: contain; }
.topbar-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.topbar-menu span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }
.topbar-menu.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.topbar-menu.open span:nth-child(2) { opacity: 0; }
.topbar-menu.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.topbar-drawer {
  position: absolute;
  top: 80px; left: 0; right: 0;
  background: var(--ink2);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 8px 0;
  display: none;
  flex-direction: column;
}
.topbar-drawer.open { display: flex; }
.topbar-drawer a {
  padding: 12px 20px;
  font-family: var(--font-cond);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--tr), background var(--tr);
}
.topbar-drawer a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.topbar-drawer a.drawer-highlight-btn {
  background: linear-gradient(135deg, var(--magenta) 0%, #ff1c8d 100%);
  color: var(--white);
  margin: 12px 20px;
  padding: 14px 20px;
  border-radius: 8px;
  text-align: center;
  border-bottom: none !important;
  box-shadow: 0 4px 15px rgba(219, 13, 115, 0.4);
  display: block;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.topbar-drawer a.drawer-highlight-btn:hover,
.topbar-drawer a.drawer-highlight-btn:active {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(219, 13, 115, 0.6);
  filter: brightness(1.1);
  background: linear-gradient(135deg, var(--magenta) 0%, #ff1c8d 100%) !important;
}

/* MAIN */
.mk-main {
  margin-left: var(--sidebar-w);
}

/* CONTAINER */
.mk-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

/* =====================================================
   SECTION BANNER (faixa de identificação)
===================================================== */
.mk-section-banner {
  background: var(--sc, var(--magenta));
  padding: 18px clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
}
.mk-sec-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--stc, rgba(255,255,255,.25));
  min-width: 56px;
  letter-spacing: .04em;
}
.mk-sec-title {
  font-family: var(--font-cond);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--stc, var(--white));
  text-transform: uppercase;
}
.mk-sec-sub {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--stc, rgba(255,255,255,.65));
  margin-left: auto;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
}

/* =====================================================
   SEÇÃO COMUM
===================================================== */
.mk-section { border-bottom: 1px solid rgba(255,255,255,.06); }
.mk-section > .mk-container { padding-top: 56px; padding-bottom: 64px; }

/* =====================================================
   01 · CAPA
===================================================== */
.mk-cover {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--blue-xdk);
}
.cover-video {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: .75;
  z-index: 0;
}
.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 22, 107, 0.96) 0%,
    rgba(12, 22, 107, 0.82) 40%,
    rgba(12, 22, 107, 0.15) 75%,
    rgba(219, 13, 115, 0.1) 100%
  );
  z-index: 1;
}
/* Faixa superior */
.cover-topbar-strip {
  position: relative;
  z-index: 2;
  background: var(--magenta);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px clamp(24px,5vw,80px);
  font-family: var(--font-cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
/* Corpo da capa */
.cover-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px clamp(28px, 7vw, 100px);
  max-width: 820px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}
.cover-eyebrow {
  font-family: var(--font-cond);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.cover-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  line-height: .9;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ct-line1 {
  font-size: clamp(3.5rem, 8vw, 8rem);
  color: rgba(255,255,255,.9);
}
.ct-line2 {
  font-size: clamp(4rem, 10vw, 10rem);
  color: var(--white);
}
.ct-year {
  font-size: clamp(5rem, 14vw, 14rem);
  color: var(--yellow);
  line-height: .85;
  text-shadow: 0 0 80px rgba(255,192,55,.35);
}
.cover-rule {
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--yellow));
  margin: 20px 0;
  border-radius: 2px;
}
.cover-tagline {
  font-family: var(--font-cond);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
}
.cover-tagline strong { color: var(--yellow); }
.cover-highlight {
  font-family: var(--font-cond);
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 12px;
  margin-bottom: 16px;
  letter-spacing: .05em;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,240,255,.3);
}
.cover-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.cover-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.cover-pill {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.06);
}
.cover-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.mk-btn-primary {
  display: inline-block;
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 3px;
  transition: background var(--tr), transform var(--tr);
}
.mk-btn-primary:hover { background: var(--magenta-dk); transform: translateY(-2px); }
.mk-btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-family: var(--font-cond);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
  transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.mk-btn-ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.05); }
/* Faixa lateral direita */
.cover-side-stripe {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 44px;
  background: var(--yellow);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cover-side-stripe span {
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-xdk);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* =====================================================
   02 · SOBRE
===================================================== */
.mk-sobre { background: var(--ink2); }
.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.sobre-destaque {
  font-family: var(--font-cond);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .03em;
  color: var(--white);
  border-left: 4px solid var(--magenta);
  padding-left: 20px;
  margin-bottom: 20px;
  font-style: italic;
}
.sobre-lead p { color: rgba(255,255,255,.65); line-height: 1.75; font-size: .95rem; }
.sobre-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.sobre-card {
  background: var(--ink3);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 3px solid var(--cc, var(--magenta));
  transition: background var(--tr);
}
.sobre-card:hover { background: rgba(255,255,255,.04); }
.scard-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--cc, var(--magenta));
  letter-spacing: .04em;
}
.scard-icon { font-size: 2rem; }
.scard-label {
  font-family: var(--font-cond);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  line-height: 1.4;
}

/* =====================================================
   03 · NÚMEROS — CARROSSEL
===================================================== */
.mk-numbers { background: var(--ink); }
.num-carousel-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.num-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.num-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block !important;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition-property: opacity, transform, border-color, box-shadow;
}
.num-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

/* Slide Entry Animations */
.num-slide.active .ns-header {
  animation: numFadeIn 0.5s ease both;
}
.num-slide.active .ns-val {
  animation: numSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.num-slide.active .ns-lbl {
  animation: numFadeIn 0.7s ease both 0.15s;
}

@keyframes numSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes numFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Header do slide */
.ns-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-left: 6px solid var(--sh, var(--magenta));
  background: rgba(255,255,255,.03);
  margin-bottom: 2px;
}
.ns-icon { font-size: 2.2rem; }
.ns-category {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sh, var(--magenta));
}
.ns-desc { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 2px; letter-spacing: .04em; }

/* Stats */
.ns-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ns-stat {
  background: rgba(255,255,255,.03);
  border-bottom: 4px solid var(--sc, var(--magenta));
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--tr);
}
.ns-stat:hover { background: rgba(255,255,255,.05); }
.ns-stat.big {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: 48px 36px 40px;
}
.ns-stat-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ns-stat-group .ns-stat {
  flex: 1;
}
.ns-val {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: .02em;
}
.ns-val small { font-size: .5em; color: rgba(255,255,255,.7); }
.ns-stat.big .ns-val { font-size: clamp(4rem, 8vw, 7rem); }
.ns-lbl {
  font-family: var(--font-cond);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Custom grid for Slide 2 (Economic Impact) */
.econ-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2px !important;
}
.ns-stat.big-center {
  grid-column: span 2 !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 20px 32px !important;
}
.ns-stat.big-center .ns-val {
  font-size: clamp(3rem, 7vw, 4.8rem) !important;
  font-weight: 900 !important;
  text-shadow: 0 0 30px rgba(255, 192, 55, 0.25) !important;
}

/* Controles do carrossel */
.num-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 0 4px;
}
.nc-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.nc-btn:hover { background: var(--magenta); border-color: var(--magenta); color: var(--white); }
.nc-dots { display: flex; gap: 6px; }
.nc-dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.15);
  transition: background var(--tr), width var(--tr);
}
.nc-dot.active { background: var(--magenta); width: 40px; }
.nc-slide-label {
  font-family: var(--font-cond);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  margin-left: auto;
}

/* =====================================================
   04 · IMPACTO
===================================================== */
.mk-impacto { background: var(--ink2); }
.impacto-manifesto {
  font-family: var(--font-cond);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: .04em;
  font-style: italic;
  color: rgba(255,255,255,.75);
  border-left: 4px solid var(--magenta);
  padding-left: 20px;
  margin-bottom: 40px;
  max-width: 720px;
  line-height: 1.4;
}
.impacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.impacto-item {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,.03);
  transition: background var(--tr);
  opacity: 0;
  transform: translateY(20px);
}
.impacto-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, background var(--tr);
}
.impacto-item:hover { background: rgba(255,255,255,.05); }
.imp-left {
  width: 64px;
  min-height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}
.imp-right {
  padding: 20px 22px;
  flex: 1;
}
.imp-right strong {
  display: block;
  font-family: var(--font-cond);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.imp-right p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* =====================================================
   05 · VÍDEO
===================================================== */
.mk-video { background: var(--ink); }
.video-claim {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.video-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.video-main-column {
  display: flex;
  flex-direction: column;
}
.video-shell {
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  background: #000;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.video-shell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--yellow), var(--lime), var(--cyan));
  z-index: 5;
}
.video-shell video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}
.video-now-playing {
  background: var(--ink2);
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.vnp-label {
  font-family: var(--font-cond);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--lime);
  display: block;
  margin-bottom: 4px;
}
.vnp-title {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

/* Playlist Sidebar */
.video-playlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 480px;
  overflow-y: auto;
}
.playlist-card {
  display: flex;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  padding: 10px;
  gap: 12px;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}
.playlist-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-1px);
}
.playlist-card.active {
  background: rgba(26,48,222,.15);
  border-color: var(--blue);
  box-shadow: 0 0 15px rgba(26,48,222,.2);
}
.pc-thumb {
  position: relative;
  width: 110px;
  aspect-ratio: 16/10;
  background: #111;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
}
.pc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr);
}
.playlist-card:hover .pc-thumb img {
  transform: scale(1.05);
}
.pc-play-icon {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  opacity: 0.8;
  transition: opacity var(--tr), background var(--tr);
}
.playlist-card:hover .pc-play-icon {
  opacity: 1;
  background: rgba(0,0,0,.2);
}
.playlist-card.active .pc-play-icon {
  background: rgba(26,48,222,.5);
  color: var(--lime);
}
.pc-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.pc-tag {
  font-family: var(--font-cond);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.playlist-card.active .pc-tag {
  color: var(--lime);
}
.pc-title {
  font-family: var(--font-cond);
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pc-desc {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.playlist-card:hover .pc-desc {
  color: rgba(255,255,255,.6);
}

/* =====================================================
   06 · HINO DO CARNAVAL
===================================================== */
.mk-hino {
  background: var(--ink2);
}
.hino-claim {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
  text-align: center;
}
.hino-player-wrap {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  background: #000;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 192, 55, 0.15);
  border-radius: 8px;
  overflow: hidden;
}
.hino-player-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--magenta), var(--cyan));
  z-index: 5;
}
.hino-player-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.hino-info {
  background: var(--ink3);
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hino-title {
  font-family: var(--font-cond);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hino-tag {
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--yellow);
  background: rgba(255,192,55,.1);
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* =====================================================
   07 · LINE-UP
===================================================== */
.mk-lineup { background: var(--ink2); }
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lineup-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink3);
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,.05);
}
.lineup-card.headliner {
  grid-column: span 2;
  grid-row: span 2;
}
.lc-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.lineup-card.headliner .lc-img { aspect-ratio: auto; height: 100%; min-height: 380px; }
.lc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease, filter .3s ease;
  filter: grayscale(20%);
}
.lineup-card:hover .lc-img img { transform: scale(1.08); filter: grayscale(0%); }
.lc-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(5,13,30,.92) 0%, transparent 100%);
  padding: 20px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lc-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-cond);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 3px 8px;
  align-self: flex-start;
}
.lc-name {
  font-family: var(--font-cond);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  text-transform: uppercase;
}

/* =====================================================
   07 · MAPA
===================================================== */
.mk-mapa { background: var(--ink); }
.mapa-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2px;
  align-items: stretch;
}
.mapa-legend {
  background: var(--ink2);
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,.06);
}
.legend-title {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.legend-item span {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.2);
}
.mapa-embed {
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.mapa-embed iframe {
  width: 100%; height: 440px;
  display: block;
  border: none;
  filter: saturate(1.2) contrast(1.1) brightness(.85) hue-rotate(200deg);
}

/* =====================================================
   08 · PÚBLICO
===================================================== */
.mk-publico { background: var(--ink2); }
.publico-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: stretch;
}
.publico-data {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pub-row {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,.03);
  flex: 1;
  transition: background var(--tr);
}
.pub-row:hover { background: rgba(255,255,255,.05); }
.pub-icon {
  width: 60px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  color: var(--white);
}
.pub-text {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.pub-text strong {
  font-family: var(--font-cond);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.pub-val {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .05em;
}
.pub-text p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.publico-fotos {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2px;
}
.pf-main { overflow: hidden; }
.pf-main img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; transition: transform .5s ease; }
.pf-main:hover img { transform: scale(1.04); }
.pf-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.pf-secondary img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform .5s ease; }
.pf-secondary img:hover { transform: scale(1.04); }

/* =====================================================
   09 · COTAS — RATE CARD
===================================================== */
.mk-cotas {
  background: linear-gradient(180deg, #1120a1 0%, #060b40 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cotas-intro {
  margin-bottom: 40px;
  max-width: 800px;
}
.cotas-intro-title {
  font-family: var(--font-cond);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.cotas-intro-text {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.ratecard-wrap { 
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch;
  padding: 15px 0;
}
.ratecard {
  width: 100%;
  min-width: 680px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(17, 32, 161, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6), 0 0 35px rgba(26,48,222,0.18);
  border-radius: 8px;
  overflow: visible;
}
/* Cabeçalho */
.rc-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 0;
  overflow: visible;
}
.rc-feature {
  padding: 16px 18px;
  font-family: var(--font-cond);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
}
.rc-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 14px 16px;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.rc-tier-badge {
  font-family: var(--font-cond);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--white);
  padding: 3px 8px;
  border-radius: 10px;
  position: absolute;
  top: -10px;
  text-transform: uppercase;
  white-space: nowrap;
}
.rc-tier-badge.diamante {
  background: var(--magenta);
  box-shadow: 0 0 10px rgba(219,13,115,.6);
}
.rc-tier-badge.ouro {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 0 10px rgba(255,192,55,.6);
}
.rc-tier:last-child { border-right: none; }
.rc-gem { font-size: 1.8rem; margin-bottom: 4px; }
.rc-tier-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: .08em;
}
.rc-tier-qty {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}
.rc-tier-price {
  font-family: var(--font-cond);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-top: 4px;
}
/* Cores das colunas tier */
.rc-tier.diamante { background: rgba(219,13,115,.18); border-top: 4px solid var(--magenta); }
.rc-tier.diamante .rc-tier-name { color: var(--magenta); font-weight: 900; }
.rc-tier.diamante .rc-tier-price { color: var(--magenta); font-weight: 800; font-size: .95rem; }
.rc-tier.ouro { background: rgba(255,192,55,.1); border-top: 4px solid var(--yellow); }
.rc-tier.ouro .rc-tier-name { color: var(--yellow); font-weight: 900; }
.rc-tier.ouro .rc-tier-price { color: var(--yellow); font-weight: 800; font-size: .95rem; }
.rc-tier.prata { background: rgba(0,240,255,.06); border-top: 3px solid var(--cyan); }
.rc-tier.prata .rc-tier-name { color: var(--cyan); }
.rc-tier.prata .rc-tier-price { color: var(--cyan); }
.rc-tier.bronze { background: rgba(250,152,73,.06); border-top: 3px solid var(--orange); }
.rc-tier.bronze .rc-tier-name { color: var(--orange); }
.rc-tier.bronze .rc-tier-price { color: var(--orange); }

/* Linhas de benefícios */
.rc-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.05);
  transition: background var(--tr);
}
.rc-row:hover { background: rgba(255,255,255,.02); }
.rc-row .rc-feature {
  font-size: .82rem;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
  text-transform: none;
}
.rc-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  font-family: var(--font-cond);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-right: 1px solid rgba(255,255,255,.05);
  text-align: center;
}
.rc-cell:last-child { border-right: none; }
.rc-yes { color: var(--white); }
.rc-yes.diamante { background: rgba(219,13,115,.06); color: var(--magenta); }
.rc-yes.ouro     { background: rgba(255,192,55,.04); color: var(--yellow); }
.rc-yes.prata    { background: rgba(0,240,255,.04); color: var(--cyan); }
.rc-yes.bronze   { background: rgba(250,152,73,.04); color: var(--orange); }
.rc-med { color: rgba(255,255,255,.55); font-size: .76rem; }
.rc-no  { color: rgba(255,255,255,.15); font-size: .95rem; }
.rc-cell.diamante {
  background: rgba(219,13,115,.09) !important;
  font-size: .95rem;
}
.rc-cell.ouro {
  background: rgba(255,192,55,.05) !important;
}

/* Rodapé do rate card */
.rc-foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-top: 2px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.02);
}
.rc-cta-cell {
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.rc-cta-cell:last-child { border-right: none; }
.rc-cta {
  font-family: var(--font-cond);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 2px;
  display: block;
  text-align: center;
  transition: transform var(--tr), filter var(--tr);
}
.rc-cta:hover { transform: scale(1.05); filter: brightness(1.15); }
.rc-cta.diamante { background: var(--magenta); color: var(--white); }
.rc-cta.ouro     { background: var(--yellow); color: var(--ink); }
.rc-cta.prata    { background: var(--cyan); color: var(--ink); }
.rc-cta.bronze   { background: var(--orange); color: var(--white); }

/* CARDS DE PATROCÍNIO PARA MOBILE (hidden by default on desktop) */
.ratecard-mobile {
  display: none;
}

/* =====================================================
   10 · CONTATO
===================================================== */
.mk-contato { background: var(--blue-xdk); }
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contato-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 12px 0 16px;
}
.contato-call p { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 28px; }
.mk-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 3px;
  transition: transform var(--tr), filter var(--tr);
}
.mk-btn-whatsapp:hover { transform: translateY(-2px); filter: brightness(1.1); }
.contato-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
}
.ci-block {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background var(--tr);
}
.ci-block:last-child { border-bottom: none; }
.ci-block:hover { background: rgba(255,255,255,.04); }
.ci-label {
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.ci-val {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
  transition: color var(--tr);
}
a.ci-val:hover { color: var(--yellow); }

/* =====================================================
   FOOTER
===================================================== */
.mk-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.mk-footer-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--magenta) 0%, var(--yellow) 33%, var(--lime) 66%, var(--cyan) 100%);
}
.mk-footer-inner {
  padding-top: 40px;
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.mf-brand { display: flex; flex-direction: column; gap: 10px; }
.mf-logo { height: 64px; width: auto; object-fit: contain; filter: brightness(1.2); }
.mf-brand-text { display: flex; flex-direction: column; gap: 2px; }
.mf-brand-text span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
}
.mf-brand-text span:first-child { color: var(--yellow); font-weight: 600; }
.mf-center { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mf-date {
  font-family: var(--font-cond);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  text-align: center;
}
.mf-social { display: flex; gap: 10px; }
.mf-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--tr);
}
.mf-social a:hover { background: var(--magenta); border-color: var(--magenta); color: var(--white); }
.mf-disclaimer {
  text-align: right;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  line-height: 1.8;
}

/* =====================================================
   ÁUDIO WIDGET
===================================================== */
.audio-widget {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 1000;
  width: 270px;
  background: var(--ink2);
  border: 1px solid rgba(255,215,0,.25);
  border-top: 2px solid var(--yellow);
  padding: 14px;
  transform: translateX(110%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.audio-widget.visible { transform: translateX(0); }
.audio-widget.hidden  { transform: translateX(110%); }
.aw-label {
  font-family: var(--font-cond);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.aw-body { display: flex; align-items: center; gap: 10px; }
.aw-play {
  width: 40px; height: 40px;
  background: var(--yellow);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
  transition: background var(--tr);
}
.aw-play:hover { background: var(--magenta); color: var(--white); }
.aw-play svg { width: 18px; height: 18px; }
.aw-info { flex: 1; min-width: 0; }
.aw-track { font-size: .78rem; font-weight: 600; color: var(--white); display: block; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.aw-prog-wrap { display: flex; align-items: center; gap: 6px; }
.aw-prog { flex: 1; height: 3px; background: rgba(255,255,255,.12); cursor: pointer; border-radius: 2px; overflow: hidden; }
.aw-fill { height: 100%; width: 0%; background: var(--yellow); transition: width .25s linear; border-radius: 2px; }
.aw-time { font-size: .68rem; color: rgba(255,255,255,.4); flex-shrink: 0; }
.aw-close { color: rgba(255,255,255,.35); font-size: .9rem; flex-shrink: 0; align-self: flex-start; transition: color var(--tr); }
.aw-close:hover { color: var(--white); }

/* =====================================================
   ANIMAÇÕES
===================================================== */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.mk-cover .cover-body > * { opacity: 0; }
body.intro-ended .mk-cover .cover-body > * { animation: fadeUp .7s ease both; }
body.intro-ended .cover-eyebrow     { animation-delay: .1s; }
body.intro-ended .cover-title       { animation-delay: .2s; }
body.intro-ended .cover-rule        { animation-delay: .35s; }
body.intro-ended .cover-tagline     { animation-delay: .45s; }
body.intro-ended .cover-highlight   { animation-delay: .55s; }
body.intro-ended .cover-sub         { animation-delay: .65s; }
body.intro-ended .cover-pills       { animation-delay: .75s; }
body.intro-ended .cover-ctas        { animation-delay: .85s; }

/* =====================================================
   VINHETA DE INTRODUÇÃO (INTRO OVERLAY)
===================================================== */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}
.intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}
.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-skip-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 100000;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 8px 18px;
  font-family: var(--font-cond);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}
.intro-skip-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: scale(1.05);
}

/* Desktop Premium Styles for Numbers Slideshow */
@media (min-width: 861px) {
  .num-slide:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45) !important;
  }
  .ns-header {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    padding: 26px 32px !important;
  }
  .ns-stats {
    grid-template-columns: 1.15fr 0.85fr !important;
    flex: 1;
  }
  .ns-stat {
    padding: 36px 32px !important;
  }
  .ns-stat.big {
    padding: 56px 40px !important;
  }
  .ns-val {
    font-size: clamp(2.4rem, 4vw, 3.4rem) !important;
  }
  .ns-stat.big .ns-val {
    font-size: clamp(3.2rem, 5vw, 5.2rem) !important;
  }
  .ns-lbl {
    font-size: 0.82rem !important;
  }
  .num-controls {
    display: flex !important;
    justify-content: center;
    position: relative;
    margin-top: 32px;
  }
  .nc-btn {
    border-radius: 50% !important; /* Circular buttons for deck feel */
  }
  .nc-slide-label {
    position: absolute;
    right: 10px;
  }
}

/* ---- VIDEO BACKGROUND FOR SECTIONS ---- */
.mk-section.has-video-bg {
  position: relative;
  overflow: hidden;
}
.section-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.16; /* Subtle visibility to keep contrast clean */
  z-index: 0;
  pointer-events: none;
}
.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* Ensure contents are in front of background video */
.mk-section.has-video-bg .mk-section-banner,
.mk-section.has-video-bg .mk-container {
  position: relative;
  z-index: 2;
}

/* =====================================================
   RESPONSIVO
===================================================== */
@media (max-width: 1100px) {
  :root { --sidebar-w: 180px; }
  .sidebar-year { font-size: 3.5rem; }
  .snav-item { font-size: .72rem; }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lineup-card.headliner { grid-column: span 2; grid-row: span 1; }
  .lineup-card.headliner .lc-img { min-height: 280px; }
}

@media (max-width: 860px) {
  .sidebar { display: none; }
  .topbar { display: flex; }
  .cover-overlay {
    background: linear-gradient(
      180deg,
      rgba(12, 22, 107, 0.96) 0%,
      rgba(12, 22, 107, 0.85) 55%,
      rgba(12, 22, 107, 0.3) 100%
    ) !important;
  }
  .video-layout {
    grid-template-columns: 1fr;
  }
  .video-playlist {
    max-height: none;
  }
  .mk-main { margin-left: 0; padding-top: 80px; max-width: 100%; overflow-x: hidden; }
  .mk-section-banner { flex-wrap: wrap; gap: 8px; }
  .mk-sec-sub { margin-left: 0; text-align: left; }
  .sobre-layout { grid-template-columns: 1fr; gap: 32px; }
  .num-slide {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }
  .ns-stats { grid-template-columns: 1fr; }
  .ns-stat.big { grid-column: 1; grid-row: auto; }
  .impacto-grid { grid-template-columns: 1fr; }
  .mapa-layout { grid-template-columns: 1fr; }
  .mapa-legend { display: flex; flex-wrap: wrap; gap: 10px; }
  .legend-item { width: calc(50% - 5px); }
  .mapa-embed iframe { height: 320px; }
  .publico-layout { grid-template-columns: 1fr; }
  .pf-secondary img { height: 120px; }
  .hino-player-wrap {
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }
  .hino-info {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .contato-layout { grid-template-columns: 1fr; gap: 36px; }
  .mk-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .mf-brand { align-items: center; text-align: center; }
  .mf-disclaimer { text-align: center; }
  .cover-side-stripe { display: none; }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lineup-card.headliner { grid-column: span 2; }

  /* Mobile Cotas Section Styling */
  .ratecard-wrap {
    display: none;
  }
  .ratecard-mobile {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
    width: 100%;
  }
  .rc-mob-card {
    position: relative;
    border-radius: 16px;
    padding: 24px 20px;
    background: rgba(17, 32, 161, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .rc-mob-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--card-accent, var(--magenta));
  }
  .rc-mob-card.diamante {
    --card-accent: var(--magenta);
    background: linear-gradient(180deg, rgba(219, 13, 115, 0.15) 0%, rgba(17, 32, 161, 0.4) 100%);
    border-color: rgba(219, 13, 115, 0.35);
    box-shadow: 0 15px 35px rgba(219, 13, 115, 0.25);
  }
  .rc-mob-card.ouro {
    --card-accent: var(--yellow);
    background: linear-gradient(180deg, rgba(255, 192, 55, 0.12) 0%, rgba(17, 32, 161, 0.4) 100%);
    border-color: rgba(255, 192, 55, 0.3);
    box-shadow: 0 15px 35px rgba(255, 192, 55, 0.15);
  }
  .rc-mob-card.prata {
    --card-accent: var(--cyan);
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.08) 0%, rgba(17, 32, 161, 0.4) 100%);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.08);
  }
  .rc-mob-card.bronze {
    --card-accent: var(--orange);
    background: linear-gradient(180deg, rgba(250, 152, 73, 0.08) 0%, rgba(17, 32, 161, 0.4) 100%);
    border-color: rgba(250, 152, 73, 0.2);
    box-shadow: 0 15px 35px rgba(250, 152, 73, 0.08);
  }
  .rc-mob-badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 16px;
    font-family: var(--font-cond);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--white);
    background: var(--magenta);
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(219, 13, 115, 0.4);
    z-index: 2;
  }
  .rc-mob-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
  }
  .rc-mob-gem {
    font-size: 2.2rem;
    margin-bottom: 4px;
  }
  .rc-mob-tier {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 6vw, 2rem);
    letter-spacing: 0.06em;
    color: var(--card-accent);
    font-weight: 900;
    line-height: 1;
  }
  .rc-mob-qty {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
  }
  .rc-mob-price {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    color: var(--white);
    margin-top: 10px;
    letter-spacing: -0.01em;
    font-weight: 900;
    line-height: 1.1;
  }
  .rc-mob-card.diamante .rc-mob-price {
    color: var(--white);
    text-shadow: 0 0 15px rgba(219, 13, 115, 0.3);
  }
  .rc-mob-card.ouro .rc-mob-price {
    color: var(--yellow);
  }
  .rc-mob-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0;
    list-style: none;
  }
  .rc-mob-benefits li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
  }
  .check-yes {
    color: var(--card-accent);
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
  }
  .rc-mob-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    margin-top: auto;
  }
  .rc-mob-cta:active {
    transform: scale(0.98);
  }
  .rc-mob-cta:hover {
    filter: brightness(1.1);
  }
  .rc-mob-cta.diamante {
    background: var(--magenta);
    color: var(--white);
  }
  .rc-mob-cta.ouro {
    background: var(--yellow);
    color: var(--ink);
  }
  .rc-mob-cta.prata {
    background: var(--cyan);
    color: var(--ink);
  }
  .rc-mob-cta.bronze {
    background: var(--orange);
    color: var(--white);
  }

  /* Sub-media query for extra-small mobile viewports */
  @media (max-width: 480px) {
    .ratecard-mobile {
      gap: 18px;
    }
    .rc-mob-card {
      padding: 20px 16px;
      border-radius: 12px;
    }
    .rc-mob-badge {
      margin-bottom: 8px;
    }
    .rc-mob-header {
      margin-bottom: 14px;
      padding-bottom: 12px;
      gap: 4px;
    }
    .rc-mob-gem {
      font-size: 1.8rem;
    }
    .rc-mob-benefits {
      gap: 10px;
      margin-bottom: 18px;
    }
    .rc-mob-benefits li {
      font-size: 0.85rem;
    }
    .rc-mob-cta {
      padding: 12px 16px;
      font-size: 0.95rem;
    }
  }
}

@media (max-width: 600px) {
  .rc-head, .rc-row, .rc-foot { grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; }
  .cover-title { }
  .ct-year { font-size: clamp(4rem, 20vw, 8rem); }
  .sobre-cards { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: 1fr; gap: 12px; }
  .lineup-card.headliner { grid-column: span 1; }
  .lineup-card .lc-img { aspect-ratio: 4/3; }
  .ns-stat-group { flex-direction: row; }
  .audio-widget { right: 8px; bottom: 8px; width: calc(100% - 16px); }
}
