:root {
  --bg: #dcdcdc;
  --bg-alt: #d4d4d4;
  --text: #161616;
  --text-dim: #4a4a4a;
  --accent: #5a1f5e;
  --font-display: 'Fraunces', serif;
  --font-body: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: #0f0b12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23503a5c' stroke-width='1'%3E%3Ccircle cx='120' cy='120' r='100' opacity='0.07'/%3E%3Ccircle cx='120' cy='120' r='70' opacity='0.08'/%3E%3Ccircle cx='120' cy='120' r='40' opacity='0.09'/%3E%3Ccircle cx='120' cy='120' r='8' opacity='0.1'/%3E%3Cg opacity='0.08'%3E%3Cpath d='M120 30 C140 55 140 85 120 105 C100 85 100 55 120 30Z' transform='rotate(0 120 120)'/%3E%3Cpath d='M120 30 C140 55 140 85 120 105 C100 85 100 55 120 30Z' transform='rotate(45 120 120)'/%3E%3Cpath d='M120 30 C140 55 140 85 120 105 C100 85 100 55 120 30Z' transform='rotate(90 120 120)'/%3E%3Cpath d='M120 30 C140 55 140 85 120 105 C100 85 100 55 120 30Z' transform='rotate(135 120 120)'/%3E%3Cpath d='M120 30 C140 55 140 85 120 105 C100 85 100 55 120 30Z' transform='rotate(180 120 120)'/%3E%3Cpath d='M120 30 C140 55 140 85 120 105 C100 85 100 55 120 30Z' transform='rotate(225 120 120)'/%3E%3Cpath d='M120 30 C140 55 140 85 120 105 C100 85 100 55 120 30Z' transform='rotate(270 120 120)'/%3E%3Cpath d='M120 30 C140 55 140 85 120 105 C100 85 100 55 120 30Z' transform='rotate(315 120 120)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 240px 240px;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 40px;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  display: block;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: invert(1);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  position: relative;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.nav a:hover {
  color: #fff;
  background-color: rgba(217, 166, 220, 0.28);
}
.nav a.nav-glow {
  font-weight: 600;
  color: #d9a6dc;
}
.nav a.nav-glow:hover {
  color: #fff;
}
.nav a.nav-active {
  border-color: rgba(217, 166, 220, 0.55);
  background-color: rgba(217, 166, 220, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(0.15) contrast(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,30,30,0.35) 0%, rgba(30,30,30,0.15) 40%, rgba(20,20,20,0.55) 100%);
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px calc(100px + 20vh);
  text-align: center;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.hero-tagline {
  color: #f2f2f2;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  max-width: 640px;
  margin: 0 auto;
}
.hero-page { min-height: 70vh; }
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #161616;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-wrap.rotate-right video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vh;
  height: 100vw;
  min-width: 70vh;
  min-height: 100vw;
  transform: translate(-50%, -50%) rotate(90deg);
  object-fit: cover;
}
.hero-video-wrap.pending {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a2a, #161616);
}
.hero-video-pending-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-page .hero-content { padding-bottom: calc(60px + 10vh); }
.link-strong {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #fff;
}

/* Me conheça */
.sobre {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 40px;
  background: rgba(220, 220, 220, 0.88);
  border-radius: 16px;
}
.sobre-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 70px;
}
.sobre-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.sobre-block:last-child { margin-bottom: 0; }
.sobre-block.reverse { grid-template-columns: 1.15fr 0.85fr; }
.sobre-block.reverse .sobre-photo { order: 2; }
.sobre-block.reverse .sobre-text { order: 1; }
.sobre-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #fffdf7;
  padding: 14px 14px 46px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transform: rotate(-2deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sobre-photo::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 72px;
  height: 26px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%) rotate(-3deg);
}
.sobre-block.reverse .sobre-photo { transform: rotate(2deg); }
.sobre-block.reverse .sobre-photo::before { transform: translateX(-50%) rotate(3deg); }
.sobre-photo:hover { transform: rotate(0deg) scale(1.03); box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24); }
.sobre-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.sobre-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin-bottom: 18px;
}
.sobre-text p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.sobre-text p:last-child { margin-bottom: 0; }
.sobre-page { padding-top: 160px; }

/* Imprensa */
.imprensa {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 24px;
  background: rgba(220, 220, 220, 0.88);
  border-radius: 16px;
}
.imprensa.first-section { padding-top: 160px; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 40px;
}
.tv-grid { grid-template-columns: repeat(3, 1fr); }

