/* Arthur Senna — tema Forró, Vaquejada & Sertão · Energetic Night */

:root {
  /* Noite de palco */
  --noite: #050505;
  --noite-media: #0c0a09;
  --carvao: #12100e;

  /* Couro & terra (tradição / vaquejada) */
  --couro: #2a1a0c;
  --couro-medio: #4a3020;
  --terra: #8b4513;
  --terra-clara: #a0522d;
  --bronze: #b87333;
  --amber: #d4880a;
  --amber-claro: #f0b429;

  /* Ouro do sertão */
  --sol: #e8a317;
  --sol-claro: #f5c842;
  --palha: #f4e8d0;

  /* Neon — palco & energia */
  --neon-blue: #00d4ff;
  --neon-blue-dim: #0ea5e9;
  --neon-green: #39ff14;
  --neon-green-dim: #22c55e;

  /* Forró — fogo */
  --fogueira: #d35400;
  --fogueira-clara: #e86a1a;
  --vermelho-festa: #8b2500;

  /* Vaquejada — pasto */
  --pasto: #3d5c2e;
  --pasto-claro: #4a6741;
  --poeira: #e8d4b8;
  --corda: #c9a06a;

  /* Base clara (páginas internas / admin) */
  --creme: #faf3e8;
  --branco-palha: #fffdf8;

  /* Aliases */
  --orange: var(--fogueira);
  --gold: var(--sol);
  --red: var(--vermelho-festa);
  --dark: var(--couro);
  --cream: var(--creme);
  --sand: var(--poeira);

  /* Tipografia — Bebas Neue (display) · Montserrat (corpo) */
  --font-display: "Bebas Neue", "Barlow", sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-accent: "Cinzel Decorative", Georgia, serif;
  --font-display-weight: 400;
  --radius: .85rem;
  --shadow: 0 8px 32px rgb(0 0 0 / 28%);
  --border-leather: 1px solid rgb(201 160 106 / 28%);
  --texture-dust: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 18px,
    rgb(255 255 255 / 1.5%) 18px,
    rgb(255 255 255 / 1.5%) 19px
  );
  --texture-wood: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgb(255 255 255 / 2.5%) 3px,
    rgb(255 255 255 / 2.5%) 4px
  );
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth !important;
  scroll-padding-top: 80px !important;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--creme);
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 28px,
      rgb(184 149 107 / 4%) 28px,
      rgb(184 149 107 / 4%) 29px
    ),
    linear-gradient(180deg, var(--creme) 0%, var(--palha) 100%);
  color: var(--couro);
  overflow-x: hidden;
}

body.home-page {
  background-color: var(--noite) !important;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgb(0 212 255 / 5%), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgb(57 255 20 / 4%), transparent 55%),
    var(--texture-dust),
    var(--texture-wood) !important;
  color: #fff;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(72rem, 100% - 2rem); margin-inline: auto; }

.container--narrow { max-width: 40rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pasto);
  padding-left: .65rem;
  border-left: 3px solid var(--fogueira);
}

.section-label--accent,
.section-label--gold,
.hero-label-glow {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.1rem);
  font-weight: var(--font-display-weight);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: .5rem 0 0;
  color: var(--couro);
  line-height: 1.12;
}

/* Títulos com presença de palco — Barlow Black (substituto web de Integral CF) */
:where(
  .brand-name,
  .hero-release-title,
  .news-card-title,
  .artist-strip-name,
  .artist-panel-title,
  .agenda-card h3,
  .site-video-meta h3,
  .sponsor-name,
  .music-player-title,
  .footer-title,
  .news-article-lead
) {
  font-weight: var(--font-display-weight);
  letter-spacing: .03em;
}

.card {
  background: var(--branco-palha);
  border-radius: var(--radius);
  border: var(--border-leather);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .85rem 1.35rem;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(180deg, #ffe566 0%, var(--sol-claro) 40%, var(--amber) 100%);
  color: #0a0806;
  box-shadow:
    0 4px 22px rgb(245 200 66 / 48%),
    inset 0 1px 0 rgb(255 255 255 / 40%);
  border: 2px solid rgb(255 220 100 / 50%);
  transition:
    transform .22s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-blue) 100%);
  color: #050505;
  box-shadow:
    0 6px 28px rgb(57 255 20 / 45%),
    0 0 40px rgb(0 212 255 / 32%);
  filter: none;
}

.btn-secondary {
  background: rgb(255 255 255 / 6%);
  border: 2px solid var(--corda);
  color: var(--palha);
}

.btn-secondary:hover {
  border-color: var(--neon-blue);
  color: #fff;
  box-shadow: 0 0 20px rgb(0 212 255 / 28%);
  background: rgb(0 212 255 / 10%);
}

.btn-gold {
  background: linear-gradient(180deg, #ffe566 0%, var(--sol-claro) 35%, var(--sol) 100%);
  color: #0a0806;
  box-shadow:
    0 4px 22px rgb(245 200 66 / 50%),
    0 0 0 1px rgb(255 230 120 / 35%),
    inset 0 1px 0 rgb(255 255 255 / 45%);
  border: 2px solid rgb(255 220 100 / 55%);
  text-shadow: none;
  transition:
    transform .22s ease,
    box-shadow .35s ease,
    background .35s ease,
    border-color .35s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-blue) 100%);
  color: #050505;
  box-shadow:
    0 6px 28px rgb(57 255 20 / 45%),
    0 0 40px rgb(0 212 255 / 35%),
    0 0 64px rgb(57 255 20 / 18%);
  border-color: rgb(57 255 20 / 70%);
  filter: none;
}

.btn-instagram {
  background: linear-gradient(90deg, #ec4899, #9333ea);
  color: #fff;
  width: 100%;
}

.text-center { text-align: center; }
.text-muted { color: rgb(61 41 20 / 65%); }
.text-muted-sm { color: rgb(61 41 20 / 60%); font-size: .9rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }

.link-more {
  color: var(--fogueira);
  font-weight: 700;
  border-bottom: 1px dashed var(--corda);
}

/* Header — noite de palco */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgb(8 6 5 / 98%) 0%, rgb(12 10 8 / 96%) 100%);
  border-bottom: 2px solid var(--sol);
  box-shadow:
    0 4px 24px rgb(0 0 0 / 45%),
    0 1px 0 rgb(0 212 255 / 12%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  position: relative;
}

.brand-sub {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sol-claro);
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--palha);
}

.brand-logo {
  display: block;
  height: 3.75rem;
  width: auto;
  max-width: min(400px, 88vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgb(0 0 0 / 50%));
}

.brand--logo-fx {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: .35rem;
}

.brand-logo--animated {
  animation: brandLogoBreathe 5s ease-in-out infinite;
  will-change: transform, filter;
}

.brand--logo-fx::after {
  content: "";
  position: absolute;
  inset: -10% -30%;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgb(255 255 255 / 28%) 50%,
    transparent 58%
  );
  animation: brandLogoShine 7s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

@keyframes brandLogoBreathe {
  0%, 100% {
    filter: drop-shadow(0 2px 12px rgb(0 0 0 / 55%)) drop-shadow(0 0 16px rgb(245 200 66 / 18%));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 4px 18px rgb(0 0 0 / 45%)) drop-shadow(0 0 34px rgb(245 200 66 / 52%)) drop-shadow(0 0 52px rgb(232 93 4 / 22%));
    transform: scale(1.018);
  }
}

@keyframes brandLogoShine {
  0%, 78%, 100% { transform: translateX(-120%) skewX(-12deg); opacity: 0; }
  82% { opacity: 1; }
  92% { transform: translateX(120%) skewX(-12deg); opacity: 0; }
}

@media (min-width: 768px) {
  .brand-logo { height: 4.75rem; max-width: 560px; }
}

@media (min-width: 1024px) {
  .brand-logo { height: 5.25rem; max-width: 620px; }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--corda);
  border-radius: .75rem;
  background: rgb(255 255 255 / 8%);
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  background: var(--palha);
}

.site-nav {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + .5rem);
  width: min(18rem, calc(100vw - 2rem));
  background: var(--branco-palha);
  border: var(--border-leather);
  border-radius: var(--radius);
  padding: .5rem;
  box-shadow: var(--shadow);
}

.site-nav.open { display: flex; flex-direction: column; }

.site-nav a {
  padding: .85rem 1rem;
  border-radius: .65rem;
  font-weight: 600;
  color: var(--couro);
}

.site-nav a:hover { background: var(--poeira); color: var(--fogueira); }

.nav-admin {
  color: var(--sol) !important;
  background: rgb(61 41 20 / 8%);
}

.brand {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 3.5rem);
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    width: auto;
    border: 0;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    background: transparent;
    max-height: none;
    overflow: visible;
  }
  .site-nav a {
    padding: 0;
    border-radius: 0;
    color: var(--palha);
    font-size: .9rem;
  }
  .site-nav a:hover {
    background: transparent;
    color: var(--neon-blue);
    text-shadow: 0 0 16px rgb(0 212 255 / 45%);
  }
  .nav-admin {
    border: 2px solid var(--corda) !important;
    padding: .4rem .85rem !important;
    border-radius: 999px;
    background: transparent !important;
  }
}

/* Hero — palco noturno */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 45% at 85% 8%, rgb(0 212 255 / 10%), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 92%, rgb(57 255 20 / 6%), transparent 50%),
    radial-gradient(ellipse 70% 55% at 72% 12%, rgb(232 163 23 / 14%), transparent 52%),
    linear-gradient(165deg, #030303 0%, var(--noite) 40%, #0f0c0a 75%, #050403 100%);
  overflow: hidden;
}

.hero--dark,
.hero.theme-nordeste,
.hero.theme-forro,
.hero.theme-sao-joao,
.hero.theme-vaquejada,
.hero.theme-sertao {
  background:
    radial-gradient(ellipse 55% 45% at 85% 8%, rgb(0 212 255 / 10%), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 92%, rgb(57 255 20 / 6%), transparent 50%),
    radial-gradient(ellipse 70% 55% at 72% 12%, rgb(232 163 23 / 14%), transparent 52%),
    linear-gradient(165deg, #030303 0%, var(--noite) 40%, #0f0c0a 75%, #050403 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    var(--texture-wood),
    var(--texture-dust);
  opacity: .55;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
}

.hero-badge {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 25%);
  background: rgb(255 255 255 / 10%);
  color: var(--sol-claro);
}

.hero-badge--pasto {
  background: rgb(61 92 46 / 45%);
  border-color: rgb(74 103 65 / 60%);
  color: #d4e8c8;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4.25rem);
  font-weight: var(--font-display-weight);
  letter-spacing: .08em;
  line-height: .95;
  margin: .5rem 0 0;
  text-shadow:
    0 2px 12px rgb(0 0 0 / 50%),
    0 0 40px rgb(232 163 23 / 18%);
}

.hero-subtitle {
  color: var(--sol-claro);
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  margin: .5rem 0 0;
  font-weight: 600;
}

.hero-desc {
  color: rgb(255 255 255 / 88%);
  line-height: 1.65;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

.spotify-card {
  padding: 1.25rem;
  border: 2px solid var(--corda);
  background: rgb(61 41 20 / 55%);
  border-radius: 1.25rem;
  backdrop-filter: blur(6px);
}

.spotify-card iframe { border: 0; width: 100%; border-radius: .85rem; }

/* Ouça em — streaming (estilo Wesley Safadão) */
.listen-on {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.75rem;
  padding: 1.35rem 1.5rem 1.1rem;
  border: 2px solid rgb(255 255 255 / 85%);
  border-radius: 999px;
  background: rgb(31 20 10 / 35%);
  backdrop-filter: blur(8px);
}

.listen-on-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 .85rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--noite);
  white-space: nowrap;
}

.listen-on-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
}

.listen-on-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid rgb(255 255 255 / 90%);
  border-radius: 50%;
  color: #fff;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.listen-on-link svg {
  width: 1.35rem;
  height: 1.35rem;
}

/* Ícones compactos Spotify / Sua Música (landing músicas, etc.) */
.stream-icons-compact {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex: 0 0 auto;
}

.stream-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  border: 1px solid rgb(0 0 0 / 12%);
  background: #fff;
  color: #111;
  overflow: hidden;
  text-decoration: none;
}

.stream-icon svg {
  display: block;
  width: .95rem !important;
  height: .95rem !important;
  max-width: .95rem;
  max-height: .95rem;
}

.stream-icon--suamusica {
  width: auto;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0 .45rem;
  border-radius: 999px;
}

.stream-icon-brand {
  display: block;
  height: .72rem;
  width: auto;
  max-width: 2.5rem;
  object-fit: contain;
}

.listen-on-brand {
  display: block;
  width: auto;
  height: .95rem;
  max-width: 2.4rem;
  object-fit: contain;
}

.listen-on-link--suamusica {
  background: #fff;
  border-color: rgb(255 255 255 / 95%);
  padding: .35rem .45rem;
  width: auto;
  min-width: 3rem;
  border-radius: 999px;
}

.listen-on-link--suamusica .listen-on-brand {
  height: 1.05rem;
  max-width: 2.75rem;
}

.listen-on-sm {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}

.listen-on-link:hover,
.listen-on-link:focus-visible {
  transform: scale(1.08);
  background: rgb(255 255 255 / 12%);
  border-color: var(--sol-claro);
}

.listen-on-link--spotify:hover,
.listen-on-link--spotify:focus-visible {
  color: #1ed760;
}

.listen-on-link--suamusica:hover,
.listen-on-link--suamusica:focus-visible {
  color: inherit;
  background: #fff;
  transform: scale(1.08);
  border-color: var(--sol-claro);
}

.listen-on--hero {
  max-width: 100%;
}

.listen-on--page {
  display: flex;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; padding: 5rem 0; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
}

/* Hero — cards laterais (foto + Spotify) tamanho padrão */
.hero-grid--artist {
  --hero-card-width: min(100%, 21rem);
  --hero-card-height: calc(min(100%, 21rem) * 5 / 4);
  align-items: start;
  gap: 1.5rem;
}

.hero-panel-card {
  width: var(--hero-card-width);
  max-width: 21rem;
  margin-inline: auto;
}

.hero-release.hero-panel-card {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  min-height: 0;
}

.hero-portrait-stack {
  width: var(--hero-card-width);
  max-width: 21rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.hero-portrait-action {
  width: 100%;
  flex-shrink: 0;
}

.hero-recado-cta {
  position: relative;
  width: 100%;
  padding: .35rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgb(245 200 66 / 45%), rgb(212 160 23 / 18%), rgb(245 200 66 / 35%));
  box-shadow:
    0 0 0 1px rgb(245 200 66 / 35%),
    0 12px 36px rgb(0 0 0 / 38%);
  animation: heroRecadoGlow 2.8s ease-in-out infinite;
}

.hero-recado-cta-hint {
  margin: 0 0 .45rem;
  padding: 0 .35rem;
  text-align: center;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sol-claro);
  text-shadow: 0 0 16px rgb(245 200 66 / 35%);
}

.hero-recado-cta .visitor-message-open--hero {
  width: 100%;
  margin: 0;
  min-height: 3.35rem;
  padding: .7rem .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  border: 2px solid rgb(255 255 255 / 55%);
  border-radius: .95rem;
  text-align: left;
  white-space: normal;
  box-shadow:
    0 8px 24px rgb(232 163 23 / 42%),
    inset 0 1px 0 rgb(255 255 255 / 45%);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-recado-cta .visitor-message-open--hero:hover,
.hero-recado-cta .visitor-message-open--hero:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 14px 32px rgb(232 163 23 / 52%),
    inset 0 1px 0 rgb(255 255 255 / 55%);
}

.hero-recado-cta-icon {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgb(31 20 10 / 18%);
  border: 1px solid rgb(255 255 255 / 35%);
  animation: heroRecadoIconBounce 2.8s ease-in-out infinite;
}

.hero-recado-cta-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  line-height: 1.2;
}

.hero-recado-cta-text strong {
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-recado-cta-text small {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  opacity: .82;
}

.hero-visit-counter {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 1.1rem 0 0;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgb(212 160 23 / 32%);
  background: rgb(255 255 255 / 6%);
  color: rgb(255 255 255 / 82%);
  font-size: .72rem;
  line-height: 1.2;
}

.hero-visit-counter-icon {
  font-size: .95rem;
  line-height: 1;
}

.hero-visit-counter-text {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}

.hero-visit-counter-text strong {
  font-size: .92rem;
  color: var(--sol-claro);
  font-weight: 800;
  letter-spacing: .02em;
}

.hero-visit-counter-text span {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .75;
}

@keyframes heroRecadoGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgb(245 200 66 / 30%),
      0 12px 36px rgb(0 0 0 / 38%),
      0 0 24px rgb(245 200 66 / 12%);
  }
  50% {
    box-shadow:
      0 0 0 1px rgb(245 200 66 / 55%),
      0 14px 40px rgb(0 0 0 / 42%),
      0 0 36px rgb(245 200 66 / 28%);
  }
}

