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

:root {
  --black: #0a0a0a;
  --black2: #111111;
  --black3: #1a1a1a;
  --white: #f5f5f5;
  --white2: #e0e0e0;
  --red: #CC0000;
  --red2: #ff1a1a;
  --gray: #555555;

  --gutter: clamp(1.25rem, 5vw, 3rem);
  --nav-h: 72px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
@supports (overflow: clip) { body { overflow-x: clip; } }
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a, button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--red2); outline-offset: 3px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ─── BARRA DE PROGRESSO ─── */
.progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* ─── NAV ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, transform .45s var(--ease);
}
.site-nav.is-scrolled {
  background: rgba(10,10,10,0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.site-nav.is-hidden { transform: translateY(-100%); }
.site-nav > * { animation: fadeDown .9s var(--ease) .15s both; }

.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  margin-left: auto;
}
.nav-links a {
  position: relative;
  display: inline-block;
  padding: .4rem 0;
  color: var(--white2);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--white); }

.nav-cta {
  padding: .7rem 1.4rem;
  min-height: 0;
  font-size: .75rem;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  margin-right: -10px;
  background: none; border: 0;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px;
  height: 2px;
  background: var(--white);
  transition: top .35s var(--ease), transform .35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 25px; }
.menu-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-open .nav-toggle span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* menu mobile (fora do header para o position:fixed funcionar) */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 1rem) var(--gutter) 2.5rem;
  background:
    radial-gradient(ellipse 90% 50% at 100% 100%, rgba(204,0,0,.22), transparent 60%),
    var(--black);
  opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility 0s .35s;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; transition: opacity .35s; }
.mobile-menu ul { list-style: none; }
.mobile-menu li a {
  display: inline-block;
  padding: .15rem 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 13vw, 3.6rem);
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .2s;
}
.mobile-menu li a.active { color: var(--red2); }
.menu-open .mobile-menu li a {
  opacity: 1; transform: none;
  transition-delay: calc(var(--i) * 70ms + 120ms);
}
.mobile-menu .menu-foot {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem;
  opacity: 0;
  transition: opacity .5s .5s;
}
.menu-open .mobile-menu .menu-foot { opacity: 1; }

/* ─── BOTÕES ─── */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  min-height: 48px;
  padding: 1rem 2.4rem;
  border: 0;
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), border-color .25s, background .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }
.btn-red { background: var(--red); }
.btn-red::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--red2);
  transform: translateX(-101%);
  transition: transform .45s var(--ease);
}
.btn-red:hover::before { transform: none; }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-lg { padding: 1.15rem 2.6rem; font-size: .9rem; }

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-media { position: absolute; inset: 0; will-change: transform; }
.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.35);
  animation: heroIn 2.4s var(--ease) both;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 10% 100%, rgba(204,0,0,.16), transparent 70%),
    linear-gradient(to top, var(--black) 0%, transparent 55%);
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  min-width: 0;
  padding: 0 var(--gutter) clamp(3rem, 9vh, 5rem);
  max-width: 900px;
  will-change: transform, opacity;
}

.hero-logo {
  width: min(680px, 100%);
  margin-bottom: 1.5rem;
  line-height: 0;
  animation: logoIn 1.5s var(--ease) .5s both;
}
.hero-logo img { width: 100%; filter: drop-shadow(0 2px 40px rgba(204,0,0,0.35)); }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s var(--ease) 1s both;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: fadeUp 1s var(--ease) 1.2s both;
}

.hero-scroll {
  position: absolute; right: var(--gutter); bottom: clamp(3rem, 9vh, 5rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  color: var(--white2);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  animation: fadeUp 1s var(--ease) 1.6s both;
}
.hero-scroll span { writing-mode: vertical-rl; }
.hero-scroll i {
  display: block;
  width: 1px; height: 64px;
  background: rgba(255,255,255,.2);
  position: relative; overflow: hidden;
}
.hero-scroll i::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--red);
  animation: scrollLine 2s var(--ease) infinite;
}

/* ─── TICKER ─── */
.ticker-wrap {
  position: relative; z-index: 3;
  background: var(--red);
  overflow: hidden;
  padding: 0.65rem 0;
  white-space: nowrap;
}
.ticker {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--white);
  padding: 0 3rem;
}
.ticker span::after {
  content: '★';
  margin-left: 3rem;
  color: rgba(255,255,255,0.5);
}