/* Loja — collage Y2K estilo post-it */
.shop-collage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px 22px;
  padding: 10px 10px 30px;
}
.shop-item {
  position: relative;
  display: block;
  width: 220px;
  background: #fffef2;
  padding: 14px 14px 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: rotate(var(--tilt, -3deg));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shop-item:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
  z-index: 5;
}
.shop-item::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 64px;
  height: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%) rotate(-4deg);
}
.shop-item:nth-child(6n+1) { --tilt: -4deg; background: #c9b3dd; }
.shop-item:nth-child(6n+2) { --tilt: 3deg; background: #a97fc9; margin-top: 30px; }
.shop-item:nth-child(6n+3) { --tilt: -2deg; background: #9c6fae; }
.shop-item:nth-child(6n+4) { --tilt: 4deg; background: #b797d1; margin-top: 30px; }
.shop-item:nth-child(6n+5) { --tilt: -3deg; background: #7d4f96; }
.shop-item:nth-child(6n+6) { --tilt: 2deg; background: #bda0d4; margin-top: 30px; }
.shop-item .media-box {
  aspect-ratio: 4 / 5;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
}
.shop-item .media-box img { transition: transform 0.25s; }
.shop-item:hover .media-box img { transform: scale(1.05); }
.shop-item .press-caption {
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}
.shop-price {
  margin-top: 4px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--accent);
  font-weight: 600;
}
.media-box {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-box img,
.media-box video,
.media-box iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
}
.media-box.placeholder {
  background: transparent;
  border: 1px dashed rgba(0, 0, 0, 0.18);
}
.media-box.placeholder span {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-dim);
  text-align: center;
  padding: 0 20px;
}
.press-caption {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent);
}
.press-summary {
  margin-top: 10px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* Avaliações */
.hidden-section { display: none; }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-card {
  background: var(--bg-alt);
  padding: 36px 28px;
  border-radius: 4px;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 18px;
}
.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after { content: "\201D"; }
.testimonial-author {
  font-weight: 600;
  font-size: 0.88rem;
}
.testimonial-role {
  margin-top: 2px;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Mídias Impressas e Digitais — lista compacta */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.press-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: start;
}
.press-thumb {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  padding: 0;
  border: none;
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-alt);
  cursor: zoom-in;
}
.press-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}
.press-thumb:hover img { transform: scale(1.06); }
.press-row .press-caption { margin-top: 0; }
.press-row a.press-caption {
  display: inline-block;
  text-decoration: none;
  transition: color 0.2s;
}
.press-row a.press-caption:hover { color: var(--accent); text-decoration: underline; }
.press-row .press-summary { margin-top: 6px; }

/* Lightbox de imagem (clique para ampliar) */
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}
.img-lightbox.open { display: flex; }
.img-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.86);
}
.img-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.img-lightbox-content img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 2px;
}
.img-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 301;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* Popup de vídeo local — toca sem sair da página */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-lightbox.open { display: flex; }
.video-lightbox-content {
  position: relative;
  width: min(92vw, 900px);
}
.video-lightbox-content video {
  width: 100%;
  max-height: 85vh;
  display: block;
  border-radius: 2px;
  background: #000;
}
.video-lightbox-next {
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.video-lightbox-next:hover { background: var(--accent); }
.video-lightbox-next svg { width: 22px; height: 22px; fill: #fff; }
.video-lightbox-next.hidden-field { display: none; }

/* Popup de player de música — toca sem sair da página */
.audio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}
.audio-lightbox.open { display: flex; }
.audio-lightbox-content {
  position: relative;
  width: min(92vw, 500px);
}
.audio-lightbox-content iframe {
  display: block;
  border-radius: 12px;
}

/* Card de fallback: vídeo sem permissão de incorporação */
.youtube-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.youtube-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.youtube-link-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  text-align: center;
  padding: 12px;
  transition: background 0.2s;
}
.youtube-link:hover .youtube-link-overlay { background: rgba(0, 0, 0, 0.32); }
.youtube-link-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.youtube-link-play svg { width: 18px; height: 18px; fill: #fff; margin-left: 2px; }
.youtube-link-label {
  font-size: 0.7rem;
  letter-spacing: 0.4px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Faixa de números */
.stats-band {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px;
  padding: 56px 40px;
  text-align: center;
  background: rgba(220, 220, 220, 0.88);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
}
.stat-item-whatsapp { transition: opacity 0.2s; }
.stat-item-whatsapp:hover { opacity: 0.75; }
.stat-icon {
  width: clamp(2.2rem, 5vw, 3rem);
  height: clamp(2.2rem, 5vw, 3rem);
  color: var(--accent);
}
.stat-icon svg { width: 100%; height: 100%; display: block; }
.contato-whatsapp-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 32px auto 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.contato-whatsapp-direct:hover { color: var(--accent); }
.contato-whatsapp-direct svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* Monte seu evento */
.evento-cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 40px 90px;
  text-align: center;
  background: rgba(220, 220, 220, 0.88);
  border-radius: 16px;
}
.evento-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.evento-cta-text {
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 32px;
}
.evento-cta .btn-pill {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* Página Serviços */
.servicos-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-dim);
}
.servico-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto 56px;
}
.servico-row .media-box,
.tv-grid .press-item .media-box {
  aspect-ratio: 4 / 3;
  position: relative;
  background: #fffdf7;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  overflow: visible;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.servico-row .media-box:hover,
.tv-grid .press-item .media-box:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}
.servico-row .media-box::before,
.servico-row .media-box::after,
.tv-grid .press-item .media-box::before,
.tv-grid .press-item .media-box::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--bg-alt);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.servico-row .media-box::before,
.tv-grid .press-item .media-box::before { left: -9px; }
.servico-row .media-box::after,
.tv-grid .press-item .media-box::after { right: -9px; }
.servico-row .media-box .youtube-link,
.tv-grid .press-item .media-box .youtube-link {
  overflow: hidden;
  border-radius: 2px;
}
.servico-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.servico-price {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}
.servico-instrumentos {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.servico-text p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.servico-karaoke {
  max-width: 900px;
  margin: 0 auto 56px;
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 28px 32px;
}
.servico-karaoke .servico-title { margin-bottom: 8px; }
.servico-karaoke p { font-size: 0.9rem; line-height: 1.7; color: var(--text-dim); }
.servico-playlists {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}
.servico-playlists p {
  font-size: 0.86rem;
  color: var(--text-dim);
  margin: 6px 0 20px;
}
.servico-playlists-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.btn-pill.btn-pill-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-pill.btn-pill-outline:hover { background: var(--accent); color: #fff; }
.servico-notas {
  max-width: 900px;
  margin: 0 auto 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.servico-notas p {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.servico-notas p:last-child { margin-bottom: 0; }
.servicos-cta {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.servicos-cta a { color: var(--accent); text-decoration: underline; }
@media (max-width: 640px) {
  .servico-row { grid-template-columns: 1fr; }
}

/* Página Autoral — collage estilo scrapbook Y2K */
.autoral-intro {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-dim);
}
.song-collage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 20px 16px 10px;
}
.song-card {
  position: relative;
  width: 290px;
  background: #fffdf7;
  padding: 26px 22px 24px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  transform: rotate(-2deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.song-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 64px;
  height: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%) rotate(-4deg);
}
.song-card:nth-child(even) { transform: rotate(2deg); }
.song-card:nth-child(even)::before { transform: translateX(-50%) rotate(4deg); }
.song-card:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 3;
}
.song-card-featured {
  width: 330px;
  background: var(--accent);
  border: 2px solid var(--accent);
  transform: rotate(-1.5deg) scale(1.05);
  z-index: 2;
}
.song-card-featured:hover { transform: rotate(0deg) scale(1.08); }
.song-card-featured .song-title {
  font-size: 1.7rem;
  color: #fff;
}
.song-card-featured .song-play-trigger:hover { color: #e9c9ec; }
.song-card-featured .song-badge {
  background: #fff;
  color: var(--accent);
}
.song-card-featured .song-links a { color: #f0d9f2; }
.song-card-featured .song-cifra { border-top-color: rgba(255, 255, 255, 0.3); }
.song-card-featured .song-cifra-preview {
  font-size: 1.05rem;
  color: #fff;
}
.song-card-featured .song-cifra-preview:hover { color: #e9c9ec; }
.song-card-featured .btn-pill-outline {
  border-color: #fff;
  color: #fff;
}
.song-card-featured .btn-pill-outline:hover { background: #fff; color: var(--accent); }
.song-photo {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 14px;
}
.song-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.song-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.song-play-trigger {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.song-play-trigger:hover { color: var(--accent); }
.song-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 16px;
}
.song-links a {
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: underline;
}
.song-cifra {
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  padding-top: 14px;
  margin-top: 4px;
}
.song-cifra-preview {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.song-cifra-preview:hover { color: var(--accent); text-decoration: underline; }
.song-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-dim);
  margin-top: 8px;
}
.song-cifra-meta {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.autoral-note {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-dim);
}

/* Modal — monte seu evento */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.6);
}
.modal-content {
  position: relative;
  background: var(--bg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 40px 32px;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  padding: 6px;
}
.modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.evento-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.evento-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.evento-form input,
.evento-form select,
.evento-form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
}
.evento-form textarea { resize: vertical; }
.contato-form {
  max-width: 560px;
  margin: 0 auto;
}
.phone-row {
  display: flex;
  gap: 8px;
}
.phone-row select {
  flex: 0 0 auto;
  max-width: 44%;
}
.phone-row input {
  flex: 1 1 auto;
  min-width: 0;
}
.evento-form .hidden-field { display: none; }
.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.field-group-label { font-size: 0.8rem; color: var(--text-dim); }
.field-hint {
  font-size: 0.74rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}
.date-row {
  display: flex;
  gap: 8px;
}
.date-row select {
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
}
.date-row select:disabled { opacity: 0.55; }
.checkbox-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
}
.checkbox-label input { width: auto; }

/* Resultado do "Calcular" */
#evento-resultado.hidden-field,
#evento-form.hidden-field { display: none; }
.evento-resultado { margin-top: 8px; }
.evento-resultado-intro {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.format-card {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.format-card.highlight {
  border-color: var(--accent);
  background: rgba(90, 31, 94, 0.06);
  box-shadow: 0 0 0 1px var(--accent);
}
.format-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.format-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--accent);
  padding: 2px 8px;
  border-radius: 10px;
}
.format-card-summary {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-dim);
}
.format-card-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.format-card-link {
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: underline;
  margin-top: auto;
}
.karaoke-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-dim);
  border-top: 1px dashed rgba(0, 0, 0, 0.18);
  padding-top: 12px;
  margin-top: 4px;
}
.evento-resultado-nota {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}
.evento-resultado-nota a { color: var(--accent); text-decoration: underline; }
.evento-resultado-cta {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: center;
}
@media (max-width: 640px) {
  .format-grid { grid-template-columns: 1fr; }
}
.field-error {
  display: none;
  font-size: 0.76rem;
  color: #b3261e;
  margin-top: -8px;
}
.field-error.visible { display: block; }
.evento-form input.invalid,
.evento-form select.invalid,
.evento-form textarea.invalid {
  border-color: #b3261e;
}
.evento-form button[type="submit"] {
  margin-top: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* Redes sociais */
.redes {
  background: var(--bg-alt);
  padding: 90px 40px 70px;
  text-align: center;
}
.redes-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 40px;
}
.social-band {
  width: calc(100% + 80px);
  margin: 0 -40px 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.video-carousel {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.video-carousel-track {
  display: flex;
  gap: 20px;
  padding: 4px 0;
  width: max-content;
}
.video-carousel-item {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}
.video-frame {
  width: 300px;
  height: 480px;
  border: none;
  border-radius: 4px;
  background: #000;
  display: block;
}
.video-frame-instagram {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame.video-embed-wrap {
  position: relative;
  overflow: hidden;
}
.video-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-embed-catch {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  background: transparent;
}
.carousel-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: var(--bg);
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.carousel-arrow:hover {
  background: var(--accent);
  color: #fff;
}
.icon-row-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin: 48px 0 24px;
}
.icon-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.icon-circle svg {
  width: 22px;
  height: 22px;
}
.icon-circle:hover {
  background: var(--accent);
  color: #fff;
}
.icon-social {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.icon-social svg { width: 24px; height: 24px; }
.icon-social:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}
.icon-tiktok { background: #000; }
.icon-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.icon-youtube { background: #ff0000; }
.icon-facebook { background: #1877f2; }
.icon-whatsapp { background: #25d366; }
.redes-divider {
  max-width: 220px;
  height: 1px;
  margin: 48px auto;
  background: rgba(0, 0, 0, 0.14);
}
.icon-plain {
  width: 34px;
  height: 34px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}
.icon-plain svg {
  width: 100%;
  height: 100%;
}
.icon-plain:hover {
  opacity: 0.75;
  transform: scale(1.08);
}
.btn-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 14px 40px;
  border-radius: 999px;
  transition: opacity 0.2s;
}
.btn-pill:hover { opacity: 0.88; }

/* Footer */
.site-footer {
  background: #161616;
  padding: 40px;
}
.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
}
.footer-logo-img {
  height: 46px;
  width: auto;
  display: block;
  filter: invert(1);
}
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.footer-contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .press-grid, .tv-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre { padding: 60px 24px; }
  .sobre-title { margin-bottom: 48px; }
  .sobre-block, .sobre-block.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }
  .sobre-block.reverse .sobre-photo,
  .sobre-block.reverse .sobre-text { order: initial; }
  .sobre-photo { max-width: 320px; margin: 0 auto; }
  .sobre-page { padding-top: 120px; }
  .evento-cta { padding: 50px 24px 60px; }
  .video-carousel-item { flex-basis: 220px; }
  .video-frame { width: 220px; height: 352px; }
  .carousel-arrow { width: 36px; height: 36px; }
  .header-inner { padding: 20px 24px; }
}

@media (max-width: 640px) {
  .press-grid, .tv-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .shop-item { width: 42vw; max-width: 220px; }
  .press-row { grid-template-columns: 72px 1fr; gap: 14px; }
  .press-thumb { width: 72px; height: 72px; }
  .hero-content { padding-bottom: calc(100px + 10vh); }
  .modal-content { max-width: none; width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    width: 70%;
    max-width: 280px;
    background: #1a1a1a;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 150;
  }
  .nav.open { transform: translateX(0); }
  .hamburger { display: flex; }
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-contact { text-align: left; }
}