@keyframes heroRecadoIconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-recado-cta,
  .hero-recado-cta-icon {
    animation: none;
  }
}

.hero-portrait-action .visitor-message-open {
  width: 100%;
  margin: 0;
  min-height: 2.85rem;
  line-height: 1.25;
  padding: .65rem .85rem;
  white-space: normal;
  text-align: center;
}

.hero-release-cover {
  position: relative;
  width: 100%;
  border-radius: 1.35rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 3px solid rgb(212 160 23 / 50%);
  box-shadow:
    0 28px 72px rgb(0 0 0 / 50%),
    0 0 48px rgb(232 93 4 / 22%);
}

.hero-aside {
  width: var(--hero-card-width);
  max-width: 21rem;
  margin-inline: auto;
}

.hero-aside .spotify-card {
  width: 100%;
  min-height: 0;
  padding: .85rem .85rem 1rem;
  border: 3px solid rgb(212 160 23 / 50%);
  border-radius: 1.35rem;
  background: linear-gradient(160deg, rgb(14 12 10 / 96%), rgb(8 8 8 / 98%));
  overflow: hidden;
  box-shadow:
    0 28px 72px rgb(0 0 0 / 50%),
    0 0 48px rgb(232 93 4 / 15%);
  box-sizing: border-box;
}

.hero-aside .spotify-card .section-label {
  margin-bottom: .65rem;
}

.spotify-card-title {
  margin: .35rem 0 .85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: var(--font-display-weight);
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.spotify-embed-wrap {
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
  min-height: 0;
  border-radius: .85rem;
  overflow: hidden;
  background: #121212;
  display: flex;
}

.spotify-embed-wrap .spotify-embed {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 352px;
  min-height: 352px;
  border: 0;
  border-radius: .85rem;
  flex: 1 1 auto;
}

.hero-release-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgb(232 163 23 / 22%), transparent 42%),
    radial-gradient(circle at 78% 82%, rgb(211 84 0 / 12%), transparent 48%),
    linear-gradient(160deg, #0c0906 0%, #1a120c 45%, #0f0b08 100%);
}

.hero-release-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgb(255 255 255 / 18%) 0%, transparent 42%, rgb(255 255 255 / 6%) 100%);
  pointer-events: none;
}

.hero-release-text {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem 1rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgb(15 10 6 / 88%) 35%);
  z-index: 3;
  text-align: center;
  pointer-events: none;
}

.hero-release-label,
.hero-release-title,
.hero-release-sub {
  overflow: visible;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-release--cutout .hero-release-text {
  inset: 0 0 auto;
  padding: 1rem 0.85rem 2.75rem;
  background: linear-gradient(180deg, rgb(8 6 4 / 96%) 0%, rgb(15 10 6 / 78%) 42%, transparent 100%);
}

.hero-release--cutout .hero-release-title {
  font-size: clamp(0.95rem, 4.2vw, 1.3rem);
  line-height: 1.25;
}

.hero-release--cutout .hero-release-sub {
  font-size: clamp(0.62rem, 2.8vw, 0.72rem);
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.hero-release-label {
  margin: 0;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 72%);
}

.hero-release-title {
  margin: .35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--sol-claro);
  text-shadow: 0 2px 12px rgb(0 0 0 / 45%);
}

.hero-release-sub {
  margin: .35rem 0 0;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 78%);
}

.hero-release-artist {
  position: absolute;
  inset: auto 50% 0;
  transform: translateX(-50%);
  width: 115%;
  max-width: 24rem;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-release-artist img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 26rem;
  object-fit: contain;
  object-position: bottom center;
}

.hero-release-artist--cutout img {
  filter: drop-shadow(0 18px 32px rgb(0 0 0 / 55%));
}

.hero-release:not(.hero-release--cutout) .hero-release-artist img {
  border-radius: 1rem 1rem 0 0;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3 / 4;
  max-height: none;
  box-shadow: 0 -8px 32px rgb(0 0 0 / 35%);
}

.hero-release .hero-portrait-badge {
  bottom: -.65rem;
  z-index: 4;
  max-width: calc(100% - 1.5rem);
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.hero-aside { width: 100%; }

@media (min-width: 900px) {
  .hero-grid--artist {
    --hero-card-width: 21rem;
    --hero-card-height: calc(21rem * 5 / 4);
    grid-template-columns: minmax(0, 1fr) 21rem 21rem;
    gap: 1.75rem;
    padding: 4.5rem 0;
    align-items: start;
  }

  .hero-panel-card,
  .hero-aside {
    width: 100%;
    max-width: 21rem;
    margin-inline: 0;
  }

  .hero-portrait-stack {
    width: 100%;
    max-width: 21rem;
    margin-inline: 0;
  }

  .hero-release-cover {
    height: var(--hero-card-height);
    aspect-ratio: auto;
  }

  .hero-aside {
    align-self: start;
    display: flex;
    height: auto;
    min-height: var(--hero-card-height);
  }

  .hero-aside .spotify-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: calc(var(--hero-card-height) + 5rem);
  }

  .spotify-embed-wrap {
    flex: 1 1 auto;
    min-height: 22rem;
  }

  .spotify-embed-wrap .spotify-embed {
    height: 100% !important;
    min-height: 22rem;
  }
}

@media (max-width: 899px) {
  .hero-grid--artist {
    display: flex;
    flex-direction: column;
    overflow-x: clip;
  }

  .hero-panel-card,
  .hero-aside {
    width: 100%;
    max-width: 100%;
  }

  .hero-portrait-stack {
    order: 2;
    width: 100%;
    max-width: 100%;
  }

  .hero-aside { order: 3; }

  .hero-aside .spotify-card {
    min-height: 0;
  }

  .spotify-embed-wrap {
    min-height: 0;
  }

  .hero-messages-wrap {
    order: 4;
  }

  .hero-recado-cta {
    max-width: 24rem;
    margin-inline: auto;
  }

  .hero-visit-counter {
    margin-inline: auto;
  }
}

.hero-messages-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-inline: .5rem;
}

.hero-messages-wrap > .visitor-messages {
  flex: 0 0 auto;
}

@media (min-width: 900px) {
  .hero-messages-wrap {
    grid-column: 2 / -1;
    margin-top: .35rem;
    justify-content: center;
  }
}

.visitor-messages {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  padding: .5rem 1rem .55rem;
  border: 1px solid rgb(212 160 23 / 42%);
  border-radius: 999px;
  background: linear-gradient(160deg, rgb(14 12 10 / 94%), rgb(8 8 8 / 97%));
  box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
}

.visitor-messages-ticker {
  position: relative;
  width: 100%;
  min-height: 1.65rem;
  overflow: hidden;
}

.visitor-message-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .45s ease, transform .45s ease, visibility .45s;
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.visitor-message-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.visitor-messages:not(.is-marquee) .visitor-message-slide.is-active {
  position: relative;
  inset: auto;
  overflow: visible;
}

.visitor-message-line {
  margin: 0;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: .5rem .6rem;
  line-height: 1.5;
  font-size: .95rem;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.visitor-messages:not(.is-marquee) .visitor-message-line {
  justify-content: center;
}

.visitor-messages-tag {
  flex: 0 0 auto;
  font-family: var(--font-accent);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sol-claro);
  white-space: nowrap;
  padding-right: .6rem;
  border-right: 1px solid rgb(212 160 23 / 35%);
}

.visitor-message-quote {
  font-style: italic;
  color: rgb(255 255 255 / 88%);
}

.visitor-message-author {
  font-size: .88rem;
  font-weight: 700;
  color: var(--sol-claro);
  font-style: normal;
  white-space: nowrap;
}

/* Mural de recados — indicadores */
.fan-wall-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
}

.fan-wall-dot {
  width: .45rem;
  height: .45rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(0 0 0 / 18%);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.fan-wall-dot:hover {
  background: rgb(232 163 23 / 55%);
}

.fan-wall-dot.is-active {
  background: var(--sol);
  transform: scale(1.2);
}

.fan-wall-counter {
  margin: 1rem 0 0;
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgb(61 41 20 / 55%);
}

.visitor-messages.is-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.visitor-messages.is-marquee .visitor-message-line {
  display: block;
  overflow: hidden;
  text-align: left;
}

.visitor-message-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: visitorMsgMarquee var(--marquee-duration, 18s) linear infinite;
}

.visitor-messages.is-marquee:hover .visitor-message-marquee-track {
  animation-play-state: paused;
}

.visitor-message-marquee-chunk {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem .6rem;
  padding-right: 2.75rem;
  white-space: nowrap;
}

@keyframes visitorMsgMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .hero-messages-wrap {
    padding-inline: .75rem;
  }

  .visitor-messages {
    width: 100% !important;
    max-width: 100%;
    margin-inline: auto;
    border-radius: .85rem;
    padding: .5rem .75rem .55rem;
  }

  .visitor-messages-ticker {
    width: 100% !important;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .visitor-message-slide {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    inset: auto;
    white-space: normal;
  }

  .visitor-message-slide.is-active {
    position: relative;
    width: auto;
    height: auto;
    overflow: visible;
    inset: auto;
  }

  .visitor-messages.is-marquee .visitor-message-slide.is-active {
    position: absolute;
    width: 100%;
    height: auto;
    inset: 0;
    overflow: hidden;
  }

  .visitor-message-line {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    gap: .2rem;
    white-space: normal;
    font-size: .84rem;
    line-height: 1.4;
  }

  .visitor-messages.is-marquee .visitor-message-line {
    flex-direction: row;
    align-items: baseline;
    white-space: nowrap;
    text-align: left;
  }

  .visitor-messages-tag {
    width: auto;
    border-right: 0;
    padding-right: 0;
    padding-bottom: 0;
    font-size: .58rem;
    letter-spacing: .12em;
    text-align: center;
  }

  .visitor-messages.is-marquee .visitor-messages-tag {
    border-right: 1px solid rgb(212 160 23 / 35%);
    padding-right: .55rem;
  }

  .visitor-message-quote {
    text-align: center;
  }

  .visitor-message-author {
    font-size: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visitor-message-marquee-track {
    animation: none;
  }

  .visitor-messages.is-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.visitor-messages-flash {
  margin: 0 0 .85rem;
  padding: .65rem .85rem;
  border-radius: .65rem;
  font-size: .88rem;
  line-height: 1.45;
}

.visitor-messages-flash--success {
  background: rgb(45 106 45 / 25%);
  border: 1px solid rgb(120 200 120 / 35%);
  color: rgb(200 255 200 / 92%);
}

.visitor-messages-flash--error {
  background: rgb(120 30 30 / 25%);
  border: 1px solid rgb(220 100 100 / 35%);
  color: rgb(255 210 210 / 92%);
}

.visitor-message-form label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 55%);
  margin-bottom: .35rem;
}

.visitor-message-form input,
.visitor-message-form textarea {
  width: 100%;
  border: 1px solid rgb(212 160 23 / 28%);
  border-radius: .65rem;
  background: rgb(255 255 255 / 6%);
  color: #fff;
  padding: .65rem .75rem;
  font: inherit;
}

.visitor-message-form input::placeholder,
.visitor-message-form textarea::placeholder {
  color: rgb(255 255 255 / 38%);
}

.visitor-message-open {
  width: 100%;
}

.visitor-message-modal {
  position: fixed;
  inset: 0;
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.visitor-message-modal[hidden] {
  display: none;
}

.visitor-message-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 72%);
  backdrop-filter: blur(4px);
}

.visitor-message-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  max-height: min(88vh, 36rem);
  overflow: auto;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: 1.15rem;
  border: 2px solid rgb(212 160 23 / 45%);
  background: linear-gradient(165deg, rgb(22 18 14 / 98%), rgb(10 8 6 / 98%));
  box-shadow: 0 28px 64px rgb(0 0 0 / 55%);
}

.visitor-message-modal-title {
  margin: .35rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.visitor-message-modal-close {
  position: absolute;
  top: .65rem;
  right: .65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 8%);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.visitor-message-modal .visitor-message-form {
  display: grid;
  gap: .85rem;
}

.visitor-message-modal-actions {
  display: flex;
  gap: .65rem;
  margin-top: .15rem;
  padding-top: .85rem;
  border-top: 1px solid rgb(212 160 23 / 22%);
}

.visitor-message-submit {
  flex: 1 1 auto;
  min-height: 2.85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.visitor-message-cancel {
  flex: 0 0 auto;
  min-height: 2.85rem;
  padding-inline: 1rem;
  color: var(--palha);
  border-color: rgb(212 160 23 / 35%);
}

body.visitor-message-modal-open .bg-music-player,
body.visitor-message-modal-open .contact-float,
body.visitor-message-modal-open .whatsapp-float,
body.visitor-message-modal-open .cookie-consent {
  z-index: 40;
}

body:has(.bg-music-player) .visitor-message-modal {
  padding-bottom: max(5.25rem, env(safe-area-inset-bottom));
}

@media (max-width: 520px) {
  .visitor-message-modal-actions {
    flex-direction: column-reverse;
  }

  .visitor-message-cancel,
  .visitor-message-submit {
    width: 100%;
  }
}

.visitor-message-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Barra de patrocinadores */
.sponsors-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  margin-top: 1.25rem;
}

@media (min-width: 520px) {
  .sponsors-bar:not(.sponsors-bar--hero) {
    flex-direction: row;
    align-items: center;
    gap: 1rem 1.5rem;
  }
}

.sponsors-bar-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sol-claro);
  line-height: 1.35;
  flex-shrink: 0;
}

.sponsors-bar-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}

.sponsors-bar-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1.15rem;
  min-height: 4.25rem;
  min-width: 7rem;
  border-radius: .65rem;
  background: rgb(255 255 255 / 98%);
  border: 1px solid rgb(212 160 23 / 50%);
  box-shadow: 0 4px 18px rgb(0 0 0 / 28%);
}

.sponsors-bar-logo {
  height: 3.25rem;
  width: auto;
  max-width: 10.5rem;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform .2s ease;
}

.sponsors-bar-logo-wrap:hover .sponsors-bar-logo {
  transform: scale(1.05);
}

.sponsors-bar--hero {
  padding-top: .35rem;
  flex-direction: column;
  align-items: flex-start;
  gap: .85rem;
  width: 100%;
  max-width: 28rem;
}

.sponsors-bar--hero .sponsors-bar-label {
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--sol-claro);
}

.sponsors-bar--hero .sponsors-bar-logos {
  width: 100%;
  gap: 1rem;
}

.sponsors-bar--hero .sponsors-bar-logo-wrap {
  min-height: 5rem;
  min-width: 9rem;
  padding: .85rem 1.5rem;
  flex: 1 1 auto;
}

.sponsors-bar--hero .sponsors-bar-logo {
  height: 4.25rem;
  max-width: 13rem;
}

.sponsors-bar--footer {
  justify-content: center;
  align-items: center;
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

@media (min-width: 520px) {
  .sponsors-bar--footer {
    flex-direction: row;
  }
}

.sponsors-bar--footer .sponsors-bar-label {
  color: var(--sol-claro);
}

.sponsors-bar--footer .sponsors-bar-logo-wrap {
  background: rgb(255 255 255 / 98%);
  border-color: rgb(212 160 23 / 50%);
}

.sponsors-bar--footer .sponsors-bar-logo {
  height: 3rem;
  filter: none;
  opacity: 1;
}

/* Notícias */
.news-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.news-card {
  overflow: hidden;
  padding: 0;
  border-left: 4px solid var(--fogueira);
}

.news-card-image {
  display: block;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .3s ease;
}

.news-card-image:hover img {
  transform: scale(1.03);
}

.news-card-body {
  padding: 1.25rem 1.35rem 1.35rem;
}

.news-card-date {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--pasto);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.news-card-title {
  margin: .45rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
}

.news-card-title a {
  color: var(--couro);
  text-decoration: none;
}

.news-card-title a:hover {
  color: var(--fogueira);
}

.news-card-excerpt {
  margin: .65rem 0 0;
  color: rgb(61 41 20 / 72%);
  line-height: 1.6;
  font-size: .95rem;
}

.news-article-image {
  margin: 1.5rem 0 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid var(--corda);
}

.news-article-image img {
  display: block;
  width: 100%;
  height: auto;
}

.news-article-lead {
  margin: 1.25rem 0 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgb(61 41 20 / 82%);
  font-weight: 600;
}

.news-article-body {
  margin-top: 1.25rem;
  line-height: 1.75;
  color: rgb(61 41 20 / 78%);
}

.news-article-body p + p {
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid--page { grid-template-columns: repeat(3, 1fr); }
}

/* Retrato na bio (legado hero-portrait removido do fluxo principal) */
.hero-portrait {
  position: relative;
  z-index: 1;
  margin: 0;
  justify-self: center;
  max-width: min(100%, 22rem);
}

.hero-portrait-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 3px solid rgb(212 160 23 / 55%);
  box-shadow:
    0 24px 64px rgb(0 0 0 / 45%),
    0 0 40px rgb(232 93 4 / 25%);
  background: var(--noite);
}

