/* Importando fontes modernas do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800;900&family=Plus+Jakarta+Sans:wght@400;500;700;800&display=swap');

/* --- DESIGN TOKENS & SYSTEM VARIABLES --- */
:root {
  color-scheme: dark;
  
  /* Paleta de Cores HSL Premium */
  --bg-dark: hsl(240, 25%, 3%);      /* Fundo principal quase preto azulado */
  --bg-deep: hsl(240, 20%, 6%);      /* Fundo secundário para seções/painéis */
  --bg-surface: hsla(240, 16%, 10%, 0.7); /* Superfície de cards com transparência */
  --bg-card-hover: hsla(240, 16%, 14%, 0.85); /* Superfície de cards no hover */
  
  --primary: hsl(150, 100%, 48%);     /* Verde Neon - Principal ação/energia */
  --primary-glow: hsla(150, 100%, 48%, 0.25);
  --secondary: hsl(261, 100%, 71%);   /* Violeta Neon - Destaques secundários/luz */
  --secondary-glow: hsla(261, 100%, 71%, 0.2);
  --accent: hsl(350, 100%, 61%);      /* Rosa/Vermelho Neon - Avisos/Pulsações */
  --accent-glow: hsla(350, 100%, 61%, 0.4);

  --text-main: hsl(220, 20%, 94%);   /* Branco suave para leitura */
  --text-muted: hsl(220, 10%, 68%);  /* Texto secundário/cinza */
  --text-dark: hsl(240, 30%, 5%);    /* Preto para contraste em fundo claro */

  --border-light: hsla(220, 20%, 90%, 0.08);
  --border-glow: hsla(150, 100%, 48%, 0.35);
  
  /* Outros tokens */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --ease-in-out: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s var(--ease-in-out);
  --transition-normal: 0.35s var(--ease-in-out);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px hsla(150, 100%, 48%, 0.15);
}

/* --- RESET & BODY BASE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-deep);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
body::-webkit-scrollbar-thumb {
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Seleção de Texto */
body::selection {
  background: var(--primary);
  color: var(--text-dark);
}

/* Noise & Spotlight backgrounds */
.noise-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, #fff 0 1px, transparent 1px 2px),
                    repeating-linear-gradient(90deg, #fff 0 1px, transparent 1px 2px);
}

.stage-glow-left {
  position: absolute;
  top: 10%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

.stage-glow-right {
  position: absolute;
  top: 50%;
  right: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
}

/* --- TYPOGRAPHY & LINKS --- */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- GLOBAL CONTAINER --- */
.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 50px;
  max-width: 800px;
}

.kicker {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
}

.section-title {
  font-size: clamp(32px, 5.5vw, 68px);
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.section-desc {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  color: var(--text-muted);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease-in-out), border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}

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

.btn-primary {
  background-color: var(--primary);
  color: var(--text-dark);
  box-shadow: 0 10px 25px rgba(0, 245, 160, 0.25);
}

.btn-primary:hover {
  background-color: hsl(150, 100%, 42%);
  box-shadow: 0 15px 35px rgba(0, 245, 160, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--border-light);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

.btn-compact {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}

.btn-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  background-color: transparent;
  color: var(--text-main);
  transition: transform 0.25s var(--ease-in-out), border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-social:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* --- TOPBAR & NAVIGATION --- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 6, 9, 0.75);
  backdrop-filter: blur(16px) saturate(130%);
  border-bottom: 1px solid var(--border-light);
  transition: padding var(--transition-normal);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.brand-logo-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--primary-glow);
  position: relative;
}

.brand-logo-wrapper::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid transparent;
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin-glow 4s linear infinite;
  pointer-events: none;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