/* ─── SEÇÕES ─── */
.section { padding: clamp(4.5rem, 10vw, 7.5rem) var(--gutter); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2rem;
  text-wrap: balance;
}

/* ─── ANIMAÇÕES DE SCROLL ─── */
.js [data-reveal] {
  opacity: 0;
  transition: opacity .9s var(--ease), transform 1s var(--ease);
  transition-delay: var(--delay, 0s);
}
.js [data-reveal="up"]    { transform: translateY(44px); }
.js [data-reveal="left"]  { transform: translateX(-56px); }
.js [data-reveal="right"] { transform: translateX(56px); }
.js [data-reveal="zoom"]  { transform: scale(.92); }
.js [data-reveal="frame"] { opacity: 1; }
.js [data-reveal].visible { opacity: 1; transform: none; }

/* títulos: palavra por palavra */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.split .w > span { display: inline-block; }
.js .split .w > span {
  transform: translateY(105%);
  transition: transform .9s var(--ease);
  transition-delay: calc(var(--wi) * 70ms + var(--delay, 0s));
}
.js .split.visible .w > span { transform: none; }

/* fotos com moldura: cortina + moldura vermelha deslizando */
.framed { position: relative; isolation: isolate; }
.framed .frame { overflow: hidden; }
.framed .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.framed::after {
  content: '';
  position: absolute;
  width: 60%; height: 60%;
  border: 2px solid var(--red);
  z-index: -1;
}
.js .framed .frame { clip-path: inset(100% 0 0 0); transition: clip-path 1.3s var(--ease) var(--delay, 0s); }
.js .framed.visible .frame { clip-path: inset(0 0 0 0); }
.js .framed::after { opacity: 0; transition: opacity .8s .45s, transform 1.2s var(--ease) .45s; }
.js .framed.visible::after { opacity: 1; transform: none; }

.parallax-img { transform: translate3d(0, var(--py, 0px), 0) scale(1.12); will-change: transform; }

/* ─── SOBRE ─── */
.sobre {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.sobre-logo {
  width: 100%;
  max-width: 540px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(204,0,0,0.3));
}

.sobre-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: #bbb;
  margin-bottom: 1.2rem;
}
.sobre-text p strong {
  color: var(--white);
  font-weight: 600;
}

.sobre-img .frame { aspect-ratio: 2 / 3; }
.sobre-img .frame img { filter: grayscale(20%); }
.sobre-img::after { bottom: -12px; right: -12px; }
.js .sobre-img::after { transform: translate(-28px, -28px); }

.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 2.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.stats li { background: var(--black); padding: 1.2rem 1rem 1.1rem; }
.stats strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 3.6vw, 2.9rem);
  line-height: 1;
  color: var(--white);
}
.stats strong em { font-style: normal; color: var(--red); }
.stats i { font-style: normal; }
.stats li > span {
  display: block;
  margin-top: .45rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8a8a8a;
  line-height: 1.35;
}

/* ─── INTEGRANTES ─── */
#integrantes {
  background: var(--black2);
  text-align: center;
}

.integrantes-header {
  max-width: 600px;
  margin: 0 auto 4rem;
}

.integrantes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  margin: 0 auto;
}

.membro {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--black);
}
.membro::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.membro:hover::after { transform: scaleX(1); }

.membro-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(40%) brightness(0.7);
  transition: filter 0.4s, transform 0.8s var(--ease);
}
.membro:hover .membro-img {
  filter: grayscale(0%) brightness(0.9);
  transform: scale(1.04);
}

.membro-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1.6rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
.membro:hover .membro-info { transform: translateY(0); }

.membro-nome {
  font-family: 'Rye', serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--white);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
}
.membro-nome span { color: var(--red); }

.membro-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white2);
  margin-top: 0.2rem;
}

.membro-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding: .25rem 0;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.membro-ig:hover { color: var(--red2); }
.membro-ig svg { width: 13px; height: 13px; fill: currentColor; }

.swipe-hint { display: none; }

/* ─── MÚSICAS AUTORAIS ─── */
#autorais {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(204,0,0,.16), transparent 70%),
    var(--black);
}
.autorais { max-width: 1300px; margin: 0 auto; }