.hero-portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(31 20 10 / 75%) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.hero-portrait-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sol-claro);
  background: rgb(31 20 10 / 75%);
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 1px solid rgb(212 160 23 / 45%);
}

/* Retrato na bio */
.bio-portrait {
  margin: 0 0 1.75rem;
  max-width: 22rem;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 3px solid var(--sol);
  box-shadow: 0 16px 48px rgb(61 41 20 / 18%);
}

.bio-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.bio-portrait--cutout {
  border: none;
  box-shadow: none;
  background: transparent;
  max-width: 18rem;
}

.bio-portrait--cutout img {
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgb(61 41 20 / 25%));
}

.bio-portrait-caption {
  margin: 0;
  padding: .75rem 1rem;
  text-align: center;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--couro);
  background: linear-gradient(90deg, var(--palha), var(--creme));
}

@media (min-width: 960px) {
  .section-bio .container:has(.bio-portrait) {
    display: grid;
    grid-template-columns: min(16rem, 28%) 1fr;
    gap: 2rem;
    align-items: start;
  }

  .section-bio .container:has(.bio-portrait) .bio-header { grid-column: 1 / -1; }

  .section-bio .container:has(.bio-portrait) .bio-portrait {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin: 0;
    max-width: none;
  }

  .section-bio .container:has(.bio-portrait) .bio-layout {
    grid-column: 2;
    grid-template-columns: min(14rem, 38%) 1fr;
  }
}

/* Mobile — photo on top, centered text below (no side-by-side squeeze) */
@media (max-width: 768px) {
  .section-bio .container,
  .section-bio .container:has(.bio-portrait) {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
  }

  .section-bio .bio-header {
    order: 0 !important;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 1.25rem !important;
  }

  .section-bio .bio-header .section-label,
  .section-bio .section-label {
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-left: none !important;
    text-align: center !important;
  }

  .section-bio .bio-header .section-title,
  .section-bio .section-title,
  .section-bio .bio-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-bio .bio-portrait,
  .section-bio .container:has(.bio-portrait) .bio-portrait {
    order: 1 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: min(20rem, 85vw) !important;
    margin: 0 auto !important;
  }

  .section-bio .bio-layout,
  .section-bio .container:has(.bio-portrait) .bio-layout {
    order: 2 !important;
    grid-column: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 25px !important;
    gap: 1.25rem !important;
    text-align: center !important;
  }

  .section-bio .bio-facts,
  .section-bio .bio-content,
  .section-bio .bio-content.card {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-bio .bio-facts-label,
  .section-bio .bio-facts-list,
  .section-bio .bio-facts-list li,
  .section-bio .bio-facts-list strong,
  .section-bio .bio-facts-list span,
  .section-bio .bio-content p,
  .section-bio .bio-closing {
    text-align: center !important;
  }

  .section-bio .bio-facts {
    border-left: none !important;
    border-top: 4px solid var(--sol, #e8a317) !important;
  }

  .section-bio .bio-facts-list {
    justify-items: center !important;
  }

  .section-bio .bio-facts-list li {
    align-items: center !important;
    width: 100% !important;
  }

  .section-bio .bio-facts-sponsor-grid {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-bio .bio-closing::before,
  .section-bio .section-title--fx::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 768px) {
  .section-bio-intro .container {
    text-align: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .section-bio-intro .section-label {
    display: inline-block !important;
    border-left: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-bio-intro .section-title,
  .section-bio-intro .bio-subtitle {
    text-align: center !important;
  }
}

/* Faixas visuais — uma foto por vez */
.artist-strip {
  position: relative;
  min-height: clamp(16rem, 42vw, 28rem);
  overflow: hidden;
}

.artist-strip-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

.artist-strip.is-visible .artist-strip-bg,
.reveal.is-visible.artist-strip .artist-strip-bg {
  transform: scale(1.12);
}

.artist-strip.theme-forro .artist-strip-bg { background-image: var(--bg-forro); }
.artist-strip.theme-sao-joao .artist-strip-bg { background-image: var(--bg-sao-joao); }
.artist-strip.theme-vaquejada .artist-strip-bg { background-image: var(--bg-vaquejada); }
.artist-strip.theme-nordeste .artist-strip-bg { background-image: var(--bg-nordeste); }
.artist-strip.theme-sertao .artist-strip-bg { background-image: var(--bg-sertao); }

.artist-strip-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.artist-strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.artist-strip.is-visible .artist-strip-photo img,
.reveal.is-visible.artist-strip .artist-strip-photo img {
  transform: scale(1.08);
}

.artist-strip-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(31 20 10 / 85%) 0%, rgb(31 20 10 / 25%) 45%, transparent 70%),
    linear-gradient(0deg, rgb(31 20 10 / 50%), transparent 40%);
}

.artist-strip--reverse .artist-strip-overlay {
  background:
    linear-gradient(270deg, rgb(31 20 10 / 85%) 0%, rgb(31 20 10 / 25%) 45%, transparent 70%),
    linear-gradient(0deg, rgb(31 20 10 / 50%), transparent 40%);
}

.artist-strip-label {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 5vw, 3rem);
  max-width: 36rem;
}

.artist-strip-label .section-label {
  color: var(--sol-claro);
  border-left-color: var(--sol);
}

.artist-strip-name {
  margin: .35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 20px rgb(0 0 0 / 50%);
}

/* Página Momentos — painéis grandes */
.artist-panel {
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  background: var(--creme);
}

.artist-panel--dark {
  background: linear-gradient(180deg, var(--couro) 0%, var(--noite) 100%);
}

.artist-panel-inner {
  width: min(72rem, 100% - 2rem);
  margin-inline: auto;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.artist-panel-photo {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 3px solid rgb(212 160 23 / 45%);
  box-shadow: 0 20px 56px rgb(61 41 20 / 20%);
}

.artist-panel--dark .artist-panel-photo {
  border-color: rgb(212 160 23 / 35%);
  box-shadow: 0 20px 56px rgb(0 0 0 / 40%);
}

.artist-panel-photo img {
  display: block;
  width: 100%;
  max-height: min(85vh, 52rem);
  object-fit: cover;
  object-position: top center;
}

.artist-panel-intro {
  padding: .5rem 0;
}

.artist-panel-title {
  margin: .25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--couro);
}

.artist-panel--dark .artist-panel-title { color: var(--palha); }

.artist-panel-sub {
  margin: .35rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fogueira);
}

.artist-panel--dark .artist-panel-sub { color: var(--sol-claro); }

.artist-panel-tagline {
  margin: .75rem 0 0;
  font-size: 1rem;
  color: rgb(61 41 20 / 70%);
}

.artist-panel--dark .artist-panel-tagline { color: rgb(255 255 255 / 65%); }

@media (min-width: 768px) {
  .artist-panel-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .artist-panel:nth-child(even) .artist-panel-photo { order: 2; }
  .artist-panel:nth-child(even) .artist-panel-intro { order: 1; }
}

.page-section--compact { padding-bottom: 1rem; }

/* ── Home — efeitos visuais ── */
@keyframes heroGradientShift {
  0%, 100% { filter: hue-rotate(0deg) brightness(1); }
  50% { filter: hue-rotate(8deg) brightness(1.06); }
}

@keyframes emberRise {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: .9; }
  90% { opacity: .4; }
  100% { transform: translateY(-120vh) translateX(30px) scale(.3); opacity: 0; }
}

@keyframes sparkTwinkle {
  0%, 100% { opacity: .15; transform: scale(.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes titleShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes btnShimmer {
  0% { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero--fx {
  animation: heroGradientShift 12s ease-in-out infinite;
}

.hero--fx::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgb(232 93 4 / 18%), transparent 55%);
  pointer-events: none;
}

.hero-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-ember {
  position: absolute;
  left: var(--x);
  bottom: calc(-1 * var(--size));
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle, var(--sol-claro), var(--fogueira));
  box-shadow: 0 0 8px rgb(232 93 4 / 80%);
  animation: emberRise var(--d) linear infinite;
  animation-delay: var(--delay);
  opacity: 0;
}

.hero-spark {
  position: absolute;
  font-size: .75rem;
  color: var(--sol-claro);
  text-shadow: 0 0 8px rgb(245 200 66 / 80%);
  animation: sparkTwinkle 3s ease-in-out infinite;
  opacity: .3;
}

.hero-spark:nth-child(23) { top: 15%; left: 8%; animation-delay: 0s; }
.hero-spark:nth-child(24) { top: 25%; left: 45%; animation-delay: .4s; font-size: .55rem; }
.hero-spark:nth-child(25) { top: 12%; right: 28%; animation-delay: .8s; }
.hero-spark:nth-child(26) { top: 40%; left: 15%; animation-delay: 1.2s; font-size: .9rem; }
.hero-spark:nth-child(27) { top: 55%; right: 10%; animation-delay: 1.6s; }
.hero-spark:nth-child(28) { bottom: 30%; left: 35%; animation-delay: 2s; font-size: .6rem; }
.hero-spark:nth-child(29) { bottom: 20%; right: 40%; animation-delay: 2.4s; }
.hero-spark:nth-child(30) { top: 70%; left: 5%; animation-delay: .6s; font-size: .65rem; }

.hero-content { position: relative; z-index: 1; }

.hero-animate {
  opacity: 0;
  animation: heroFadeUp .85s cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: calc(.12s + var(--i, 0) * .1s);
}

.hero-label-glow {
  color: var(--sol-claro) !important;
  border-left-color: var(--sol) !important;
  text-shadow: 0 0 20px rgb(245 200 66 / 35%);
}

.hero-title-glow {
  background: linear-gradient(
    120deg,
    #fff 0%,
    var(--sol-claro) 25%,
    #fff 50%,
    var(--sol-claro) 75%,
    #fff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleShine 6s linear infinite;
  filter: drop-shadow(0 2px 12px rgb(31 20 10 / 50%));
}

.hero-badge {
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge:nth-child(2) { animation-delay: .5s; }
.hero-badge:nth-child(3) { animation-delay: 1s; }

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 rgb(245 200 66 / 0); }
  50% { box-shadow: 0 0 16px rgb(245 200 66 / 35%); }
}

.hero-card-float.hero-animate {
  animation:
    heroFadeUp .85s cubic-bezier(.22, 1, .36, 1) calc(.12s + var(--i, 0) * .1s) forwards,
    cardFloat 6s ease-in-out 1.4s infinite;
  border-color: rgb(212 160 23 / 45%) !important;
  box-shadow:
    0 8px 32px rgb(0 0 0 / 35%),
    0 0 0 1px rgb(245 200 66 / 12%),
    inset 0 1px 0 rgb(255 255 255 / 8%);
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    110deg,
    var(--amber-claro) 0%,
    var(--sol) 35%,
    #fff 50%,
    var(--sol) 65%,
    var(--amber-claro) 100%
  );
  background-size: 220% 100%;
  animation: btnShimmer 4s linear infinite;
}

.btn-shimmer:hover {
  background: linear-gradient(135deg, var(--neon-green-dim), var(--neon-blue-dim));
  animation: none;
  box-shadow:
    0 8px 28px rgb(57 255 20 / 38%),
    0 0 40px rgb(0 212 255 / 25%);
}

.btn-glow-outline {
  transition: box-shadow .25s, transform .25s, background .25s;
}

.btn-glow-outline:hover {
  box-shadow:
    0 0 24px rgb(0 212 255 / 30%),
    0 0 40px rgb(57 255 20 / 15%);
  transform: translateY(-2px);
  background: rgb(0 212 255 / 8%);
  border-color: var(--neon-blue);
  color: #fff;
}

.section-title--fx {
  position: relative;
  display: inline-block;
}

.section-title--fx::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.35rem;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), var(--sol-claro), var(--neon-blue), var(--neon-green-dim));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 0 12px rgb(0 212 255 / 35%);
}

.reveal.is-visible .section-title--fx::after,
.hero-animate .section-title--fx::after {
  transform: scaleX(1);
}

.link-more--fx {
  transition: letter-spacing .25s, color .25s;
}

.link-more--fx:hover {
  letter-spacing: .04em;
  color: var(--neon-blue);
  text-shadow: 0 0 14px rgb(0 212 255 / 40%);
  border-bottom-color: var(--neon-green-dim);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > *,
.reveal-stagger .agenda-card,
.reveal-stagger .site-video-card,
.reveal-stagger .photo-gallery-item,
.reveal-stagger .social-card,
.reveal-stagger .video-card,
.reveal-stagger .card.empty-card,
.reveal-stagger .music-player,
.reveal-stagger .sponsor-card,
.reveal-stagger .instagram-embed {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible .reveal-stagger > *,
.reveal.is-visible .reveal-stagger .agenda-card,
.reveal.is-visible .reveal-stagger .site-video-card,
.reveal.is-visible .reveal-stagger .photo-gallery-item,
.reveal.is-visible .reveal-stagger .social-card,
.reveal.is-visible .reveal-stagger .video-card,
.reveal.is-visible .reveal-stagger .card.empty-card,
.reveal.is-visible .reveal-stagger .music-player,
.reveal.is-visible .reveal-stagger .sponsor-card,
.reveal.is-visible .reveal-stagger .instagram-embed {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .reveal-stagger .agenda-card:nth-child(1),
.reveal.is-visible .reveal-stagger .site-video-card:nth-child(1),
.reveal.is-visible .reveal-stagger .photo-gallery-item:nth-child(1) { transition-delay: .05s; }

.reveal.is-visible .reveal-stagger .agenda-card:nth-child(2),
.reveal.is-visible .reveal-stagger .site-video-card:nth-child(2),
.reveal.is-visible .reveal-stagger .photo-gallery-item:nth-child(2) { transition-delay: .12s; }

.reveal.is-visible .reveal-stagger .agenda-card:nth-child(3),
.reveal.is-visible .reveal-stagger .site-video-card:nth-child(3),
.reveal.is-visible .reveal-stagger .photo-gallery-item:nth-child(3) { transition-delay: .19s; }

.reveal.is-visible .reveal-stagger .agenda-card:nth-child(4),
.reveal.is-visible .reveal-stagger .photo-gallery-item:nth-child(4) { transition-delay: .26s; }

.reveal.is-visible .reveal-stagger .agenda-card:nth-child(5),
.reveal.is-visible .reveal-stagger .photo-gallery-item:nth-child(5) { transition-delay: .33s; }

.reveal.is-visible .reveal-stagger .photo-gallery-item:nth-child(6) { transition-delay: .4s; }

.reveal.is-visible .reveal-stagger > *:nth-child(1) { transition-delay: .05s; }
.reveal.is-visible .reveal-stagger > *:nth-child(2) { transition-delay: .12s; }
.reveal.is-visible .reveal-stagger > *:nth-child(3) { transition-delay: .19s; }
.reveal.is-visible .reveal-stagger > *:nth-child(4) { transition-delay: .26s; }
.reveal.is-visible .reveal-stagger > *:nth-child(5) { transition-delay: .33s; }
.reveal.is-visible .reveal-stagger > *:nth-child(6) { transition-delay: .4s; }

.home-page .agenda-card,
.home-page .site-video-card,
.home-page .card.empty-card {
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s;
}

/* Home — tema escuro · Energetic Night */
.home-page {
  background: var(--noite);
  color: #fff;
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgb(0 212 255 / 4%), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgb(57 255 20 / 3%), transparent 55%),
    var(--texture-dust),
    var(--texture-wood);
  opacity: .7;
}

.home-page .site-header,
.home-page main,
.home-page .site-footer {
  position: relative;
  z-index: 1;
}

.home-page .section,
.home-page .section-bio,
.home-page .section-campo,
.home-page .featured-video-section,
.home-page .page-section,
.home-page [class*="theme-"] {
  background: transparent !important;
  background-image: none !important;
  color: rgb(255 255 255 / 92%);
  position: relative;
}

.home-page .section::before,
.home-page .section-bio::before,
.home-page .section-campo::before,
.home-page .featured-video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgb(232 163 23 / 3%), transparent 55%),
    var(--texture-dust);
  opacity: .45;
  pointer-events: none;
}

.home-page main {
  background: transparent;
}

.home-page .section-alt {
  background: rgb(255 255 255 / 2%) !important;
  background-image: none !important;
}

.home-page .section-label {
  color: var(--amber-claro);
  border-left-color: var(--sol);
}