@keyframes spin-glow {
  100% { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
  box-shadow: 0 0 8px var(--primary);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: -5;
  filter: brightness(0.35) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-dark) 0%, rgba(6, 6, 9, 0.4) 60%, var(--bg-dark) 100%),
              linear-gradient(90deg, var(--bg-dark) 0%, rgba(6, 6, 9, 0.2) 50%, rgba(6, 6, 9, 0.8) 100%);
  z-index: -4;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 0.95;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  color: var(--primary);
  text-shadow: 0 0 35px var(--primary-glow);
}

.hero-copy {
  font-size: clamp(17px, 2.2vw, 22px);
  margin-bottom: 35px;
  line-height: 1.4;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  aspect-ratio: 9/12;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-fast);
}

.hero-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.hero-card-video {
  flex: 1;
  min-height: 0;
  position: relative;
}

.hero-card-footer {
  padding: 20px;
  background: rgba(18, 18, 26, 0.9);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-footer h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.hero-card-footer p {
  font-size: 12px;
}

.pulse-indicator {
  width: 12px;
  height: 12px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 hsla(350, 100%, 61%, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 12px hsla(350, 100%, 61%, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 hsla(350, 100%, 61%, 0); }
}

/* --- PITCH SECTION ("Não é só repertório...") --- */
.pitch {
  background-color: var(--bg-deep);
  border-top: 1px solid var(--border-light);
}

.pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pitch-card {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--transition-normal), border-color var(--transition-fast);
  text-decoration: none;
  color: inherit;
}

.pitch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 9, 0.95) 15%, rgba(6, 6, 9, 0.3) 60%, transparent 100%);
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.pitch-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, var(--secondary-glow), transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.pitch-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 15px 35px rgba(157, 109, 255, 0.15);
}

.pitch-card:hover::after {
  opacity: 1;
}

.pitch-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.pitch-card p {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-muted);
}

/* --- SHOWCASE ("O Show") --- */
.showcase {
  padding: 0;
}

.showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.showcase-media-container {
  position: relative;
  overflow: hidden;
}

.showcase-media-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--bg-dark) 100%),
              linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
}

.showcase-content {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--bg-dark);
}

.showcase-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 25px;
}

.showcase-content > p {
  margin-bottom: 30px;
  font-size: 17px;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.showcase-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
}

.showcase-item svg {
  color: var(--primary);
  margin-top: 3px;
  filter: drop-shadow(0 0 5px var(--primary-glow));
}

.showcase-item p {
  color: var(--text-main);
  font-weight: 500;
  font-size: 15px;
}

/* --- FORMATS SECTION --- */
.formats {
  background-color: var(--bg-deep);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.format-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  justify-content: space-between;
  transition: transform var(--transition-normal), border-color var(--transition-fast);
}

.format-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 245, 160, 0.08);
}

.format-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  transition: var(--transition-fast);
}

.format-card:hover .format-num {
  color: var(--primary);
  -webkit-text-stroke: 1px var(--primary);
  text-shadow: 0 0 15px var(--primary-glow);
}

.format-card h3 {
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.format-card p {
  font-size: 14px;
}

/* --- REPERTORIO INTERATIVO (NEW) --- */
.repertoire-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  margin-bottom: 40px;
  align-items: center;
}

.repertoire-search-wrapper {
  position: relative;
}

.repertoire-search-wrapper svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.repertoire-search-input {
  width: 100%;
  padding: 16px 16px 16px 52px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(10px);
}

.repertoire-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 245, 160, 0.15);
}

.repertoire-filters {
  display: flex;
  gap: 10px;
}

.rep-filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.rep-filter-btn:hover {
  color: var(--text-main);
  border-color: var(--text-muted);
}

.rep-filter-btn.active {
  background: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 245, 160, 0.25);
}

.repertoire-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#repertoire-counter {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.repertoire-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.repertoire-pdf-link:hover {
  text-decoration: underline;
}

.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.song-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s var(--ease-in-out), border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.song-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-glow);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.song-index {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.4;
  flex-shrink: 0;
  width: 32px;
}