.autorais-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.autorais-head h2 { margin-bottom: 0; }
.autorais-head p { color: #bbb; line-height: 1.8; font-size: 1rem; }

.videos {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.video-card { background: var(--black3); display: flex; flex-direction: column; }

.yt {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}
.yt img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.72);
  transition: transform .9s var(--ease), filter .4s;
}
.yt:hover img { transform: scale(1.04); filter: brightness(.9); }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.yt-play {
  position: absolute; left: 50%; top: 50%;
  width: 78px; height: 78px;
  margin: -39px 0 0 -39px;
  border: 0; border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center;
  cursor: pointer;
  animation: pulse 2.4s infinite;
  transition: transform .3s var(--ease), background .3s;
}
.yt:hover .yt-play { transform: scale(1.1); background: var(--red2); }
.yt-play svg { width: 28px; height: 28px; margin-left: 4px; fill: #fff; }
.video-card--side .yt-play { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
.video-card--side .yt-play svg { width: 22px; height: 22px; }

.yt-duration {
  position: absolute; right: .75rem; bottom: .75rem;
  padding: .2rem .5rem;
  background: rgba(0,0,0,.78);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em;
}

.video-meta {
  flex: 1;
  display: flex; flex-direction: column; gap: .6rem;
  padding: 1.6rem 1.75rem 1.75rem;
}
.video-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red2);
}
.video-meta h3 {
  font-family: 'Rye', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--white);
}
.video-card--side .video-meta h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }
.video-meta p { color: #aaa; font-size: .95rem; line-height: 1.7; }
.video-credits { list-style: none; display: grid; gap: .3rem; color: #999; font-size: .9rem; line-height: 1.5; }
.video-credits b { color: var(--white2); font-weight: 600; }
.video-link {
  align-self: flex-start;
  margin-top: .6rem;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 0;
  color: var(--white2);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .2s;
}
.video-link:hover { color: var(--red2); }

.autorais-foot {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem 2rem;
}
.autorais-foot p { color: #999; font-size: .98rem; }

/* ─── SETLIST ─── */
#setlist { border-top: 1px solid rgba(255,255,255,.05); }
.setlist {
  max-width: 1200px;
  margin: 0 auto;
}

.setlist-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.setlist-intro p {
  color: #bbb;
  line-height: 1.8;
  font-size: 1rem;
}
.setlist-intro p + p { margin-top: 1.2rem; }

.band-cutout {
  display: flex;
  justify-content: center;
}
.band-cutout img {
  width: auto;
  max-width: 100%;
  max-height: 480px;
  filter: drop-shadow(0 0 40px rgba(204,0,0,0.25));
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  border-top: 1px solid rgba(255,255,255,0.08);
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.playlist-item:hover { background: rgba(204,0,0,0.08); }
.js .playlist-item { opacity: 0; }
.js .playlist-item.visible { animation: fadeUp .6s var(--ease) var(--d, 0s) both; }

.track-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  color: var(--red);
  min-width: 24px;
  font-weight: 600;
}

.track-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white2);
  flex: 1;
  transition: transform .3s var(--ease), color .2s;
}
.playlist-item:hover .track-name { transform: translateX(4px); color: var(--white); }

.track-artist {
  font-size: 0.72rem;
  color: #777;
  font-weight: 300;
  text-align: right;
}

.setlist-more { display: none; }

/* ─── CONTATO ─── */
.contato-section { padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1rem, 4vw, 3rem); }

.contato-box {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5.5rem);
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.05);
}
.contato-box::before {
  content: '';
  position: absolute; top: -1px; left: clamp(2.5rem, 6vw, 5.5rem);
  width: 120px; height: 4px;
  background: var(--red);
  transform-origin: left;
  transition: transform 1s var(--ease) .3s;
}
.js .contato-box:not(.visible)::before { transform: scaleX(0); }

.contato-img { position: sticky; top: calc(var(--nav-h) + 2rem); align-self: start; }
.contato-img .frame { aspect-ratio: 800 / 760; }
.contato-img .frame img { filter: grayscale(30%); }
.contato-img::after { top: -12px; left: -12px; }
.js .contato-img::after { transform: translate(28px, 28px); }

.contato-text h2 { margin-bottom: 1.5rem; }
.contato-text p {
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
  max-width: 540px;
}

.contato-cta { margin-bottom: 2.25rem; }

.contato-links { display: flex; flex-direction: column; }