.home-page .section-title,
.home-page .section-title--fx,
.home-page .bio-header .section-title {
  color: #fff;
  text-shadow: 0 2px 24px rgb(0 0 0 / 45%);
}

.home-page .text-muted,
.home-page .bio-content p {
  color: rgb(255 255 255 / 72%);
}

.home-page .bio-subtitle {
  color: var(--amber-claro);
}

.home-page .section-bio {
  border-top: 2px solid rgb(212 160 23 / 35%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.home-page .card:not(.bio-facts--premium) {
  background: linear-gradient(160deg, rgb(16 14 12 / 98%), rgb(8 8 8 / 98%));
  border: 1px solid rgb(212 160 23 / 28%);
  color: rgb(244 232 208 / 88%);
  box-shadow: 0 12px 36px rgb(0 0 0 / 38%);
}

.home-page .bio-content {
  border-top-color: var(--sol);
}

.home-page .bio-closing {
  color: rgb(255 255 255 / 85%) !important;
  border-top-color: rgb(212 160 23 / 35%);
}

.home-page .bio-closing strong {
  background: linear-gradient(135deg, var(--sol-claro), var(--sol));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-page .link-more,
.home-page .link-more--fx {
  color: var(--amber-claro);
  border-bottom-color: rgb(212 160 23 / 45%);
}

.home-page .link-more--fx:hover {
  color: var(--neon-blue);
}

.home-page .empty-card {
  color: rgb(255 255 255 / 65%);
}

.home-page .instagram-header p {
  color: rgb(255 255 255 / 72%);
}

.home-page .instagram-caption {
  color: rgb(244 232 208 / 90%);
  border-top-color: rgb(212 160 23 / 22%);
}

.home-page .instagram-embed {
  overflow: hidden;
}

.home-page .agenda-date {
  color: var(--amber-claro);
}

.home-page .agenda-card h3,
.home-page .site-video-meta h3,
.home-page .news-card-title {
  color: #fff;
}

.home-page #novidades.section-alt {
  background: linear-gradient(180deg, #14110f 0%, #0c0a09 100%) !important;
  border-top: 1px solid rgb(212 160 23 / 18%);
  border-bottom: 1px solid rgb(255 255 255 / 6%);
}

.home-page .card.news-card {
  background: linear-gradient(165deg, rgb(32 27 22 / 96%), rgb(18 15 12 / 98%));
  border: 1px solid rgb(212 160 23 / 32%);
  border-left: 4px solid var(--sol);
  box-shadow:
    0 18px 44px rgb(0 0 0 / 42%),
    inset 0 1px 0 rgb(255 255 255 / 4%);
}

.home-page .card.news-card:hover {
  border-color: rgb(212 160 23 / 48%);
  box-shadow:
    0 22px 48px rgb(0 0 0 / 48%),
    0 0 0 1px rgb(245 200 66 / 8%);
  transform: translateY(-4px);
}

.home-page .news-card-image {
  border-bottom: 1px solid rgb(212 160 23 / 20%);
}

.home-page .news-card-date {
  color: var(--sol-claro);
}

.home-page .news-card-title a {
  color: #fff;
}

.home-page .news-card-title a:hover {
  color: var(--sol-claro);
}

.home-page .news-card-excerpt {
  color: rgb(255 255 255 / 70%);
}

.home-page .agenda-venue,
.home-page .agenda-desc,
.home-page .site-video-meta p {
  color: rgb(255 255 255 / 62%);
}

.home-page .music-player-label,
.home-page .music-player-artist {
  color: rgb(255 255 255 / 55%);
}

.home-page .music-player-title {
  color: #fff;
}

.home-page .hero-release-cover {
  border-color: rgb(212 160 23 / 55%);
}

.home-page .bio-portrait--cutout img {
  filter: drop-shadow(0 14px 32px rgb(0 0 0 / 55%));
}

.home-page .agenda-card,
.home-page .site-video-card,
.home-page .card.empty-card {
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s, border-color .3s;
}

.home-page .agenda-card:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: 0 16px 40px rgb(61 41 20 / 14%), -4px 0 0 var(--fogueira);
}

.home-page .agenda-card--next {
  border-color: rgb(212 160 23 / 42%);
  box-shadow: 0 18px 44px rgb(0 0 0 / 38%), 0 0 0 1px rgb(212 160 23 / 12%);
}

.home-page .agenda-card--today {
  background: linear-gradient(145deg, rgb(232 93 4 / 22%), rgb(16 14 12 / 98%) 55%);
  border-color: rgb(245 200 66 / 50%);
  box-shadow:
    0 22px 52px rgb(232 93 4 / 22%),
    0 0 0 1px rgb(245 200 66 / 15%);
}

.home-page .agenda-card--today:hover {
  box-shadow:
    0 26px 56px rgb(232 93 4 / 28%),
    -4px 0 0 var(--sol-claro);
}

.home-page .agenda-card--today .agenda-date {
  color: #fff;
  text-shadow: 0 0 16px rgb(245 200 66 / 35%);
}

.home-page .site-video-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgb(61 41 20 / 16%);
}

.home-page .social-card {
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
  border: 2px solid rgb(255 255 255 / 12%);
}

.home-page .social-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--neon-blue);
  box-shadow:
    0 16px 40px rgb(0 0 0 / 35%),
    0 0 28px rgb(0 212 255 / 35%),
    0 0 48px rgb(57 255 20 / 15%);
}

.home-page .photo-gallery-item {
  transition: transform .35s, border-color .25s, box-shadow .35s;
}

.home-page .photo-gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--sol);
  box-shadow: 0 12px 32px rgb(232 93 4 / 20%);
  z-index: 1;
}

.home-page .photo-gallery-item:hover img {
  transform: scale(1.08);
}

.home-page .sponsor-card {
  transition: transform .35s, box-shadow .35s;
}

.home-page .sponsor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgb(61 41 20 / 14%);
}

.home-page .video-card {
  transition: transform .3s, box-shadow .3s;
}

.home-page .video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgb(61 41 20 / 14%);
}

.home-page .music-player {
  border-left-color: var(--neon-blue);
  box-shadow:
    0 12px 40px rgb(0 0 0 / 35%),
    0 0 24px rgb(0 212 255 / 8%);
  transition: box-shadow .35s, border-color .35s;
}

.home-page .music-player:hover {
  border-left-color: var(--neon-green-dim);
  box-shadow:
    0 16px 48px rgb(0 0 0 / 42%),
    0 0 32px rgb(57 255 20 / 12%);
}

.home-page .music-playlist-item:hover,
.home-page .music-playlist-item.active {
  color: var(--neon-blue);
}

.home-page .music-playlist-item.active .music-playlist-num {
  color: var(--neon-green-dim);
}

/* Páginas internas — artigo de notícia, compatibilidade page-section */
.home-page .news-article-lead {
  color: rgb(255 255 255 / 82%);
}

.home-page .news-article-body,
.home-page .news-article-body p {
  color: rgb(255 255 255 / 74%);
}

.home-page .news-article-image {
  border-color: rgb(212 160 23 / 35%);
}

.home-page .page-section {
  background: #0a0908 !important;
  background-image: none !important;
  color: rgb(244 232 208 / 90%);
}

.home-page .page-section.theme-forro,
.home-page .page-section.theme-sao-joao,
.home-page .page-section.theme-vaquejada,
.home-page .page-section.theme-nordeste,
.home-page .page-section.theme-sertao {
  background-image: none !important;
}

.home-page .site-footer {
  margin-top: 0;
  background: linear-gradient(180deg, var(--carvao) 0%, var(--noite) 100%);
  border-top: 2px solid var(--sol);
  box-shadow: 0 -1px 0 rgb(0 212 255 / 15%);
}

@media (prefers-reduced-motion: reduce) {
  .hero--fx,
  .brand-logo--animated,
  .brand--logo-fx::after,
  .hero-ember,
  .hero-spark,
  .hero-animate,
  .hero-title-glow,
  .hero-badge,
  .hero-card-float,
  .btn-shimmer,
  .reveal,
  .reveal-stagger > *,
  .reveal-stagger .agenda-card,
  .agenda-badge--today {
    animation: none !important;
    transition: none !important;
  }
  .reveal-stagger .site-video-card,
  .reveal-stagger .photo-gallery-item {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Sections */
.section { padding: 3.75rem 0; }

.section-alt {
  background:
    linear-gradient(180deg, rgb(232 212 184 / 45%) 0%, rgb(244 232 208 / 70%) 100%);
  border-top: 1px solid rgb(184 149 107 / 25%);
  border-bottom: 1px solid rgb(184 149 107 / 25%);
}

.section-alt.theme-forro {
  background-image:
    linear-gradient(180deg, rgb(244 232 208 / 94%) 0%, rgb(232 212 184 / 90%) 100%),
    var(--bg-forro);
  background-size: cover;
  background-position: center;
}

.section-alt.theme-sao-joao {
  background-image:
    linear-gradient(180deg, rgb(255 248 235 / 93%) 0%, rgb(244 220 180 / 88%) 100%),
    var(--bg-sao-joao);
  background-size: cover;
  background-position: center;
}

.section-alt.theme-nordeste {
  background-image:
    linear-gradient(180deg, rgb(244 232 208 / 92%) 0%, rgb(232 200 160 / 86%) 100%),
    var(--bg-nordeste);
  background-size: cover;
  background-position: center;
}

.section-campo {
  background:
    linear-gradient(180deg, rgb(61 92 46 / 8%) 0%, rgb(244 232 208 / 50%) 100%);
}

.section-campo.theme-vaquejada {
  background-image:
    linear-gradient(180deg, rgb(232 240 220 / 92%) 0%, rgb(210 225 190 / 88%) 100%),
    var(--bg-vaquejada);
  background-size: cover;
  background-position: center top;
}

.section.theme-forro,
.section.theme-sao-joao,
.section.theme-vaquejada,
.section.theme-nordeste,
.section.theme-sertao {
  position: relative;
  background-size: cover;
  background-position: center;
}

.section.theme-forro {
  background-image:
    linear-gradient(180deg, rgb(250 243 232 / 95%) 0%, rgb(244 228 200 / 90%) 100%),
    var(--bg-forro);
}

.section.theme-sao-joao {
  background-image:
    linear-gradient(180deg, rgb(255 250 240 / 94%) 0%, rgb(245 230 200 / 88%) 100%),
    var(--bg-sao-joao);
}

.section.theme-vaquejada {
  background-image:
    linear-gradient(180deg, rgb(240 245 232 / 94%) 0%, rgb(225 235 210 / 88%) 100%),
    var(--bg-vaquejada);
}

.section.theme-nordeste {
  background-image:
    linear-gradient(180deg, rgb(250 243 232 / 94%) 0%, rgb(240 220 190 / 88%) 100%),
    var(--bg-nordeste);
}

.section.theme-sertao {
  background-image:
    linear-gradient(180deg, rgb(250 243 232 / 95%) 0%, rgb(235 210 175 / 88%) 100%),
    var(--bg-sertao);
}

/* Bio / Release oficial */
.section-bio {
  background:
    linear-gradient(180deg, var(--creme) 0%, var(--palha) 50%, var(--creme) 100%);
  border-top: 3px solid var(--sol);
  border-bottom: 1px solid rgb(184 149 107 / 20%);
}

.section-bio.theme-nordeste {
  background-image:
    linear-gradient(180deg, rgb(250 243 232 / 96%) 0%, rgb(244 232 208 / 92%) 50%, rgb(250 243 232 / 96%) 100%),
    var(--bg-nordeste);
  background-size: cover;
  background-position: center;
}

.bio-header { margin-bottom: 2rem; }

.bio-subtitle {
  margin: .5rem 0 0;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 700;
  color: var(--fogueira);
  letter-spacing: .02em;
}

.bio-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.bio-facts {
  padding: 1.35rem;
  border-left: 4px solid var(--sol);
  background: linear-gradient(145deg, var(--branco-palha), rgb(244 232 208 / 60%));
}

.bio-facts--premium {
  padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid rgb(212 160 23 / 35%);
  border-left: 4px solid var(--sol);
  background:
    linear-gradient(160deg, rgb(12 12 12 / 98%) 0%, rgb(22 18 14 / 98%) 55%, rgb(10 10 10 / 98%) 100%);
  box-shadow:
    0 20px 48px rgb(0 0 0 / 28%),
    inset 0 1px 0 rgb(212 160 23 / 12%);
  color: rgb(255 255 255 / 88%);
}

.bio-facts--premium .bio-facts-label {
  color: var(--sol-claro);
}

.bio-facts--premium .bio-facts-list li {
  border-bottom-color: rgb(212 160 23 / 18%);
}

.bio-facts--premium .bio-facts-list strong {
  color: #fff;
}

.bio-facts--premium .bio-facts-list span {
  color: rgb(255 255 255 / 62%);
}

.bio-facts-sponsors {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgb(212 160 23 / 28%);
}

.bio-facts-sponsors-label {
  margin: 0 0 .85rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sol);
}

.bio-facts-sponsor-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr 1fr;
}

.bio-facts-sponsor {
  margin: 0;
  padding: .75rem .65rem .7rem;
  text-align: center;
  border-radius: .75rem;
  background: rgb(255 255 255 / 96%);
  border: 1px solid rgb(212 160 23 / 30%);
}

.bio-facts-sponsor-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 4.5rem;
  margin: 0 auto;
  object-fit: contain;
}

.bio-facts-sponsor figcaption {
  margin-top: .55rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgb(61 41 20 / 72%);
}

.bio-facts-label {
  margin: 0 0 1rem;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pasto);
}

.bio-facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.bio-facts-list li {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgb(184 149 107 / 35%);
}

.bio-facts-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bio-facts-list strong {
  font-size: .92rem;
  color: var(--couro);
}

.bio-facts-list span {
  font-size: .85rem;
  color: rgb(61 41 20 / 65%);
  line-height: 1.45;
}

.bio-content {
  padding: clamp(1.35rem, 4vw, 2rem);
  border-top: 4px solid var(--fogueira);
}

.bio-content p {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgb(61 41 20 / 88%);
}

.bio-content p:last-of-type { margin-bottom: 0; }

.bio-closing {
  margin-top: 1.75rem !important;
  padding-top: 1.35rem;
  border-top: 2px solid rgb(212 160 23 / 35%);
  font-size: 1.08rem !important;
  line-height: 1.6 !important;
  color: var(--couro) !important;
  text-align: center;
}

.bio-closing strong {
  display: block;
  margin-bottom: .35rem;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--couro), var(--fogueira));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 960px) {
  .bio-layout { grid-template-columns: min(16rem, 32%) 1fr; }
}

.page-section { padding: 2.5rem 0 3rem; }

.page-section.theme-forro,
.page-section.theme-sao-joao,
.page-section.theme-vaquejada,
.page-section.theme-nordeste,
.page-section.theme-sertao {
  background-size: cover;
  background-position: center;
}

.page-section.theme-forro {
  background-image:
    linear-gradient(180deg, rgb(250 243 232 / 96%) 0%, rgb(244 228 200 / 92%) 100%),
    var(--bg-forro);
}

.page-section.theme-sao-joao {
  background-image:
    linear-gradient(180deg, rgb(255 250 240 / 95%) 0%, rgb(245 230 200 / 90%) 100%),
    var(--bg-sao-joao);
}

.page-section.theme-vaquejada {
  background-image:
    linear-gradient(180deg, rgb(240 245 232 / 95%) 0%, rgb(225 235 210 / 90%) 100%),
    var(--bg-vaquejada);
}

.page-section.theme-nordeste {
  background-image:
    linear-gradient(180deg, rgb(250 243 232 / 96%) 0%, rgb(240 220 190 / 90%) 100%),
    var(--bg-nordeste);
}

.page-section.theme-sertao {
  background-image:
    linear-gradient(180deg, rgb(250 243 232 / 96%) 0%, rgb(235 210 175 / 90%) 100%),
    var(--bg-sertao);
}

/* Agenda */
.agenda-list { display: grid; gap: 1rem; }

.agenda-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 4px solid var(--fogueira);
  position: relative;
}

.agenda-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .15rem;
}

.agenda-badge {
  display: inline-flex;
  align-items: center;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.agenda-badge--next {
  background: rgb(212 160 23 / 18%);
  border: 1px solid rgb(212 160 23 / 45%);
  color: var(--sol-claro);
}

.agenda-badge--today {
  background: linear-gradient(135deg, var(--fogueira), var(--sol));
  border: 1px solid rgb(255 255 255 / 25%);
  color: #fff;
  box-shadow: 0 0 24px rgb(232 93 4 / 45%);
  animation: agendaTodayPulse 1.6s ease-in-out infinite;
}

@keyframes agendaTodayPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgb(232 93 4 / 35%); }
  50% { transform: scale(1.04); box-shadow: 0 0 32px rgb(245 200 66 / 55%); }
}