.song-card:hover .song-index {
  color: var(--primary);
  opacity: 1;
}

.song-info {
  flex: 1;
  min-width: 0;
}

.song-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.song-artist {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-year {
  opacity: 0.6;
  font-size: 11px;
}

.song-badge-container {
  flex-shrink: 0;
}

.song-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.song-badge.nacional {
  background: rgba(0, 245, 160, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 245, 160, 0.2);
}

.song-badge.internacional {
  background: rgba(157, 109, 255, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(157, 109, 255, 0.2);
}

/* --- CLIPS SECTION (YOUTUBE VIDEOS) --- */
.clips {
  background-color: var(--bg-dark);
}

.clips-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.clips-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clips-note {
  margin-top: 30px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: 15px;
}

.clips-note .btn {
  margin-top: 20px;
}

.clips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.clip-card {
  display: block;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-normal), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.clip-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.clip-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #000;
  overflow: hidden;
}

.clip-thumbnail img {
  transition: transform var(--transition-normal);
}

.clip-card:hover .clip-thumbnail img {
  transform: scale(1.05);
}

.clip-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(6, 6, 9, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-main);
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.clip-play-btn svg {
  fill: currentColor;
  margin-left: 2px;
}

.clip-card:hover .clip-play-btn {
  background: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 25px var(--primary);
}

.clip-details {
  padding: 16px 20px;
}

.clip-details b {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clip-details span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- GALLERY / MEDIA WALL --- */
.gallery {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.media-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  gap: 20px;
}

.media-wall figure.media {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  cursor: pointer;
}

.media-wall figure.media.tall {
  grid-row: span 2;
}

.media-wall figure.media.wide {
  grid-column: span 2;
}

.media-wall figure.media img,
.media-wall figure.media video {
  transition: transform var(--transition-normal);
}

.media-wall figure.media:hover img,
.media-wall figure.media:hover video {
  transform: scale(1.04);
}

.media-wall figure.media[data-external-url] video {
  pointer-events: none;
}

.media-external-target {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}

.media-external-target:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: -5px;
}

.media-wall figure.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 9, 0.75) 0%, transparent 60%);
  z-index: 1;
}

.media-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.media-play-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid var(--border-light);
  display: grid;
  place-items: center;
  color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* --- LINEUP (BAND MEMBERS) --- */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lineup-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 35px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lineup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
}

.lineup-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 15px 35px rgba(157, 109, 255, 0.05);
}

.lineup-card.leader::before {
  background: var(--primary);
}

.lineup-card.leader:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 245, 160, 0.05);
}

.lineup-card-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 25px;
  display: block;
}

.lineup-card.leader .lineup-card-title {
  color: var(--primary);
}

.member-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.member-item {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
}

.member-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.member-name {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--text-main);
  line-height: 1;
}

.member-role {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- CONTACT & QUOTE GENERATOR --- */
.contact {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-dark) 35%, rgba(6, 6, 9, 0.8) 100%);
  z-index: -1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.contact-info {
  max-width: 500px;
}

.contact-info h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 17px;
  margin-bottom: 35px;
}

.contact-socials {
  display: flex;
  gap: 16px;
}

