:root {
  --black: #0a0a0a;
  --silver: #e8e8ec;
  --silver-soft: #c8c8ce;
  --red: #c4121a;
  --red-hot: #e23b42;
  --red-deep: #8a0d14;
  --muted: rgba(232, 232, 236, 0.62);
  --line: rgba(232, 232, 236, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: #050505;
  color: var(--silver);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.bg-mosaic {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: 100dvh;
}
.bg-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 1fr);
  width: 100%;
  height: 100%;
  gap: 3px;
}
.bg-mosaic__grid img {
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) brightness(0.88);
}
.bg-mosaic__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.62) 100%),
    radial-gradient(ellipse at 50% 20%, rgba(196, 18, 26, 0.14), transparent 55%);
}
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.45s ease;
  background: radial-gradient(180px circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(226, 59, 66, 0.16), rgba(196, 18, 26, 0.06) 35%, transparent 70%);
  mix-blend-mode: screen;
}
.cursor-glow.is-active { opacity: 1; }

.header, main, footer, .lightbox, .whatsapp-float { position: relative; z-index: 3; }
.lightbox { z-index: 200; }
.whatsapp-float { z-index: 150; }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 clamp(0.85rem, 4vw, 2.5rem);
  min-width: 0;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header__brand { display: flex; align-items: center; z-index: 2; min-width: 0; }
.header__brand img {
  height: 42px;
  width: auto;
  max-width: min(240px, 58vw);
  object-fit: contain;
  mix-blend-mode: lighten;
}

.nav { display: flex; gap: 1.35rem; }
.nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.nav a svg {
  width: 1rem;
  height: 1rem;
  opacity: 0.85;
  flex-shrink: 0;
}
.nav a:hover,
.nav a.is-active { color: var(--silver); }
.nav a:hover svg,
.nav a.is-active svg {
  color: var(--red-hot);
  opacity: 1;
}

.header__cta { z-index: 2; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 2;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--silver); transition: 0.3s var(--ease); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.45rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.btn svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--red-hot), var(--red));
  color: #fff;
  box-shadow: 0 10px 30px rgba(196, 18, 26, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(196, 18, 26, 0.45); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--silver);
  background: rgba(232, 232, 236, 0.04);
}
.btn--ghost:hover { border-color: var(--silver); transform: translateY(-2px); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero__content {
  width: min(980px, 94vw);
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1rem 5rem;
  animation: rise-in 1.1s var(--ease) both;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero__logo {
  width: min(88vw, 680px);
  height: auto;
  margin: 0 auto 1.5rem;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.55));
  animation: float-soft 5s ease-in-out infinite;
}
.hero__lead {
  margin: 1rem auto 1.8rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--silver-soft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.hero__scroll span {
  width: 4px; height: 10px;
  border-radius: 999px;
  background: var(--red);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

.section { position: relative; padding: clamp(4.5rem, 10vw, 7.5rem) 0; }
.section__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 8, 8, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.section__inner--center { display: block; text-align: center; }
.section__inner--wide { width: min(1200px, 94vw); display: block; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--red-hot);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.section__text { color: var(--muted); font-size: 1.08rem; max-width: 36rem; }
.section__text--center { margin: 0 auto 2.5rem; }

.icon-badge {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(196, 18, 26, 0.14);
  border: 1px solid rgba(196, 18, 26, 0.35);
  color: var(--red-hot);
}
.icon-badge svg { width: 1.2rem; height: 1.2rem; }

.sobre__highlights { margin-top: 2rem; display: grid; gap: 0.9rem; }
.sobre__highlights li { display: flex; align-items: center; gap: 0.85rem; font-weight: 500; }
.eventos {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.eventos li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.4);
}
.eventos .icon-badge { width: 2.1rem; height: 2.1rem; }
.sobre__visual { position: relative; display: grid; place-items: center; }
.sobre__photo {
  width: min(420px, 100%);
}
.sobre__photo img {
  width: 100%;
  height: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}
.eq {
  position: absolute;
  bottom: 0.5rem;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 42px;
}
.eq span {
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--silver), var(--red));
  animation: eq 1.1s ease-in-out infinite;
}
.eq span:nth-child(1) { height: 30%; }
.eq span:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.eq span:nth-child(3) { height: 80%; animation-delay: 0.2s; }
.eq span:nth-child(4) { height: 45%; animation-delay: 0.05s; }
.eq span:nth-child(5) { height: 95%; animation-delay: 0.25s; }
.eq span:nth-child(6) { height: 60%; animation-delay: 0.15s; }
.eq span:nth-child(7) { height: 35%; animation-delay: 0.3s; }