.agenda-card--next {
  border-left-color: var(--sol);
  border-color: rgb(212 160 23 / 35%);
  box-shadow: 0 16px 40px rgb(232 93 4 / 12%);
}

.agenda-card--today {
  border-left-width: 5px;
  border-left-color: var(--sol-claro);
  border-color: rgb(245 200 66 / 45%);
  background: linear-gradient(135deg, rgb(232 93 4 / 12%), rgb(212 160 23 / 6%));
  box-shadow:
    0 20px 48px rgb(232 93 4 / 18%),
    inset 0 1px 0 rgb(255 255 255 / 8%);
}

.agenda-card--today.agenda-card--next {
  border-left-color: var(--sol-claro);
}

.agenda-date {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pasto);
}

.agenda-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: .25rem 0;
  color: var(--couro);
}

.agenda-venue, .agenda-desc { color: rgb(61 41 20 / 65%); margin: 0; }

.agenda-card .btn { width: 100%; }

@media (min-width: 640px) {
  .agenda-card { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  .agenda-card-badges { width: 100%; flex: 0 0 100%; }
  .agenda-card .btn { width: auto; }
}

/* Social */
.social-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }

.social-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
  border: 2px solid rgb(255 255 255 / 15%);
}

.social-card span { display: block; margin-top: .25rem; opacity: .88; font-size: .9rem; }

.social-card-logo {
  display: block;
  height: 1.65rem;
  width: auto;
  max-width: 6.5rem;
  object-fit: contain;
  background: #fff;
  padding: .3rem .45rem;
  border-radius: .35rem;
}

.social-suamusica .social-card-logo {
  margin-bottom: .15rem;
}

.social-instagram { background: linear-gradient(135deg, #ec4899, #9333ea); }
.social-youtube { background: linear-gradient(135deg, #dc2626, #991b1b); }
.social-spotify { background: linear-gradient(135deg, #1ed760, #169c46); }
.social-suamusica { background: linear-gradient(135deg, var(--fogueira), var(--terra)); }

@media (min-width: 640px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .social-grid { grid-template-columns: repeat(4, 1fr); } }

/* YouTube & videos */
.video-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }

.video-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--branco-palha);
  box-shadow: var(--shadow);
  border: var(--border-leather);
}

.video-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.video-card p { padding: 1rem; margin: 0; font-weight: 600; color: var(--couro); }

@media (min-width: 640px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.featured-video-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.featured-video-info {
  width: 100%;
  text-align: center;
}

.featured-video-desc {
  margin: .75rem 0 0;
  line-height: 1.65;
}

.featured-video-wrap {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: .65rem;
}

.featured-video-wrap .site-video-meta {
  padding: .85rem .35rem 0;
  text-align: center;
}

/* Player vertical (story / Reels) — padrão do site */
.video-player {
  width: 100%;
  max-width: min(100%, 17.5rem);
  margin-inline: auto;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 6%);
}

.video-player video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  max-height: min(72vh, 36rem);
  object-fit: contain;
  background: #000;
  vertical-align: top;
}

.video-player--landscape {
  max-width: min(100%, 36rem);
}

.video-player--landscape video {
  aspect-ratio: 16 / 9;
  max-height: none;
}

.site-video-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.site-video-card .video-player {
  max-width: 100%;
}

.site-video-card .video-player video {
  max-height: min(62vh, 28rem);
}

.site-video-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  align-items: start;
}

.site-video-meta { padding: .85rem; }
.site-video-meta h3 { font-family: var(--font-display); margin: 0; font-size: 1.05rem; color: var(--couro); }
.site-video-meta p { margin: .35rem 0 0; font-size: .88rem; line-height: 1.45; color: rgb(61 41 20 / 65%); }

@media (min-width: 640px) {
  .site-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(11.25rem, 1fr));
  }
}

@media (min-width: 768px) {
  .featured-video-layout {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }

  .featured-video-info {
    flex: 1;
    min-width: 0;
    max-width: 32rem;
    text-align: left;
  }

  .featured-video-wrap {
    flex: 0 0 auto;
    margin-inline: 0;
  }

  .featured-video-wrap .site-video-meta {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .site-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  }

  .video-player {
    max-width: min(100%, 18.5rem);
  }
}

/* Instagram */
.instagram-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.instagram-grid { display: grid; gap: 1rem; }
.instagram-embed iframe { width: 100%; min-height: 360px; border: 0; }
.instagram-caption {
  padding: .85rem 1rem 1rem;
  margin: 0;
  border-top: 1px solid var(--poeira);
  font-size: .9rem;
  line-height: 1.55;
  color: rgb(61 41 20 / 75%);
  white-space: pre-line;
  word-break: break-word;
}

@media (min-width: 768px) {
  .instagram-header { flex-direction: row; align-items: center; justify-content: space-between; }
  .btn-instagram { width: auto; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-embed iframe { min-height: 480px; }
}

/* Photo gallery */
.photo-gallery { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }

.photo-gallery-item {
  padding: 0;
  border: 3px solid var(--poeira);
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}

.photo-gallery-item:hover { border-color: var(--corda); }

.photo-gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .25s;
}

.photo-gallery-item:hover img { transform: scale(1.04); }

@media (min-width: 640px) { .photo-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .photo-gallery { grid-template-columns: repeat(4, 1fr); } }

.photo-admin-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.photo-admin-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.photo-admin-meta { padding: .75rem; }

@media (min-width: 768px) { .photo-admin-grid { grid-template-columns: repeat(3, 1fr); } }

/* Patrocinadores */
.sponsors-section {
  background:
    linear-gradient(135deg, rgb(61 41 20 / 6%) 0%, rgb(232 212 184 / 55%) 50%, rgb(61 92 46 / 8%) 100%);
  border-top: 3px solid var(--corda);
  border-bottom: 3px solid var(--corda);
}

.sponsors-section--premium {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgb(212 160 23 / 12%), transparent 55%),
    linear-gradient(160deg, #080808 0%, #111 45%, #0a0a0a 100%);
  border-top: 2px solid rgb(212 160 23 / 45%);
  border-bottom: 2px solid rgb(212 160 23 / 25%);
  color: #fff;
}

.section-label--gold {
  color: var(--sol);
  border-left-color: var(--sol);
}

.section-title--light {
  color: #fff;
}

.sponsors-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-top: 1.5rem; }

.sponsor-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: var(--branco-palha);
  border: 2px solid var(--corda);
}

.sponsor-card--premium {
  padding: 1.85rem 1.35rem 1.5rem;
  background: linear-gradient(160deg, rgb(18 18 18 / 98%), rgb(10 10 10 / 98%));
  border: 1px solid rgb(212 160 23 / 35%);
  border-radius: 1rem;
  box-shadow:
    0 16px 40px rgb(0 0 0 / 35%),
    inset 0 1px 0 rgb(212 160 23 / 10%);
  transition: transform .2s ease, border-color .2s ease;
}

.sponsor-card--premium:hover {
  transform: translateY(-3px);
  border-color: rgb(245 200 66 / 55%);
}

.sponsor-card-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  margin-bottom: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: .85rem;
  background: rgb(255 255 255 / 97%);
  border: 1px solid rgb(212 160 23 / 22%);
}

.sponsor-card img {
  max-height: 6.5rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  filter: none;
}

.sponsor-card--premium .sponsor-name {
  color: var(--sol-claro);
}

.sponsor-card--premium .sponsor-tagline {
  color: rgb(212 160 23 / 75%);
}

.sponsor-name {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--couro);
}

.sponsor-tagline {
  margin: .25rem 0 0;
  font-size: .75rem;
  color: var(--pasto);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

@media (min-width: 640px) { .sponsors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .sponsor-card img { max-height: 7.5rem; } }

/* Music player */
.music-player { padding: 1.25rem; overflow: hidden; border-left: 4px solid var(--amber); }

.music-album-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.music-album-tab {
  border: 1px solid rgb(212 160 23 / 35%);
  background: rgb(31 20 10 / 25%);
  color: rgb(61 41 20 / 85%);
  border-radius: 999px;
  padding: .45rem .85rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.music-album-tab:hover,
.music-album-tab:focus-visible {
  border-color: var(--fogueira);
  color: var(--fogueira);
}

.music-album-tab.is-active {
  background: linear-gradient(135deg, var(--fogueira), var(--terra));
  border-color: var(--fogueira);
  color: #fff;
}

.music-album-heading {
  margin: 0 0 .85rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--font-display-weight);
  color: var(--fogueira);
}

.home-page .music-album-tab {
  background: rgb(255 255 255 / 6%);
  border-color: rgb(212 160 23 / 40%);
  color: rgb(255 255 255 / 82%);
}

.home-page .music-album-tab.is-active {
  color: #fff;
}

.home-page .music-album-heading {
  color: var(--sol-claro);
}

.admin-subtitle {
  margin: 0 0 .85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: var(--font-display-weight);
  color: var(--fogueira);
}

.music-player-main { display: flex; gap: 1rem; align-items: flex-start; }

.music-player-art {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--fogueira), var(--terra));
  border: 2px solid var(--corda);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.music-player-label {
  margin: 0;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--pasto);
  font-weight: 800;
}

.music-player-title {
  margin: .2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--couro);
}

.music-player-artist { margin: .15rem 0 0; font-size: .85rem; color: rgb(61 41 20 / 60%); }

.music-progress-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
  font-size: .75rem;
  color: rgb(61 41 20 / 55%);
}

#page-music-progress { flex: 1; accent-color: var(--neon-green-dim); }

.home-page #page-music-progress,
.home-page .music-volume {
  accent-color: var(--neon-blue);
}

.music-buttons { display: flex; align-items: center; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }

.music-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 2px solid var(--corda);
  background: var(--creme);
  cursor: pointer;
  font-size: .95rem;
  color: var(--couro);
}

.music-btn-play {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--fogueira), var(--vermelho-festa));
  color: #fff;
  border-color: var(--fogueira);
  font-size: 1rem;
}

.music-volume { flex: 1; min-width: 5rem; max-width: 8rem; accent-color: var(--neon-green-dim); }

.music-playlist {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  border-top: 2px dashed var(--poeira);
  max-height: 14rem;
  overflow-y: auto;
}

.music-playlist-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .25rem;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: .9rem;
  color: var(--couro);
}

.music-playlist-item:hover,
.music-playlist-item.active { color: var(--amber); }

.music-playlist-num { width: 1.5rem; font-weight: 800; color: var(--corda); }
.music-playlist-item.active .music-playlist-num { color: var(--amber-claro); }

/* Footer — couro */
.site-footer {
  margin-top: 3rem;
  background: linear-gradient(180deg, var(--couro-medio) 0%, var(--noite) 100%);
  color: var(--poeira);
  border-top: 4px solid var(--sol);
}

.footer-grid { display: grid; gap: 2rem; padding: 2.5rem 0; }

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--palha);
}

.footer-sub { color: var(--sol-claro); margin: .25rem 0 0; font-weight: 600; }
.footer-tagline { margin: 1rem 0 0; font-size: .9rem; opacity: .85; }

.footer-label {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sol);
  margin: 0 0 .75rem;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: .5rem; }
.site-footer a:hover { color: var(--sol-claro); }

.footer-copy {
  border-top: 1px solid rgb(255 255 255 / 10%);
  text-align: center;
  padding: 1rem;
  font-size: .75rem;
  opacity: .65;
}

.footer-credit {
  margin: 0;
  padding: 0 1rem 1.1rem;
  text-align: center;
  font-size: .65rem;
  line-height: 1.45;
  color: rgb(255 255 255 / 28%);
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
}

.footer-credit a:hover {
  color: rgb(255 255 255 / 42%);
}

.footer-themes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: .5rem;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--corda);
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

/* Contato — shows */
.booking-contact {
  padding: 1.35rem 1.5rem;
  border-left: 4px solid #25d366;
  background: linear-gradient(145deg, var(--branco-palha), rgb(244 252 246 / 90%));
}

.booking-contact--compact {
  padding: 1.15rem 1.25rem;
}

.booking-contact-label {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pasto);
}

.booking-contact-desc {
  margin: .5rem 0 0;
  font-size: .92rem;
  line-height: 1.55;
  color: rgb(61 41 20 / 72%);
}

.booking-contact-phone {
  display: inline-block;
  margin-top: .75rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 700;
  color: var(--couro);
  text-decoration: none;
}

.booking-contact-phone:hover {
  color: var(--fogueira);
}

.booking-contact-email {
  display: block;
  margin-top: .35rem;
  font-size: .95rem;
  font-weight: 600;
  color: rgb(61 41 20 / 78%);
  text-decoration: none;
  word-break: break-all;
}

.booking-contact-email:hover {
  color: var(--fogueira);
}

.booking-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}

.booking-contact-call,
.booking-contact-mail {
  padding: .75rem 1.15rem;
  font-size: .78rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 14px rgb(37 211 102 / 30%);
}

.btn-whatsapp:hover {
  filter: brightness(1.06);
}

.hero .btn-whatsapp {
  border: 2px solid rgb(37 211 102 / 45%);
}

/* Contatos flutuantes — e-mail + WhatsApp */
.contact-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 220;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
}

.contact-float-btn,
.whatsapp-float {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.contact-float-btn svg,
.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
}

.contact-float-btn--whatsapp,
.whatsapp-float {
  background: #25d366;
  box-shadow: 0 4px 20px rgb(37 211 102 / 45%), 0 2px 8px rgb(0 0 0 / 25%);
}

.contact-float-btn--email {
  background: linear-gradient(145deg, #ff7402, #e85d04);
  box-shadow: 0 4px 20px rgb(255 116 2 / 42%), 0 2px 8px rgb(0 0 0 / 25%);
}

.contact-float-btn:hover,
.whatsapp-float:hover {
  transform: scale(1.08);
  filter: brightness(1.06);
}

.contact-float-btn--whatsapp:hover,
.whatsapp-float:hover {
  box-shadow: 0 6px 28px rgb(37 211 102 / 55%), 0 4px 12px rgb(0 0 0 / 30%);
}

.contact-float-btn--email:hover {
  box-shadow: 0 6px 28px rgb(255 116 2 / 55%), 0 4px 12px rgb(0 0 0 / 30%);
}

body:has(.bg-music-player) .contact-float {
  bottom: 5.25rem;
}

body.cookie-banner-open .contact-float {
  bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
}

body.cookie-banner-open:has(.bg-music-player) .contact-float {
  bottom: calc(10.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  .contact-float {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .contact-float-btn,
  .whatsapp-float {
    width: 3.75rem;
    height: 3.75rem;
  }

  body:has(.bg-music-player) .contact-float {
    bottom: 5.5rem;
  }
}

/* Mini player — palco neon */
.bg-music-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(90deg, #0a0806 0%, #12100e 50%, #0a0806 100%);
  color: #fff;
  border-top: 2px solid var(--sol);
  padding: .65rem 0;
  box-shadow:
    0 -4px 28px rgb(0 0 0 / 55%),
    0 -1px 0 rgb(0 212 255 / 25%),
    0 0 32px rgb(57 255 20 / 8%);
}

body:has(.bg-music-player) .site-footer { padding-bottom: 4.5rem; }

.bg-music-inner {
  width: min(72rem, 100% - 2rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.bg-music-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 2px solid rgb(57 255 20 / 45%);
  background: rgb(57 255 20 / 8%);
  color: var(--neon-green);
  cursor: pointer;
  flex-shrink: 0;
  transition: box-shadow .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
}

.bg-music-btn:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background: rgb(0 212 255 / 12%);
  box-shadow: 0 0 18px rgb(0 212 255 / 40%), 0 0 28px rgb(57 255 20 / 20%);
}

.bg-music-info { flex: 1; min-width: 0; overflow: hidden; }

.bg-music-label {
  margin: 0;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sol);
  font-weight: 800;
}

.bg-music-title-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: .1rem;
}

.bg-music-marquee {
  margin: 0;
}

.bg-music-marquee-inner {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
}

.bg-music-marquee-text {
  font-size: .9rem;
  font-weight: 600;
  color: var(--palha);
}

.bg-music-marquee-text + .bg-music-marquee-text {
  display: none;
}

.bg-music-title-wrap.is-scrolling {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.bg-music-title-wrap.is-scrolling .bg-music-marquee-inner {
  animation: bgMusicMarquee var(--marquee-duration, 14s) linear infinite;
}

.bg-music-title-wrap.is-scrolling .bg-music-marquee-text + .bg-music-marquee-text {
  display: inline;
  padding-left: 2.5rem;
}

@keyframes bgMusicMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 1.25rem)); }
}