/* Painel de Orçamento Interativo */
.quote-panel {
  background: rgba(18, 18, 26, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

/* Indicador de Passos */
.quote-steps-indicator {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}

.indicator-step {
  height: 4px;
  background-color: var(--border-light);
  border-radius: 2px;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.indicator-step.active {
  background-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* Container do passo ativo */
.quote-steps-container {
  flex: 1;
  display: grid;
  position: relative;
}

.quote-step {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-direction: column;
  justify-content: center;
}

.quote-step.active {
  display: flex;
  opacity: 1;
}

.quote-step-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.quote-step-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Grid de seleção do passo 1 */
.event-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.event-type-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.event-type-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--text-muted);
}

.event-type-card.selected {
  background: rgba(0, 245, 160, 0.05);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 245, 160, 0.1);
}

.event-type-card svg {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.event-type-card.selected svg {
  color: var(--primary);
  filter: drop-shadow(0 0 5px var(--primary));
}

.event-type-card h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

/* Inputs do passo 2 */
.quote-form-group {
  margin-bottom: 20px;
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quote-input {
  width: 100%;
  padding: 14px;
  background-color: rgba(6, 6, 9, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.quote-input:focus {
  border-color: var(--primary);
}

textarea.quote-input {
  resize: vertical;
  min-height: 90px;
}

/* Confirmação do passo 3 */
.quote-summary {
  background: rgba(6, 6, 9, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
  font-size: 15px;
}

.summary-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-label {
  color: var(--text-muted);
  font-weight: 500;
}

.summary-value {
  font-weight: 700;
  color: var(--text-main);
  text-align: right;
}

#summary-details {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

/* Controles do Formulário */
.quote-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.quote-footer .btn {
  flex: 1;
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-wrapper p {
  font-size: 13px;
}

/* --- INTERACTIVE LIGHTBOX (DYNAMIC MODAL) --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(6, 6, 9, 0.9);
  backdrop-filter: blur(20px);
}

.lightbox-container {
  position: relative;
  width: min(90vw, 960px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  z-index: 1001;
  background: var(--bg-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1003;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(6, 6, 9, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-main);
  transform: rotate(90deg);
}

.lightbox-content {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img,
.lightbox-video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Quando o conteúdo for retrato, ajustamos dinamicamente as proporções do modal */
.lightbox-modal.lightbox-portrait .lightbox-container {
  width: min(90vw, 460px); /* Deixa a modal em formato de celular/vertical */
}

.lightbox-modal.lightbox-portrait .lightbox-content {
  aspect-ratio: 9/16;
  max-height: 72vh;
}

.lightbox-modal.lightbox-portrait .lightbox-img,
.lightbox-modal.lightbox-portrait .lightbox-video {
  max-height: 72vh;
}

.lightbox-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(6, 6, 9, 0.95) 40%, rgba(6, 6, 9, 0.7) 70%, transparent 100%);
  z-index: 1002;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lightbox-caption h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.lightbox-caption p {
  font-size: 12px;
  color: var(--text-muted);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 18, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition-fast);
  opacity: 0.7;
}

.lightbox-nav:hover {
  background: var(--bg-deep);
  border-color: var(--primary);
  opacity: 1;
  color: var(--primary);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

/* --- RESPONSIVIDADE (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }
  
  .hero-card {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  .pitch-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .pitch-card {
    min-height: 320px;
  }

  .showcase-wrapper {
    grid-template-columns: 1fr;
  }

  .showcase-media-container {
    height: 480px;
  }

  .showcase-media-container::after {
    background: linear-gradient(to top, var(--bg-dark) 0%, rgba(6, 6, 9, 0.2) 80%, transparent 100%);
  }

  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clips-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .clips-content {
    text-align: center;
    max-width: 100%;
  }

  .media-wall {
    grid-template-columns: 1fr 1fr;
  }
  
  .media-wall figure.media.wide {
    grid-column: auto;
  }

  .lineup-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Mobile navigation simplified */
  }

  .repertoire-controls {
    grid-template-columns: 1fr;
  }

  .repertoire-filters {
    justify-content: center;
    width: 100%;
  }

  .rep-filter-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: 11px;
  }

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

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

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

  .media-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  
  .media-wall figure.media.tall {
    grid-row: auto;
  }

  .event-type-grid {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    padding: 24px;
  }

  .quote-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .lightbox-container {
    width: 95vw;
  }
  
  .lightbox-nav {
    width: 38px;
    height: 38px;
  }
  
  .lightbox-nav.prev {
    left: 10px;
  }
  
  .lightbox-nav.next {
    right: 10px;
  }
}

/* Suporte a preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