.contato-link {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--white2);
  text-decoration: none;
  transition: color .2s, padding-left .35s var(--ease);
}
.contato-link:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.contato-link:hover { color: var(--white); padding-left: .5rem; }
.contato-link .icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--red);
  transition: background .2s;
}
.contato-link:hover .icon { background: var(--red2); }
.contato-link .icon svg { width: 20px; height: 20px; fill: #fff; }
.contato-link small {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #888;
}
.contato-link strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: .05em;
  overflow-wrap: anywhere;
}
.contato-link .arrow {
  margin-left: auto;
  padding-left: .5rem;
  opacity: .35;
  transition: transform .3s var(--ease), opacity .3s, color .3s;
}
.contato-link:hover .arrow { opacity: 1; color: var(--red2); transform: translateX(4px); }

/* ─── FOOTER ─── */
footer {
  background: #060606;
  text-align: center;
  padding: 3rem var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { height: 60px; width: auto; margin: 0 auto 1.25rem; }
.social { display: flex; justify-content: center; gap: .75rem; margin-bottom: 1.5rem; }
.social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white2);
  transition: background .2s, border-color .2s, transform .25s var(--ease);
}
.social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; fill: currentColor; }
footer p {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.footer-credito {
  max-width: 420px;
  margin: .9rem auto 0;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem !important;
  font-weight: 600;
  letter-spacing: .22em !important;
  text-transform: uppercase;
  color: #6b6b6b !important;
}
.footer-credito a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.footer-credito a:hover { color: var(--red2) !important; }

/* ─── KEYFRAMES ─── */
@keyframes heroIn {
  from { opacity: 0; transform: scale(1.18); }
  to   { opacity: 1; transform: scale(1.04); }
}
@keyframes logoIn {
  0%   { opacity: 0; transform: scale(1.1); filter: blur(14px); }
  60%  { opacity: 1; filter: blur(0); }
  68%  { opacity: .55; }
  74%  { opacity: 1; }
  80%  { opacity: .75; }
  100% { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(204,0,0,.55); }
  70%  { box-shadow: 0 0 0 22px rgba(204,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,0,0,0); }
}
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}

/* ─── RESPONSIVO ─── */
@media (max-width: 1100px) {
  .nav-links { gap: 1.6rem; }
  .contato-box { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-logo img { height: 36px; }
  .menu-open .site-nav { transform: none; background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }

  .sobre { grid-template-columns: 1fr; }
  .sobre-img { max-width: 560px; }
  .sobre-img .frame { aspect-ratio: 4 / 5; }

  .autorais-head, .videos { grid-template-columns: 1fr; }
  .autorais-head { margin-bottom: 2.5rem; }

  .setlist-intro { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }

  .contato-box { grid-template-columns: 1fr; }
  .contato-img { max-width: 560px; position: relative; top: auto; }
}

@media (max-width: 768px) {
  .js [data-reveal="left"], .js [data-reveal="right"] { transform: translateY(44px); }

  .hero-content { padding-right: calc(var(--gutter) + .5rem); }
  .hero-bg { object-position: 32% top; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-actions .btn { flex: 1 1 200px; }
  .hero-scroll { display: none; }

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

  .integrantes-header { margin-bottom: 2.5rem; }
  .integrantes-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    gap: .75rem;
    margin: 0 calc(var(--gutter) * -1);
    padding: 0 var(--gutter) .25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .integrantes-grid::-webkit-scrollbar { display: none; }
  .membro { aspect-ratio: 3 / 4; scroll-snap-align: start; }
  .swipe-hint {
    display: flex; justify-content: center; align-items: center; gap: .5rem;
    margin-top: 1.25rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #888;
  }
  .swipe-hint b { color: var(--red2); font-weight: 600; animation: nudge 1.4s ease-in-out infinite; }

  .video-meta { padding: 1.35rem 1.25rem 1.5rem; }
  .yt-play { width: 64px; height: 64px; margin: -32px 0 0 -32px; }
  .autorais-foot .btn { width: 100%; }

  .band-cutout img { max-height: 360px; }
  .js .playlist-grid.is-collapsed .playlist-item:nth-child(n+13) { display: none; }
  .js .setlist-more { display: flex; width: 100%; margin-top: 1.75rem; }

  .contato-box { padding: 2.25rem 1.25rem 1.5rem; gap: 2.25rem; }
  .contato-box::before { left: 1.25rem; }
  .contato-img::after { top: -8px; left: -8px; }
  .contato-cta { width: 100%; padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* telas de toque: sem hover, informação sempre visível */
@media (hover: none) {
  .membro-info { transform: none; }
  .membro-img { filter: grayscale(25%) brightness(0.8); }
  .yt img { filter: brightness(.85); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .ticker { animation: none !important; }
}