.repertorio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 auto 2rem;
  text-align: left;
}
.repertorio__card {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.55);
  transition: transform 0.3s var(--ease), border-color 0.25s;
}
.repertorio__card:hover { transform: translateY(-4px); border-color: rgba(196, 18, 26, 0.5); }
.repertorio__card h3 { font-size: 1.15rem; margin: 0.85rem 0 0.4rem; }
.repertorio__card p { color: var(--muted); font-size: 0.95rem; }

.carousel {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
}
.carousel__stage {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
.carousel__main {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: #050505;
  justify-self: center;
  transition: aspect-ratio 0.35s var(--ease), width 0.35s var(--ease);
}
.carousel__main.is-portrait {
  aspect-ratio: 3 / 4;
  width: min(100%, 420px);
}
.carousel__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  pointer-events: none;
}
.carousel__layer.is-active { opacity: 1; z-index: 1; }
.carousel__zoom {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 2;
  width: 2.8rem; height: 2.8rem;
  margin: -1.4rem 0 0 -1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(196, 18, 26, 0.92);
  color: #fff;
  opacity: 0;
  transform: scale(0.85);
  transition: 0.3s var(--ease);
  pointer-events: none;
}
.carousel__zoom svg { width: 1.25rem; height: 1.25rem; }
.carousel__main:hover .carousel__zoom { opacity: 1; transform: scale(1); }
.carousel__arrow {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(232, 232, 236, 0.06);
  color: var(--silver);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.carousel__arrow svg { width: 1.25rem; height: 1.25rem; }
.carousel__arrow:hover { background: rgba(196, 18, 26, 0.25); border-color: var(--red); }
.carousel__counter { margin: 0.85rem 0 1rem; text-align: center; color: var(--muted); font-size: 0.9rem; }
.carousel__thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.25rem 0.15rem 0.6rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 18, 26, 0.5) transparent;
}
.carousel__thumb {
  flex: 0 0 auto;
  width: 4.5rem; height: 3.2rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  opacity: 0.55;
  color: var(--silver);
}
.carousel__thumb img { width: 100%; height: 100%; object-fit: cover; }
.carousel__thumb.is-active { opacity: 1; border-color: var(--red-hot); }

.video-carousel__main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.video-carousel__frame {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}
.video-carousel__frame video {
  display: block;
  width: 100%;
  max-height: min(70vh, 560px);
  object-fit: contain;
  background: #000;
}
.video-carousel__caption { text-align: center; font-weight: 500; color: var(--silver-soft); min-height: 1.5em; }
.video-carousel .carousel__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: auto;
  min-width: 3.6rem;
  height: 2.6rem;
  padding: 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.video-carousel .carousel__thumb svg { width: 1.1rem; height: 1.1rem; }

.contato { overflow: hidden; }
.contato__glow {
  position: absolute;
  inset: 20% 20% auto;
  height: 280px;
  background: radial-gradient(circle, rgba(196, 18, 26, 0.28), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.contato__infos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin: 0 auto 1.8rem;
}
.contato__infos li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
}
.contato__form {
  width: min(560px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
}
.contato__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-soft);
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(12, 10, 10, 0.95);
  color: var(--silver);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  outline: none;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e8e8ec' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(226, 59, 66, 0.85);
  box-shadow: 0 0 0 3px rgba(196, 18, 26, 0.22);
}
.contato__form-hint { margin: 0; color: #f0a090; font-size: 0.9rem; text-align: center; }
.contato__form .btn { width: 100%; margin-top: 0.35rem; }

.socials { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--silver-soft);
  transition: 0.25s var(--ease);
}
.socials a:hover { background: rgba(196, 18, 26, 0.15); border-color: var(--red); color: var(--silver); transform: translateY(-3px); }
.socials svg { width: 1.25rem; height: 1.25rem; }

.footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2rem;
  background: rgba(5, 5, 5, 0.92);
}
.footer__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer__link {
  color: var(--silver-soft);
  font-weight: 500;
  border-bottom: 1px solid rgba(232, 232, 236, 0.28);
  padding-bottom: 2px;
}
.footer__link:hover { color: var(--silver); }