@media (prefers-reduced-motion: reduce) {
  .bg-music-title-wrap.is-scrolling .bg-music-marquee-inner {
    animation: none;
  }

  .bg-music-title-wrap.is-scrolling {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .bg-music-title-wrap.is-scrolling .bg-music-marquee-text {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
  }

  .bg-music-title-wrap.is-scrolling .bg-music-marquee-text + .bg-music-marquee-text {
    display: none;
  }
}

.bg-music-title {
  margin: .1rem 0 0;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--palha);
}

#bg-music-volume { flex: 1; min-width: 4rem; max-width: 6rem; accent-color: var(--neon-green); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgb(31 20 10 / 94%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(90vw, 56rem);
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 3px solid var(--corda);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--corda);
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ═══════════════════════════════════════════
   ADMIN — Preto · Laranja · Branco · Dourado
   ═══════════════════════════════════════════ */

.admin-page {
  --adm-bg: #080808;
  --adm-surface: #121212;
  --adm-surface-2: #1a1a1a;
  --adm-surface-3: #222;
  --adm-border: rgb(255 255 255 / 8%);
  --adm-border-gold: rgb(212 160 23 / 35%);
  --adm-orange: #e85d04;
  --adm-orange-dark: #c2410c;
  --adm-gold: #d4a017;
  --adm-gold-light: #f5c842;
  --adm-white: #fafafa;
  --adm-muted: rgb(255 255 255 / 55%);
  --adm-font: "Montserrat", system-ui, -apple-system, sans-serif;

  margin: 0;
  min-height: 100vh;
  background: var(--adm-bg);
  color: var(--adm-white);
  font-family: var(--adm-font);
}

.admin-page .section-title,
.admin-page .admin-page-title {
  font-family: var(--adm-font);
  color: var(--adm-white);
}

.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgb(0 0 0 / 65%);
  backdrop-filter: blur(4px);
}

.admin-sidebar-backdrop[hidden] { display: none; }

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: min(17rem, 88vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0e0e0e 0%, #050505 100%);
  border-right: 1px solid var(--adm-border);
  transform: translateX(-105%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 8px 0 40px rgb(0 0 0 / 45%);
}

.admin-sidebar.is-open { transform: translateX(0); }

.admin-sidebar-brand {
  padding: 1.35rem 1rem 1.15rem;
  border-bottom: 1px solid var(--adm-border);
}

.admin-sidebar-brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.admin-sidebar-brand-link:hover .admin-brand-logo {
  filter: drop-shadow(0 4px 14px rgb(212 160 23 / 35%));
}

.admin-brand-logo {
  display: block;
  width: auto;
  height: 4rem;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgb(0 0 0 / 45%));
  transition: filter .2s ease;
}

.admin-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  background: linear-gradient(135deg, var(--adm-orange), var(--adm-gold));
  color: #000;
  font-size: .85rem;
  font-weight: 900;
  box-shadow: 0 4px 16px rgb(232 93 4 / 35%);
}

.admin-brand-title {
  margin: 0;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--adm-white);
}

.admin-brand-sub {
  margin: 0;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--adm-gold);
  font-weight: 700;
}

.admin-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  padding: .75rem 1rem;
  border-radius: .65rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--adm-muted);
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}

.admin-nav-link:hover {
  color: var(--adm-white);
  background: rgb(255 255 255 / 5%);
}

.admin-nav-link.is-active {
  color: var(--adm-white);
  background: linear-gradient(90deg, rgb(232 93 4 / 18%), rgb(212 160 23 / 8%));
  border-color: rgb(232 93 4 / 25%);
  box-shadow: inset 3px 0 0 var(--adm-orange);
}

.admin-sidebar-footer {
  padding: 1rem 1.25rem 1.35rem;
  border-top: 1px solid var(--adm-border);
}

.admin-sidebar-user {
  margin: 0 0 .75rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--adm-gold-light);
}

.admin-sidebar-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.admin-sidebar-btn {
  flex: 1;
  min-width: 5rem;
  text-align: center;
  padding: .55rem .75rem;
  border-radius: .55rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgb(255 255 255 / 6%);
  border: 1px solid var(--adm-border);
  color: var(--adm-white);
  transition: background .15s, border-color .15s;
}

.admin-sidebar-btn:hover {
  background: rgb(255 255 255 / 10%);
  border-color: var(--adm-border-gold);
  color: var(--adm-gold-light);
}

.admin-sidebar-btn--out {
  border-color: rgb(232 93 4 / 30%);
  color: var(--adm-orange);
}

.admin-sidebar-btn--out:hover {
  background: rgb(232 93 4 / 12%);
  color: #fff;
}

/* Main area */
.admin-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin-left: 0;
}

.admin-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.25rem;
  background: rgb(8 8 8 / 92%);
  border-bottom: 1px solid var(--adm-border);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.admin-menu-toggle {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--adm-border);
  border-radius: .65rem;
  background: var(--adm-surface-2);
  color: var(--adm-white);
  font-size: 1.1rem;
  cursor: pointer;
}

.admin-topbar-title {
  flex: 1;
  margin: 0;
  font-size: .9rem;
  font-weight: 700;
  color: var(--adm-muted);
}

.admin-topbar-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--adm-gold);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.admin-content {
  flex: 1;
  padding: 1.75rem 1.25rem 2.5rem;
  width: min(72rem, 100%);
  margin-inline: auto;
}

.admin-page-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.admin-page-eyebrow {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--adm-orange);
}

.admin-page-title {
  margin: .35rem 0 0;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.admin-page-desc {
  margin: .5rem 0 0;
  font-size: .92rem;
  color: var(--adm-muted);
  max-width: 32rem;
}

/* Stat cards — dashboard */
.admin-stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 540px) { .admin-stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .admin-stat-grid { grid-template-columns: repeat(3, 1fr); } }

.admin-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--adm-surface) 0%, var(--adm-surface-2) 100%);
  border: 1px solid var(--adm-border);
  color: inherit;
  transition: transform .18s, border-color .18s, box-shadow .18s;
  position: relative;
  overflow: hidden;
}

.admin-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(232 93 4 / 6%), rgb(212 160 23 / 4%));
  opacity: 0;
  transition: opacity .18s;
}

.admin-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgb(232 93 4 / 35%);
  box-shadow: 0 12px 32px rgb(0 0 0 / 35%), 0 0 0 1px rgb(212 160 23 / 12%);
}

.admin-stat-card:hover::before { opacity: 1; }

.admin-stat-icon {
  position: relative;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .85rem;
  background: linear-gradient(135deg, rgb(232 93 4 / 20%), rgb(212 160 23 / 15%));
  border: 1px solid rgb(212 160 23 / 25%);
  font-size: 1.35rem;
}

.admin-stat-body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.admin-stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--adm-muted);
  font-weight: 600;
}

.admin-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin: .15rem 0;
  background: linear-gradient(135deg, var(--adm-gold-light), var(--adm-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.admin-stat-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--adm-white);
}

.admin-stat-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: var(--adm-orange);
  opacity: .6;
  transition: transform .18s, opacity .18s;
}

.admin-stat-card:hover .admin-stat-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Admin buttons */
.btn-admin-primary {
  background: linear-gradient(135deg, var(--adm-orange), var(--adm-orange-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgb(232 93 4 / 35%);
  border: 0;
  white-space: nowrap;
}

.btn-admin-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 24px rgb(232 93 4 / 45%);
}

.admin-page .btn-primary {
  background: linear-gradient(135deg, var(--adm-orange), var(--adm-orange-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgb(232 93 4 / 30%);
}

.admin-page .btn-outline {
  background: transparent;
  border: 1px solid var(--adm-border-gold);
  color: var(--adm-gold-light);
}

.admin-page .btn-outline:hover { background: rgb(212 160 23 / 10%); }

.admin-page .btn-danger {
  background: rgb(220 38 38 / 10%);
  border: 1px solid rgb(220 38 38 / 35%);
  color: #fca5a5;
}

.admin-page .link-more {
  color: var(--adm-orange);
  border-bottom-color: rgb(232 93 4 / 40%);
}

/* Cards & lists */
.admin-page .card {
  background: var(--adm-surface);
  border: 1px solid var(--adm-border);
  box-shadow: 0 4px 24px rgb(0 0 0 / 25%);
  color: var(--adm-white);
}

.admin-page .section-label {
  color: var(--adm-gold);
  border-left-color: var(--adm-orange);
}

.admin-page .section-title { font-weight: 800; }

.admin-page .text-muted,
.admin-page p[style*="rgb(61 41 20"] {
  color: var(--adm-muted) !important;
}

.admin-card { padding: 1.25rem; border-left: 3px solid var(--adm-orange); }
.admin-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }

@media (min-width: 640px) { .admin-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin: .35rem 0;
  background: linear-gradient(135deg, var(--adm-gold-light), var(--adm-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.admin-list-item {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.15rem 1.25rem;
  margin-bottom: .75rem;
  border-radius: .85rem;
  transition: border-color .15s;
}

.admin-list-item:hover { border-color: rgb(232 93 4 / 25%); }

@media (min-width: 768px) {
  .admin-list-item { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* Forms */
.admin-page label { color: rgb(255 255 255 / 85%); font-weight: 600; font-size: .85rem; }

.admin-page input,
.admin-page select,
.admin-page textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--adm-surface-2);
  border: 1px solid var(--adm-border);
  color: var(--adm-white);
  border-radius: .65rem;
  font-size: 16px;
}

.admin-page textarea { min-height: 6rem; resize: vertical; }

.admin-page input:focus,
.admin-page select:focus,
.admin-page textarea:focus {
  border-color: rgb(232 93 4 / 50%);
  box-shadow: 0 0 0 3px rgb(232 93 4 / 15%);
}

.admin-page input::placeholder { color: rgb(255 255 255 / 30%); }

.form-card { padding: 1.35rem; }
.form-grid { display: grid; gap: 1rem; }
.form-grid-2 { grid-template-columns: 1fr; }

@media (min-width: 768px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.form-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }

@media (min-width: 640px) { .form-actions { flex-direction: row; } }

.admin-page .alert-error {
  background: rgb(220 38 38 / 12%);
  color: #fca5a5;
  border-color: rgb(220 38 38 / 30%);
}

.admin-page .alert-success {
  background: rgb(16 185 129 / 12%);
  color: #6ee7b7;
  border-color: rgb(16 185 129 / 30%);
}

.admin-page .empty-card { color: var(--adm-muted); }

.admin-page .badge {
  background: var(--adm-surface-3);
  color: var(--adm-muted);
  border: 1px solid var(--adm-border);
}

.admin-page .badge-gold {
  background: linear-gradient(135deg, var(--adm-gold), var(--adm-gold-light));
  color: #1a1a1a;
  border: 0;
}

.admin-page .photo-admin-grid img { border-radius: .65rem .65rem 0 0; }

/* Login */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgb(232 93 4 / 12%), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgb(212 160 23 / 8%), transparent 50%),
    #080808;
}

.admin-login-card {
  width: 100%;
  max-width: 26rem;
  padding: 2rem 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, #161616 0%, #0e0e0e 100%);
  border: 1px solid rgb(255 255 255 / 8%);
  box-shadow: 0 24px 64px rgb(0 0 0 / 55%), 0 0 0 1px rgb(212 160 23 / 10%);
}

.admin-login-brand {
  text-align: center;
  margin-bottom: 1.75rem;
}

.admin-login-logo {
  display: block;
  height: 4.5rem;
  width: auto;
  max-width: min(100%, 520px);
  margin: 0 auto .75rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgb(0 0 0 / 45%));
}

.admin-login-brand-mark {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--adm-orange), var(--adm-gold));
  font-size: 1rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgb(232 93 4 / 35%);
}

.admin-login-title {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
}

.admin-login-sub {
  margin: .4rem 0 0;
  font-size: .88rem;
  color: rgb(255 255 255 / 50%);
}

.login-wrap { min-height: auto; display: block; padding: 0; }
.login-card { max-width: none; margin: 0; padding: 0; border: 0; background: transparent; box-shadow: none; }

/* Desktop sidebar always visible */
@media (min-width: 1024px) {
  .admin-layout { display: flex; }

  .admin-sidebar {
    position: sticky;
    top: 0;
    transform: none;
    flex-shrink: 0;
    width: 17rem;
    height: 100vh;
  }

  .admin-main { flex: 1; min-width: 0; }

  .admin-menu-toggle,
  .admin-topbar-link { display: none; }

  .admin-topbar { padding-left: 2rem; }

  .admin-content { padding: 2rem 2rem 3rem; }

  .admin-sidebar-backdrop { display: none !important; }
}

@media (max-width: 1023px) {
  .admin-sidebar-actions .admin-sidebar-btn { font-size: .7rem; }
}

.alert { padding: .75rem 1rem; border-radius: .75rem; margin-bottom: 1rem; border: 1px solid transparent; }
.alert-error { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.alert-success { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }

.btn-danger { background: transparent; border: 2px solid #fecaca; color: #dc2626; }
.btn-outline { background: transparent; border: 2px solid var(--corda); color: var(--fogueira); }

.empty-card { padding: 1.5rem; text-align: center; color: rgb(61 41 20 / 70%); }

.badge {
  font-size: .7rem;
  background: var(--poeira);
  padding: .15rem .5rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--couro);
}

.badge-gold { background: var(--sol); color: var(--couro); }

/* ==========================================================================
   Mobile — celular e tablet portrait (até 1023px)
   ========================================================================== */

@media (max-width: 1023px) {
  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: calc(4.5rem + env(safe-area-inset-top, 0px));
    width: auto;
    max-height: calc(100dvh - 5.5rem - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 55;
    box-shadow: 0 16px 48px rgb(0 0 0 / 35%);
  }

  .site-nav a {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(72rem, calc(100% - 2rem));
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    letter-spacing: .03em;
    word-break: break-word;
  }

  .hero-grid {
    padding: 2rem 0 2.5rem;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 10vw, 2.75rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 2.85rem;
  }

  .hero-release-artist {
    width: 108%;
    max-width: 100%;
  }

  .hero-release-artist img {
    max-height: 22rem;
  }

  .hero-aside .spotify-card {
    padding: .75rem;
  }

  .spotify-embed-wrap .spotify-embed {
    min-height: 20rem;
    height: 20rem !important;
  }

  .btn {
    min-height: 2.75rem;
  }

  .agenda-card h3 {
    font-size: 1.15rem;
    word-break: break-word;
  }

  .music-player-main {
    flex-direction: column;
    align-items: stretch;
  }

  .music-player-art {
    align-self: center;
  }

  .music-volume {
    max-width: none;
    width: 100%;
  }

  .music-buttons {
    justify-content: center;
  }

  .social-card,
  .sponsor-card--premium,
  .news-card,
  .instagram-embed {
    min-width: 0;
  }

  .instagram-embed iframe {
    min-height: min(420px, 62vh);
  }

  .instagram-header {
    flex-direction: column;
    align-items: stretch;
  }

  .photo-gallery {
    gap: .5rem;
  }

  .footer-grid {
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .footer-title {
    font-size: 1.25rem;
  }

  .site-footer ul a {
    display: inline-block;
    padding: .25rem 0;
    min-height: 2rem;
  }

  .bg-music-inner {
    gap: .45rem;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  body:has(.bg-music-player) .site-footer {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .contact-float {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }

  body:has(.bg-music-player) .contact-float {
    bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }

  body.cookie-banner-open .contact-float {
    bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }

  body.cookie-banner-open:has(.bg-music-player) .contact-float {
    bottom: calc(10.5rem + env(safe-area-inset-bottom, 0px));
  }

  .admin-content {
    padding: 1.25rem 1rem 2rem;
  }

  .admin-content .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .admin-list-item {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-list-item .btn {
    width: 100%;
  }

  .admin-page-header {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-page-header .btn {
    width: 100%;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .form-card input,
  .form-card select,
  .form-card textarea,
  .form-card button[type="submit"] {
    width: 100%;
    max-width: 100%;
  }

  .admin-login-card {
    width: min(100% - 2rem, 24rem);
    margin-inline: auto;
  }

  video,
  iframe,
  embed {
    max-width: 100%;
  }
}

@media (max-width: 479px) {
  .brand-logo {
    height: 2.65rem;
    max-width: min(68vw, 280px);
  }

  .header-inner {
    padding: .6rem 0;
    gap: .65rem;
  }

  .site-nav {
    left: .75rem;
    right: .75rem;
  }

  .hero-badge {
    font-size: .58rem;
    padding: .3rem .55rem;
  }

  .section-label {
    font-size: .65rem;
    letter-spacing: .12em;
  }

  .hero-label-glow,
  .section-label--gold {
    font-size: .68rem;
  }

  #bg-music-volume,
  #bg-music-mute {
    display: none;
  }

  .bg-music-info {
    min-width: 0;
    flex: 1 1 45%;
  }

  .bg-music-marquee-text {
    font-size: .82rem;
  }

  .bg-music-btn {
    width: 2.35rem;
    height: 2.35rem;
    font-size: .85rem;
  }

  .contact-float-btn,
  .whatsapp-float {
    width: 3.15rem;
    height: 3.15rem;
  }

  .contact-float-btn svg,
  .whatsapp-float svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .sponsors-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-card-logo-wrap {
    padding: 1rem;
  }
}

@media (max-width: 359px) {
  .container {
    width: min(72rem, 100% - 1.25rem);
  }

  .hero h1 {
    font-size: 1.55rem;
  }
}

/* Formulários — evita zoom forçado no iOS */
@media (max-width: 767px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

/* Cookie consent (LGPD) */
.cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 55%) 24%, rgb(0 0 0 / 88%));
  pointer-events: none;
}

.cookie-consent-inner {
  pointer-events: auto;
  width: min(72rem, 100%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgb(212 160 23 / 35%);
  background: linear-gradient(165deg, rgb(22 18 14 / 98%), rgb(10 8 6 / 98%));
  box-shadow: 0 20px 48px rgb(0 0 0 / 45%);
}

.cookie-consent-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cookie-consent-desc {
  margin: .45rem 0 0;
  font-size: .9rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 78%);
  max-width: 42rem;
}

.cookie-consent-desc a {
  color: var(--sol-claro);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.cookie-consent .btn {
  min-width: 8.5rem;
}

body.cookie-banner-open .bg-music-player {
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
}

body.cookie-banner-open:has(.bg-music-player) .site-footer {
  padding-bottom: calc(4.5rem + 5rem);
}

.footer-legal {
  margin: .65rem 0 0;
  font-size: .72rem;
  opacity: .75;
}

.footer-legal a:hover {
  color: var(--sol-claro);
}

.privacy-heading {
  margin: 1.5rem 0 .5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: .03em;
}

.privacy-list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgb(255 255 255 / 74%);
  line-height: 1.65;
}

.privacy-list li + li {
  margin-top: .5rem;
}

/* Admin — analytics */
.admin-analytics-panel {
  padding: 1.25rem 1.35rem;
  background: var(--adm-card);
  border: 1px solid var(--adm-border);
}

.admin-analytics-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.admin-analytics-panel-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--adm-gold-light);
}

.admin-analytics-panel-desc {
  margin: .35rem 0 0;
  font-size: .88rem;
  color: rgb(255 255 255 / 55%);
}

.admin-analytics-summary {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
}

.admin-analytics-summary--compact {
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
}

.admin-analytics-card {
  padding: .9rem 1rem;
  border-radius: .85rem;
  border: 1px solid var(--adm-border);
  background: rgb(255 255 255 / 3%);
}

.admin-analytics-card--highlight {
  border-color: rgb(212 160 23 / 35%);
  background: rgb(212 160 23 / 8%);
}

.admin-analytics-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 50%);
}

.admin-analytics-value {
  display: block;
  margin-top: .35rem;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.admin-analytics-sublabel {
  display: block;
  margin-top: .2rem;
  font-size: .78rem;
  color: rgb(255 255 255 / 48%);
}

.admin-analytics-table-wrap {
  padding: 1.25rem 1.35rem;
}

.admin-analytics-table-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--adm-gold-light);
}

.admin-analytics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.admin-analytics-table th,
.admin-analytics-table td {
  padding: .65rem .5rem;
  text-align: left;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.admin-analytics-table th {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 45%);
}

.admin-analytics-table td {
  color: rgb(255 255 255 / 82%);
}

@media (max-width: 640px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-actions .btn {
    width: 100%;
  }
}

/* Admin — recados dos fãs */
.admin-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.admin-filter-tab {
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--adm-border);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 62%);
  transition: background .2s, border-color .2s, color .2s;
}

.admin-filter-tab:hover {
  color: var(--adm-gold-light);
  border-color: rgb(212 160 23 / 35%);
}

.admin-filter-tab.is-active {
  background: rgb(212 160 23 / 14%);
  border-color: rgb(212 160 23 / 45%);
  color: var(--adm-gold-light);
}

.admin-messages-table-wrap {
  padding: 0;
  overflow: hidden;
}

.admin-messages-empty {
  margin: 0;
  padding: 1.25rem 1.35rem;
  color: rgb(255 255 255 / 55%);
}

.admin-messages-table-scroll {
  overflow-x: auto;
}

.admin-messages-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  font-size: .9rem;
}

.admin-messages-table th,
.admin-messages-table td {
  padding: .85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.admin-messages-table th {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 45%);
  background: rgb(255 255 255 / 3%);
}

.admin-messages-date span {
  font-size: .78rem;
  color: rgb(255 255 255 / 45%);
}

.admin-messages-name {
  font-weight: 700;
  color: var(--adm-gold-light);
  white-space: nowrap;
}

.admin-messages-text {
  color: rgb(255 255 255 / 82%);
  line-height: 1.55;
  max-width: 28rem;
}

.admin-messages-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.admin-badge {
  display: inline-flex;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.admin-badge--ok {
  background: rgb(45 106 45 / 35%);
  color: #bbf7d0;
}

.admin-badge--pending {
  background: rgb(212 160 23 / 18%);
  color: var(--adm-gold-light);
}

.admin-page .btn-sm {
  padding: .45rem .75rem;
  font-size: .78rem;
}

.admin-flash {
  border-radius: .65rem;
}

/* ============================================================
   ENERGETIC NIGHT — forced visual overrides (v2)
   Garante paleta neon + tipografia Carreta no site público
   ============================================================ */

/* —— Sliders / volume / progress (LED de palco) —— */
body.home-page input[type="range"],
.bg-music-player input[type="range"],
.music-player input[type="range"],
#bg-music-volume,
#page-music-progress,
.music-volume {
  accent-color: #39ff14 !important;
  height: 6px;
  cursor: pointer;
}

body.home-page input[type="range"]::-webkit-slider-thumb,
.bg-music-player input[type="range"]::-webkit-slider-thumb,
.music-player input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #39ff14;
  border: 2px solid #050505;
  box-shadow:
    0 0 10px #39ff14,
    0 0 22px rgb(57 255 20 / 65%);
  cursor: pointer;
}

body.home-page input[type="range"]::-moz-range-thumb,
.bg-music-player input[type="range"]::-moz-range-thumb,
.music-player input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #39ff14;
  border: 2px solid #050505;
  box-shadow: 0 0 10px #39ff14;
  cursor: pointer;
}

body.home-page input[type="range"]::-webkit-slider-runnable-track,
.bg-music-player input[type="range"]::-webkit-slider-runnable-track,
.music-player input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
}

body.home-page input[type="range"]::-moz-range-track,
.bg-music-player input[type="range"]::-moz-range-track,
.music-player input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
}

body.home-page input[type="range"]::-moz-range-progress,
.bg-music-player input[type="range"]::-moz-range-progress,
.music-player input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #39ff14, #00d4ff);
}