.download-page { padding-top: calc(var(--header-h) + 1.5rem); }
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 0 auto 2.2rem;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 0.4rem;
  text-align: left;
}
.download-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.38);
}
.download-card__preview {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 1.1rem;
  background: #000;
}
.download-card__preview img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}
.download-card__preview--logo img { mix-blend-mode: lighten; }
.download-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.05rem 1.15rem;
  border-top: 1px solid var(--line);
}
.download-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.download-card__body p { color: var(--muted); font-size: 0.92rem; }
.download-card .btn { width: 100%; margin-top: 0.45rem; }

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 150;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: 0;
}
.whatsapp-float__pulse--delay { animation-delay: 1.1s; }
.whatsapp-float__tip {
  position: absolute;
  right: calc(100% + 0.7rem);
  white-space: nowrap;
  background: #111;
  color: var(--silver);
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: 0.25s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover .whatsapp-float__tip { opacity: 1; transform: none; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 85vh; object-fit: contain; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  border: none;
  background: rgba(232, 232, 236, 0.08);
  color: var(--silver);
  cursor: pointer;
  border-radius: 50%;
}
.lightbox__close { top: 1.2rem; right: 1.2rem; width: 48px; height: 48px; font-size: 2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lightbox__nav:first-of-type { left: 1rem; }
.lightbox__next { right: 1rem; left: auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes rise-in { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: none; } }
@keyframes float-soft { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes scroll-dot { 0% { transform: translateY(-8px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
@keyframes eq { 0%, 100% { transform: scaleY(0.45); } 50% { transform: scaleY(1); } }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.65; } 100% { transform: scale(1.55); opacity: 0; } }

@media (max-width: 1080px) {
  .menu-toggle { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(5, 5, 5, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
  body.menu-open { overflow: hidden; }
  .nav a { font-family: var(--font-display); font-size: clamp(1.6rem, 7vw, 2.2rem); color: var(--silver); gap: 0.65rem; }
  .nav a svg { width: 1.25rem; height: 1.25rem; }
}

@media (max-width: 960px) {
  .bg-mosaic__grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(7, 1fr); }
  .section__inner { grid-template-columns: 1fr; }
  .sobre__visual { order: -1; }
  .sobre__copy { text-align: center; }
  .sobre__highlights li { justify-content: flex-start; width: min(100%, 20rem); margin-inline: auto; }
  .eventos { max-width: 26rem; margin-left: auto; margin-right: auto; }
  .section__text { margin-left: auto; margin-right: auto; }
  .repertorio__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  :root { --header-h: 64px; }
  .bg-mosaic {
    width: 100vw;
    height: 100dvh;
  }
  .bg-mosaic__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 1fr);
    width: 100%;
    height: 100%;
    gap: 2px;
  }
  .bg-mosaic__veil {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.38) 0%, rgba(5, 5, 5, 0.52) 100%),
      radial-gradient(ellipse at 50% 18%, rgba(196, 18, 26, 0.12), transparent 55%);
  }
  .header__brand img { height: 34px; max-width: 52vw; }
  .hero__content { width: min(920px, 100%); padding: calc(var(--header-h) + 1.1rem) 0.4rem 4.2rem; }
  .hero__logo { width: min(92vw, 520px); margin-bottom: 1.1rem; }
  .hero__lead { font-size: 1rem; margin-bottom: 1.3rem; padding: 0 0.4rem; }
  .hero__actions { padding: 0 0.5rem; }
  .btn { width: min(100%, 22rem); }
  .section { padding: 3.2rem 0; }
  .section__inner, .section__inner--wide {
    width: min(1100px, calc(100% - 1.2rem));
    padding: 1.1rem 0.9rem;
    border-radius: 16px;
  }
  h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .carousel { padding: 0.65rem; }
  .carousel__stage { grid-template-columns: 1fr; }
  .carousel__arrow { position: absolute; z-index: 3; top: 42%; transform: translateY(-50%); }
  .carousel__arrow:first-of-type { left: 0.35rem; }
  #carouselNext, #videoNext { right: 0.35rem; left: auto; }
  .contato__form { padding: 1rem 0.85rem; }
  .contato__form-row { grid-template-columns: 1fr; }
  .repertorio__grid { grid-template-columns: 1fr; }
  .socials a { width: min(100%, 16rem); justify-content: center; }
  .whatsapp-float { right: 0.85rem; bottom: 0.85rem; width: 56px; height: 56px; }
  .whatsapp-float__tip { display: none; }
  .footer { padding: 1.4rem 0 5.5rem; }
  .footer__inner { flex-direction: column; text-align: center; }
  .lightbox { padding: 1rem; }
  .lightbox__nav { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