/* —— Botões CTA radiantes —— */
body.home-page .btn-gold,
body.home-page .btn-primary,
.hero .btn-gold,
.hero .btn-primary {
  background: linear-gradient(180deg, #ffe566 0%, #f5c842 38%, #e8a317 100%) !important;
  color: #0a0806 !important;
  border: 2px solid rgb(255 230 130 / 60%) !important;
  box-shadow:
    0 4px 24px rgb(245 200 66 / 55%),
    0 0 0 1px rgb(255 220 100 / 25%),
    inset 0 1px 0 rgb(255 255 255 / 50%) !important;
  font-weight: 800;
  letter-spacing: .08em;
  transition:
    transform .22s ease,
    box-shadow .4s ease,
    background .4s ease,
    border-color .4s ease !important;
}

body.home-page .btn-gold:hover,
body.home-page .btn-primary:hover,
.hero .btn-gold:hover,
.hero .btn-primary:hover,
body.home-page .btn-shimmer:hover {
  background: linear-gradient(135deg, #39ff14 0%, #00d4ff 100%) !important;
  color: #050505 !important;
  border-color: rgb(57 255 20 / 75%) !important;
  box-shadow:
    0 8px 32px rgb(57 255 20 / 50%),
    0 0 48px rgb(0 212 255 / 38%),
    0 0 72px rgb(57 255 20 / 18%) !important;
  transform: translateY(-3px);
  filter: none !important;
  animation: none !important;
}

/* —— Tipografia Carreta (impacto) —— */
body.home-page .section-title,
body.home-page .section-title--fx,
body.home-page .hero h1,
body.home-page .bio-header .section-title {
  font-family: "Bebas Neue", "Barlow", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: .14em !important;
  line-height: 1.1 !important;
  text-transform: uppercase;
}

body.home-page .section-title,
body.home-page .section-title--fx {
  font-size: clamp(2.25rem, 6vw, 3.35rem) !important;
  color: #fff !important;
  text-shadow:
    0 2px 20px rgb(0 0 0 / 55%),
    0 0 40px rgb(232 163 23 / 12%) !important;
}

body.home-page .section-label,
body.home-page .hero-label-glow {
  color: #f0b429 !important;
  border-left-color: #e8a317 !important;
  letter-spacing: .18em !important;
}

body.home-page .hero h1 {
  font-size: clamp(2.6rem, 10vw, 4.5rem) !important;
  letter-spacing: .1em !important;
}

/* —— Links & ícones sociais (hover neon) —— */
body.home-page .link-more:hover,
body.home-page .link-more--fx:hover {
  color: #00d4ff !important;
  text-shadow: 0 0 16px rgb(0 212 255 / 55%) !important;
  border-bottom-color: #39ff14 !important;
}

body.home-page .site-nav a:hover {
  color: #00d4ff !important;
  text-shadow: 0 0 14px rgb(0 212 255 / 50%) !important;
}

body.home-page .social-card:hover {
  border-color: #00d4ff !important;
  box-shadow:
    0 16px 40px rgb(0 0 0 / 40%),
    0 0 32px rgb(0 212 255 / 40%),
    0 0 56px rgb(57 255 20 / 18%) !important;
}

body.home-page .listen-on-link:hover {
  border-color: #39ff14 !important;
  box-shadow: 0 0 24px rgb(57 255 20 / 35%) !important;
}

/* —— Player de música (borda LED) —— */
body.home-page .music-player {
  border-left: 4px solid #00d4ff !important;
  box-shadow:
    0 12px 40px rgb(0 0 0 / 40%),
    0 0 28px rgb(0 212 255 / 10%) !important;
}

body.home-page .music-player:hover {
  border-left-color: #39ff14 !important;
  box-shadow:
    0 16px 48px rgb(0 0 0 / 45%),
    0 0 36px rgb(57 255 20 / 14%) !important;
}

body.home-page .music-playlist-item:hover,
body.home-page .music-playlist-item.active {
  color: #00d4ff !important;
}

body.home-page .music-playlist-item.active .music-playlist-num {
  color: #39ff14 !important;
}

body.home-page .music-btn-play {
  background: linear-gradient(135deg, #f5c842, #e8a317) !important;
  border-color: #f5c842 !important;
  color: #0a0806 !important;
}

body.home-page .music-btn-play:hover {
  background: linear-gradient(135deg, #39ff14, #00d4ff) !important;
  box-shadow: 0 0 20px rgb(57 255 20 / 45%) !important;
}

/* —— Mini player rodapé —— */
body.home-page .bg-music-player {
  background: linear-gradient(90deg, #060504, #10100e, #060504) !important;
  border-top: 2px solid #e8a317 !important;
  box-shadow:
    0 -6px 32px rgb(0 0 0 / 60%),
    0 -1px 0 #00d4ff,
    0 0 40px rgb(57 255 20 / 10%) !important;
}

body.home-page .bg-music-label {
  color: #f0b429 !important;
}

body.home-page .bg-music-btn {
  border-color: rgb(57 255 20 / 55%) !important;
  color: #39ff14 !important;
}

body.home-page .bg-music-btn:hover {
  border-color: #00d4ff !important;
  color: #00d4ff !important;
  box-shadow: 0 0 20px rgb(0 212 255 / 45%) !important;
}

/* ============================================================
   LANDING WESLEY — forced overrides (v4)
   ============================================================ */

body.home-page.home-landing {
  background-color: #ffffff !important;
  background-image: none !important;
  color: #111111 !important;
}

body.home-page.home-landing .hero,
body.home-page.home-landing .hero--wesley {
  background: #ffffff !important;
  color: #111111 !important;
  min-height: 0 !important;
  padding-top: 0.35rem !important;
}

body.home-page.home-landing .hero:not(.hero--stage-lights)::before {
  display: none !important;
}

body.home-page.home-landing .site-header {
  background: rgb(255 255 255 / 96%) !important;
  border-bottom: 1px solid rgb(0 0 0 / 8%) !important;
  box-shadow: 0 1px 0 rgb(232 163 23 / 20%) !important;
}

body.home-landing .landing-title {
  color: #111111 !important;
  text-shadow: none !important;
}

body.home-landing .hero-wesley-title {
  color: #f5c842 !important;
}

body.home-landing .hero-wesley-title:not(.artist-name-title):not(.artist-name-element) {
  text-shadow:
    0 0 10px rgb(255 236 150 / 90%),
    0 0 22px rgb(245 200 66 / 80%),
    0 0 42px rgb(232 163 23 / 55%),
    0 0 68px rgb(232 163 23 / 32%) !important;
}

body.home-landing .landing-eyebrow {
  color: #c9920a !important;
}

body.home-page.home-landing .landing-title {
  color: #111111 !important;
  text-shadow: none !important;
}

body.home-page.home-landing .landing-block,
body.home-page.home-landing .landing-news,
body.home-page.home-landing .sponsors-section--landing,
body.home-page.home-landing .landing-newsletter {
  background: #ffffff !important;
  color: #111111 !important;
}

body.home-page.home-landing .landing-music,
body.home-page.home-landing .landing-recados-banner,
body.home-page.home-landing .landing-redes {
  background: #f5f5f7 !important;
  color: #111111 !important;
}

body.home-page.home-landing .landing-music-card {
  background: #ffffff !important;
  border: 1px solid rgb(0 0 0 / 8%) !important;
  border-left: 3px solid #e8a317 !important;
  border-radius: .85rem !important;
  box-shadow: 0 6px 24px rgb(0 0 0 / 5%) !important;
}

body.home-page.home-landing .landing-btn--gold,
body.home-page.home-landing .landing-recados-btn {
  color: #ffffff !important;
  background: linear-gradient(135deg, #e8a317, #d4920f) !important;
  border: 0 !important;
  box-shadow: 0 4px 16px rgb(232 163 23 / 25%) !important;
}

body.home-page.home-landing .sponsors-section,
body.home-page.home-landing .sponsors-section::before {
  background: #ffffff !important;
  background-image: none !important;
  color: #111111 !important;
}

body.home-page.home-landing .sponsors-section::before {
  display: none !important;
}

body.home-page.home-landing .landing-news-card {
  background: #ffffff !important;
  border: 1px solid rgb(0 0 0 / 8%) !important;
  border-left: 3px solid #e8a317 !important;
  box-shadow: 0 6px 24px rgb(0 0 0 / 5%) !important;
  color: #111111 !important;
}

body.home-page.home-landing .landing-news-card-date {
  color: #c9920a !important;
}

body.home-page.home-landing .landing-news-card-title,
body.home-page.home-landing .landing-news-card-title a {
  color: #111111 !important;
}

body.home-page.home-landing .landing-news-card-excerpt {
  color: #5c5c66 !important;
}

body.home-page.home-landing .landing-news-card-cta {
  color: #c9920a !important;
  border-color: rgb(232 163 23 / 45%) !important;
}

body.home-page.home-landing .landing-news-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)) !important;
  justify-content: center !important;
  gap: 1.25rem !important;
}

body.home-page.home-landing .landing-news-grid--1 {
  grid-template-columns: minmax(0, 22rem) !important;
}

body.home-page.home-landing .landing-btn--outline {
  color: #c9920a !important;
  background: #ffffff !important;
  border-color: #e8a317 !important;
}

body.home-page.home-landing .landing-recados-banner .visitor-messages {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

body.home-page.home-landing .landing-recados-banner {
  background: #f5f5f7 !important;
  color: #111111 !important;
}

body.home-page.home-landing .landing-recados-inner {
  text-align: center !important;
}

body.home-page.home-landing .landing-recados-banner .fan-wall-card {
  background: rgb(255 255 255 / 92%) !important;
  border: 1px solid rgb(0 0 0 / 8%) !important;
  border-left: 3px solid #e8a317 !important;
  border-radius: .85rem !important;
  box-shadow: 0 6px 24px rgb(0 0 0 / 5%) !important;
}

body.home-page.home-landing .landing-recados-banner .fan-wall-quote p {
  color: #111111 !important;
  text-align: center !important;
}

body.home-page.home-landing .landing-recados-banner .fan-wall-author {
  color: #c9920a !important;
  text-align: center !important;
}

body.home-page.home-landing .landing-recados-cta-card {
  background: rgb(255 255 255 / 90%) !important;
  border: 1px solid rgb(0 0 0 / 8%) !important;
  box-shadow: 0 6px 24px rgb(0 0 0 / 5%) !important;
}

body.home-page.home-landing .landing-recados-cta-hint {
  color: #5c5c66 !important;
}

body.home-page.home-landing .landing-recados-btn {
  color: #ffffff !important;
  background: linear-gradient(135deg, #e8a317, #d4920f) !important;
  border: 0 !important;
  min-height: auto !important;
  width: auto !important;
  padding: .55rem 1.35rem !important;
  font-size: .72rem !important;
  box-shadow: 0 4px 16px rgb(232 163 23 / 25%) !important;
}

body.home-page.home-landing .landing-recados-banner .fan-wall-dot.is-active {
  background: #e8a317 !important;
  box-shadow: none !important;
}

body.home-page.home-landing .sponsors-section--landing {
  background: #ffffff !important;
  border-top: 1px solid rgb(0 0 0 / 6%) !important;
  border-bottom: 0 !important;
  color: #111111 !important;
}

body.home-page.home-landing .sponsor-card--landing {
  background: #ffffff !important;
  border: 1px solid rgb(0 0 0 / 8%) !important;
  box-shadow: 0 4px 18px rgb(0 0 0 / 5%) !important;
}

body.home-page.home-landing .sponsors-section--landing .landing-title {
  color: #111111 !important;
  text-shadow: none !important;
}

body.home-page.home-landing .landing-redes {
  background: #f5f5f7 !important;
  color: #111111 !important;
}

body.home-page.home-landing .landing-social-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  width: 100% !important;
  max-width: 56rem !important;
  margin-inline: auto !important;
}

body.home-page.home-landing .landing-social-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  min-height: 10.5rem !important;
  background: #ffffff !important;
  border: 1px solid rgb(0 0 0 / 8%) !important;
  border-radius: .85rem !important;
  box-shadow: 0 6px 24px rgb(0 0 0 / 5%) !important;
  color: #111111 !important;
  text-decoration: none !important;
}

body.home-page.home-landing .landing-social-card:hover {
  border-color: rgb(232 163 23 / 35%) !important;
  box-shadow: 0 12px 32px rgb(0 0 0 / 9%) !important;
  transform: translateY(-3px) !important;
}

body.home-page.home-landing .landing-social-card-name {
  color: #111111 !important;
}

body.home-page.home-landing .landing-social-card-handle {
  color: #5c5c66 !important;
}

body.home-page.home-landing .landing-social-card-cta {
  color: #c9920a !important;
  border-color: rgb(232 163 23 / 40%) !important;
}

body.home-page.home-landing .landing-social-card-icon {
  display: inline-flex !important;
  width: 3.25rem !important;
  height: 3.25rem !important;
  border-radius: 50% !important;
}

@media (min-width: 768px) {
  body.home-page.home-landing .landing-social-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

body.home-page.home-landing .landing-redes-instagram,
body.home-page.home-landing .landing-instagram-block,
body.home-page.home-landing .landing-instagram-wall {
  background: transparent !important;
  color: #e0e0e0 !important;
}

body.home-page.home-landing .landing-instagram-wall {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.home-page.home-landing .landing-instagram-wall-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  background: transparent !important;
}

body.home-page.home-landing .landing-instagram-wall-cell {
  display: block !important;
  aspect-ratio: auto !important;
  width: 100% !important;
  background: transparent !important;
  overflow: hidden !important;
}

body.home-page.home-landing .landing-instagram-wall-cell img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

body.home-page.home-landing .landing-redes-subtitle {
  color: #111111 !important;
}

body.home-page.home-landing .landing-instagram-wall-handle {
  color: #5c5c66 !important;
}

@media (min-width: 640px) {
  body.home-page.home-landing .landing-instagram-wall-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  body.home-page.home-landing .landing-instagram-wall-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  }
}

body.home-page.home-landing .landing-newsletter {
  background: #ffffff !important;
  color: #111111 !important;
}

body.home-page.home-landing .landing-newsletter .landing-title {
  color: #111111 !important;
  text-shadow: none !important;
}

body.home-page.home-landing .landing-newsletter .landing-eyebrow {
  color: #c9920a !important;
}

body.home-page.home-landing .landing-newsletter-desc {
  color: #5c5c66 !important;
}

body.home-page.home-landing .landing-newsletter-field label {
  color: #5c5c66 !important;
}

body.home-page.home-landing .landing-newsletter-field input,
body.home-page.home-landing .landing-newsletter-field select {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgb(0 0 0 / 12%) !important;
}

body.home-page.home-landing .brand-logo {
  filter: drop-shadow(0 1px 3px rgb(0 0 0 / 10%)) !important;
  animation: none !important;
}

body.home-page.home-landing .brand--logo-fx::after {
  display: none !important;
}

body.home-landing .hero-wesley-subtitle {
  color: #e8a317 !important;
}

body.home-landing .hero-wesley-grid {
  align-items: center !important;
}

body.home-landing .hero-wesley-cutout {
  height: min(62vh, 42rem) !important;
  max-height: min(62vh, 42rem) !important;
}

body.home-landing .hero-wesley-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: .85rem 1rem !important;
}

body.home-landing .landing-instagram-grid {
  gap: 0 !important;
}

body.home-landing input[type="range"],
body.home-landing .bg-music-player input[type="range"] {
  accent-color: #e8a317 !important;
}

body.home-landing input[type="range"]::-webkit-slider-thumb,
body.home-landing .bg-music-player input[type="range"]::-webkit-slider-thumb {
  background: #e8a317 !important;
  box-shadow: 0 0 8px rgb(232 163 23 / 45%) !important;
}

/* Landing: todos os botões em dourado no hover (sem neon verde/azul) */
body.home-page.home-landing .btn-gold,
body.home-page.home-landing .btn-primary,
body.home-page.home-landing .btn-shimmer,
body.home-page.home-landing .btn-gold.btn-shimmer,
body.home-page.home-landing .landing-newsletter-submit {
  background: linear-gradient(135deg, #e8a317, #d4920f) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 4px 16px rgb(232 163 23 / 25%) !important;
  animation: none !important;
  text-shadow: none !important;
}

body.home-page.home-landing .btn-secondary,
body.home-page.home-landing .btn-glow-outline {
  border: 2px solid rgb(232 163 23 / 45%) !important;
  color: #c9920a !important;
  background: #ffffff !important;
}

body.home-page.home-landing .btn-gold:hover,
body.home-page.home-landing .btn-primary:hover,
body.home-page.home-landing .btn-shimmer:hover,
body.home-page.home-landing .btn-gold.btn-shimmer:hover,
body.home-page.home-landing .landing-newsletter-submit:hover {
  background: linear-gradient(135deg, #d4920f, #c2840d) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 22px rgb(232 163 23 / 32%) !important;
  filter: none !important;
  animation: none !important;
}

body.home-page.home-landing .btn-secondary:hover,
body.home-page.home-landing .btn-glow-outline:hover {
  border-color: #e8a317 !important;
  color: #ffffff !important;
  background: #e8a317 !important;
  box-shadow: 0 4px 18px rgb(232 163 23 / 25%) !important;
}

body.home-page.home-landing .bg-music-btn {
  border-color: rgb(232 163 23 / 45%) !important;
  color: #e8a317 !important;
}

body.home-page.home-landing .bg-music-btn:hover {
  border-color: #e8a317 !important;
  color: #e8a317 !important;
  background: rgb(232 163 23 / 10%) !important;
  box-shadow: 0 0 16px rgb(232 163 23 / 28%) !important;
}

@media (max-width: 768px) {
  body.home-landing .hero-wesley-grid {
    display: flex !important;
    flex-direction: column !important;
  }

  body.home-landing .hero-wesley-photo {
    order: 1 !important;
  }

  body.home-landing .hero-wesley-content {
    order: 2 !important;
  }

  body.home-landing .hero-wesley-cutout {
    height: auto !important;
    max-height: min(72vw, 26rem) !important;
  }

  body.home-landing .landing-news-grid {
    grid-template-columns: 1fr !important;
    max-width: 22rem !important;
    margin-inline: auto !important;
  }

  body.home-page.home-landing .landing-news-card {
    max-width: 100% !important;
    width: 100% !important;
  }
}

@media (min-width: 1024px) {
  body.home-landing .hero-wesley-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) !important;
    align-items: center !important;
  }
}

/* ============================================================
   LANDING SHOW v3 — wins over v4 forced overrides
   ============================================================ */

body.home-page.home-landing {
  background-color: #09090b !important;
  color: #e5e5e5 !important;
}

body.home-page.home-landing main {
  background: #09090b !important;
}

body.home-page.home-landing .hero,
body.home-page.home-landing .hero--wesley {
  background: #09090b !important;
  color: #e5e5e5 !important;
}

body.home-page.home-landing .site-header:not(.site-header--mockup),
body.home-page.home-landing .site-header--glass:not(.site-header--mockup) {
  background: rgb(10 10 15 / 92%) !important;
  border-bottom: 1px solid rgb(245 200 66 / 15%) !important;
  box-shadow: 0 4px 24px rgb(0 0 0 / 25%) !important;
}

body.home-page.home-landing .site-nav:not(.site-nav--mockup) a {
  color: rgb(255 255 255 / 88%) !important;
}

body.home-page.home-landing .site-nav:not(.site-nav--mockup) a:hover {
  color: #f5c842 !important;
}

body.home-page.home-landing .landing-section--dark,
body.home-page.home-landing .landing-music.landing-section--dark,
body.home-page.home-landing .landing-recados-banner.landing-section--dark,
body.home-page.home-landing .landing-redes.landing-section--dark,
body.home-page.home-landing .landing-news.landing-section--dark,
body.home-page.home-landing .sponsors-section--landing.landing-section--dark {
  background: #09090b !important;
  color: #e5e5e5 !important;
}

body.home-page.home-landing .landing-section--cream,
body.home-page.home-landing .landing-news.landing-section--dark {
  background: #09090b !important;
  color: #e5e5e5 !important;
}

body.home-page.home-landing .landing-section--spotlight,
body.home-page.home-landing .landing-newsletter.landing-section--spotlight {
  background: linear-gradient(135deg, #1a1408 0%, #0a0a0f 40%, #12100a 100%) !important;
  color: #ffffff !important;
}

body.home-page.home-landing .landing-section--dark .landing-title,
body.home-page.home-landing .landing-music .landing-title,
body.home-page.home-landing .landing-recados-banner .landing-title,
body.home-page.home-landing .landing-redes .landing-title {
  color: #ffffff !important;
  text-shadow: 0 2px 24px rgb(0 0 0 / 40%) !important;
}

body.home-page.home-landing .landing-section--cream .landing-title,
body.home-page.home-landing .landing-news .landing-title,
body.home-page.home-landing .landing-news.landing-section--dark .landing-title {
  color: #ffffff !important;
}

body.home-page.home-landing .landing-music-layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem !important;
  max-width: 56rem !important;
  margin-inline: auto !important;
}

body.home-page.home-landing .landing-music-card {
  max-width: none !important;
  margin-inline: 0 !important;
  background: linear-gradient(145deg, rgb(22 22 30 / 95%), rgb(14 14 20 / 98%)) !important;
  border: 1px solid rgb(245 200 66 / 22%) !important;
  border-left: 4px solid #e8a317 !important;
  box-shadow: 0 20px 60px rgb(0 0 0 / 45%) !important;
}

body.home-page.home-landing .landing-music-album {
  color: #f5c842 !important;
}

body.home-page.home-landing .landing-music-desc {
  color: rgb(255 255 255 / 62%) !important;
}

body.home-page.home-landing .landing-tracklist li {
  color: #f0f0f4 !important;
  border-bottom-color: rgb(255 255 255 / 8%) !important;
}

body.home-page.home-landing .landing-recados-banner .fan-wall-card {
  background: linear-gradient(145deg, rgb(24 24 32 / 92%), rgb(16 16 22 / 96%)) !important;
  border: 1px solid rgb(245 200 66 / 20%) !important;
  border-left: 4px solid #e8a317 !important;
  box-shadow: 0 16px 48px rgb(0 0 0 / 35%) !important;
}

body.home-page.home-landing .landing-recados-banner .fan-wall-quote p {
  color: #f8f8fa !important;
}

body.home-page.home-landing .landing-recados-banner .fan-wall-author {
  color: #f5c842 !important;
}

body.home-page.home-landing .landing-recados-cta-card {
  background: linear-gradient(145deg, rgb(22 22 30 / 90%), rgb(14 14 20 / 95%)) !important;
  border: 1px solid rgb(245 200 66 / 22%) !important;
}

body.home-page.home-landing .landing-recados-cta-hint {
  color: rgb(255 255 255 / 55%) !important;
}

body.home-page.home-landing .landing-social-card {
  background: linear-gradient(160deg, rgb(24 24 32 / 95%), rgb(16 16 22 / 98%)) !important;
  border: 1px solid rgb(245 200 66 / 18%) !important;
  box-shadow: 0 12px 36px rgb(0 0 0 / 35%) !important;
}

body.home-page.home-landing .landing-social-card-name {
  color: #ffffff !important;
}

body.home-page.home-landing .landing-social-card-handle {
  color: rgb(255 255 255 / 55%) !important;
}

body.home-page.home-landing .landing-redes-subtitle {
  color: #ffffff !important;
}

body.home-page.home-landing .landing-instagram-wall {
  background: transparent !important;
  border: 1px solid rgb(245 200 66 / 20%) !important;
  box-shadow: 0 16px 48px rgb(0 0 0 / 40%) !important;
}

body.home-page.home-landing .landing-instagram-wall-cell {
  background: #12121a !important;
}

body.home-page.home-landing .landing-instagram-wall-handle {
  color: rgb(255 255 255 / 60%) !important;
}

body.home-page.home-landing .landing-newsletter-desc {
  color: rgb(255 255 255 / 68%) !important;
}

body.home-page.home-landing .landing-newsletter .landing-eyebrow {
  color: #f5c842 !important;
}

body.home-page.home-landing .landing-btn--gold {
  color: #0a0806 !important;
  background: linear-gradient(135deg, #ffe566 0%, #f5c842 40%, #e8a317 100%) !important;
}

body.home-page.home-landing .landing-section--dark .landing-btn--outline {
  color: #f5c842 !important;
  background: transparent !important;
  border-color: rgb(245 200 66 / 50%) !important;
}

body.home-page.home-landing .bg-music-player {
  background: linear-gradient(180deg, #0e0e14, #0a0a0f) !important;
  border-top: 1px solid rgb(245 200 66 / 25%) !important;
  box-shadow: 0 -6px 32px rgb(0 0 0 / 60%) !important;
}

body.home-page.home-landing .bg-music-label {
  color: #f5c842 !important;
}

body.home-page.home-landing .bg-music-player input[type="range"] {
  accent-color: #e8a317 !important;
}

body.home-page.home-landing .bg-music-player input[type="range"]::-webkit-slider-thumb {
  background: #e8a317 !important;
  box-shadow: 0 0 10px rgb(232 163 23 / 55%) !important;
}

body.home-page.home-landing .bg-music-player input[type="range"]::-moz-range-progress {
  background: linear-gradient(90deg, #e8a317, #f5c842) !important;
}

body.home-page.home-landing .music-btn-play {
  border-color: rgb(245 200 66 / 55%) !important;
  color: #f5c842 !important;
}

body.home-page.home-landing .music-btn-play:hover {
  background: linear-gradient(135deg, #f5c842, #e8a317) !important;
  color: #0a0806 !important;
  box-shadow: 0 0 20px rgb(245 200 66 / 45%) !important;
}

body.home-page.home-landing .sponsors-section--landing.landing-section--dark {
  background: #09090b !important;
}

body.home-page.home-landing .sponsor-card--landing {
  background: rgb(255 255 255 / 4%) !important;
  border: 1px solid rgb(255 255 255 / 8%) !important;
}

body.home-page.home-landing .landing-news-grid--1 {
  grid-template-columns: minmax(0, 22rem) !important;
  justify-content: center !important;
}

body.home-page.home-landing .landing-recados-cta-card .visitor-message-open {
  width: auto !important;
}

body.home-page.home-landing .landing-instagram-fullbleed {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

@media (max-width: 1024px) {
  body.home-page.home-landing .landing-music-layout {
    grid-template-columns: 1fr !important;
  }
}
