/* ============================================
   COGUMELO PLUTÃO — MINIMAL BLACK
   Montserrat only. Black. Breath. Less is more.
   ============================================ */

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

:root {
  --black: #000;
  --dark: #0a0a0a;
  --gray-1: #111;
  --gray-2: #1a1a1a;
  --gray-3: #888;
  --gray-4: #aaa;
  --white: #f0f0f0;
  --white-dim: rgba(240,240,240,0.4);
  --font: 'Montserrat', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }
ul { list-style: none; }
strong { font-weight: 600; }
em { font-style: italic; }

::selection { background: #fff; color: #000; }

/* =========== NAV =========== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 64px;
  transition: background 0.4s;
}
#nav.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav-logo img { height: 30px; opacity: 0; transition: opacity 0.3s; }
#nav.scrolled .nav-logo img { opacity: 0.7; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }

/* Burger */
.burger { display: none; width: 24px; flex-direction: column; gap: 6px; }
.burger span { height: 1px; background: var(--white); display: block; transition: 0.3s var(--ease); }
.burger.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile */
.mob {
  position: fixed; inset: 0; z-index: 99;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: 0.4s var(--ease);
}
.mob.open { opacity: 1; visibility: visible; }
.mob a {
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}
.mob a:hover { color: var(--white); }

/* =========== HERO =========== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,0,0,.55) 1px, transparent 1.5px);
  background-size: 4px 4px;
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.25);
  opacity: 0;
  animation: slideshow 30s ease-in-out infinite;
  transform: scale(1.05);
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }
.hero-slide:nth-child(6) { animation-delay: 25s; }

@keyframes slideshow {
  0%      { opacity: 0; transform: scale(1.08); }
  3%      { opacity: 1; transform: scale(1.05); }
  16.66%  { opacity: 1; transform: scale(1); }
  20%     { opacity: 0; transform: scale(1); }
  100%    { opacity: 0; transform: scale(1.08); }
}

.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1.5s var(--ease) 0.3s forwards;
}
.hero-logo {
  width: clamp(280px, 50vw, 600px);
  height: auto;
  filter: brightness(10);
}
.hero-foot {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1s forwards;
}
.hf-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-3);
}

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

/* =========== NUMBERS =========== */
#nums {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--gray-2);
}
.nums-row {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
}
.num-v {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}
.num-s {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
}
.num-l {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-3);
}

/* =========== STATEMENT =========== */
#statement {
  padding: clamp(5rem, 12vw, 10rem) 2rem;
  text-align: center;
}
.stmt {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 200;
  line-height: 1.8;
  color: var(--gray-4);
}
.stmt em {
  color: var(--white);
  font-weight: 400;
}

/* =========== SECTIONS =========== */
.sec {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-top: clamp(5rem, 10vw, 8rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.sec-n {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gray-3);
}
.sec-head h2 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* =========== HISTORIA =========== */
#historia { padding-bottom: clamp(4rem, 8vw, 7rem); }

.hist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.hist-text p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-4);
  margin-bottom: 1.2rem;
}
.hist-text strong { color: var(--white); font-weight: 500; }
.hist-text em { color: var(--white); }
.hist-img { overflow: hidden; }
.hist-img img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: filter 0.5s;
}
.hist-img:hover img { filter: grayscale(0); }

.hist-toggle {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.6rem;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-3);
  background: transparent;
  border: 1px solid var(--gray-2);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.hist-toggle:hover { border-color: var(--white); color: var(--white); }

/* =========== MODAL =========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  width: min(720px, 92vw);
  max-height: 86vh;
  overflow-y: auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
.modal[aria-hidden="false"] .modal-panel { transform: translateY(0); }
.modal-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
  padding-right: 2.5rem;
}
.modal-body p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-4);
  margin-bottom: 1.2rem;
}
.modal-body strong { color: var(--white); font-weight: 500; }
.modal-body em { color: var(--white); }
.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gray-3);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}
.modal-close:hover { color: var(--white); transform: rotate(90deg); }
body.modal-open { overflow: hidden; }

.band-members {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.5rem;
  margin-top: 1rem;
}
.band-members span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-3);
  letter-spacing: 0.03em;
}

/* Timeline horizontal */
.tl-hint {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.tl-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2rem 0 3rem;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tl-wrap::-webkit-scrollbar { display: none; }
.tl-wrap.grabbing { cursor: grabbing; }
.tl-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  min-width: max-content;
}
.tl-line {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-2);
}
.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  padding: 0 0.75rem;
  text-align: center;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.tl-node.visible {
  opacity: 1;
  transform: none;
}
.tl-y {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-3);
  margin-bottom: 0.6rem;
}
.tl-disc {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gray-1);
  background-size: cover;
  background-position: center;
  margin-bottom: 0.8rem;
  flex-shrink: 0;
  position: relative;
  transition: box-shadow 0.4s;
  box-shadow: 0 0 0 2px var(--gray-2);
  animation: spin 3s linear infinite;
  animation-play-state: paused;
}
.tl-disc-hole {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gray-2);
  z-index: 1;
}
.tl-node[data-sid] { cursor: pointer; }
.tl-node:hover .tl-disc {
  animation-play-state: running;
  box-shadow: 0 0 0 2px var(--gray-3), 0 0 24px rgba(255,255,255,0.06);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.tl-t {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gray-4);
  line-height: 1.4;
  max-width: 110px;
  transition: color 0.3s;
}
.tl-node:hover .tl-t { color: var(--white); }

/* =========== A BANDA =========== */
#banda { padding-bottom: clamp(4rem, 8vw, 7rem); }

.banda-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 180px));
  gap: clamp(1rem, 2vw, 2.5rem);
  justify-content: center;
}
.banda-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.banda-img {
  overflow: hidden;
  background: var(--gray-1);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-bottom: 1rem;
  width: 100%;
}
.banda-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
  transition: transform 0.6s var(--ease), filter 0.5s;
}
.banda-card:hover .banda-img img {
  transform: scale(1.05);
  filter: grayscale(0);
}
.banda-role {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 0.3rem;
}
.banda-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 0.55rem;
}
.banda-bio {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--gray-4);
}
.banda-bio em { color: var(--white); }

.banda-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--gray-3);
  transition: color 0.3s, transform 0.3s;
  align-self: center;
}
.banda-ig:hover { color: var(--white); transform: scale(1.12); }
.banda-ig-ico {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* =========== DESTAQUE =========== */
#destaque {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin: clamp(2rem, 4vw, 4rem) 0;
}
.dest-bg {
  position: absolute; inset: 0;
}
.dest-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.15) grayscale(0.5);
}
.dest-inner {
  position: relative; z-index: 2;
  padding: 4rem 2rem;
  max-width: 550px;
}
.dest-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}
.dest-inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.dest-inner p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray-4);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.8rem 2.5rem;
  border: 1px solid var(--white);
  transition: background 0.3s, color 0.3s;
}
.btn:hover {
  background: var(--white);
  color: var(--black);
}

/* =========== LIVRO =========== */
#livro {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
}
.livro-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.livro-cover {
  flex-shrink: 0;
  display: block;
  width: clamp(140px, 18vw, 200px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  transition: transform 0.4s var(--ease);
}
.livro-cover img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.4s;
  filter: grayscale(0.15);
}
.livro-cover:hover { transform: translateY(-4px); }
.livro-cover:hover img { filter: grayscale(0); }
.livro-text { flex: 1; min-width: 0; }
.livro-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 0.7rem;
}
.livro-text h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.livro-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray-4);
  line-height: 1.5;
  max-width: 540px;
  margin-bottom: 1.4rem;
}
@media (max-width: 768px) {
  .livro-bar { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .livro-cover { width: 160px; }
}

/* =========== DISCOGRAFIA =========== */
#musica { padding-bottom: clamp(4rem, 8vw, 7rem); }

/* Discography grid */
.disco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  align-items: start;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-bottom: 3rem;
}
.disco-item iframe {
  border-radius: 8px;
  display: block;
  height: 152px;
}
.disco-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-3);
}
.disco-static {
  position: relative;
  overflow: hidden;
  background: var(--gray-1);
  border-radius: 8px;
  height: 152px;
  max-height: 152px;
}
.disco-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: filter 0.4s;
}
.disco-static:hover img { filter: grayscale(0); }
.disco-static-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.disco-static-info span {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Plataformas */
.plat {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-2);
}
.plat a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gray-2);
  transition: border-color 0.3s, color 0.3s;
}
.plat a:hover {
  border-color: var(--white);
  color: var(--white);
}
.plat-ico {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* =========== GALERIA =========== */
#galeria { padding-bottom: clamp(4rem, 8vw, 7rem); }

.gal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.gal-col { display: flex; flex-direction: column; gap: 3px; }
.gal-item { overflow: hidden; background: var(--gray-1); }
.gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.5s;
  filter: grayscale(0.5);
}
.gal-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0);
}

/* =========== CONTATO =========== */
#contato { padding-bottom: clamp(5rem, 10vw, 8rem); }

.ct-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.ct-block h3 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin: 0 auto 1.2rem;
  padding: 0 1.5rem 0.8rem;
  border-bottom: 1px solid var(--gray-2);
  display: inline-block;
}
.ct-block p {
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.ct-block a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-4);
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.ct-block a:hover { color: var(--white); }

/* Contato form */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 520px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  text-align: left;
}
.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.ct-form input[type=text],
.ct-form input[type=email],
.ct-form textarea {
  background: transparent;
  border: 1px solid var(--gray-2);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.75rem 0.95rem;
  transition: border-color 0.3s;
  width: 100%;
}
.ct-form input::placeholder,
.ct-form textarea::placeholder {
  color: var(--gray-3);
}
.ct-form input:focus,
.ct-form textarea:focus {
  outline: none;
  border-color: var(--gray-4);
}
.ct-form textarea {
  resize: vertical;
  min-height: 120px;
}
.ct-form .btn {
  align-self: flex-start;
  background: transparent;
  cursor: pointer;
  margin-top: 0.4rem;
}
.ct-captcha {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-3);
  margin-top: 0.2rem;
}
.ct-captcha-label {
  white-space: nowrap;
}
.ct-captcha-label strong {
  color: var(--white);
  font-weight: 500;
  font-size: 1.05em;
  letter-spacing: 0.02em;
}
.ct-captcha input[type=text] {
  width: 100px;
  flex-shrink: 0;
  text-align: center;
}
.ct-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}
.ct-form-msg {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray-3);
  min-height: 1.2em;
  margin-top: 0.4rem;
}
.ct-form-msg.ok { color: var(--white); }
.ct-form-msg.err { color: #d97070; }
@media (max-width: 480px) {
  .ct-form-row { grid-template-columns: 1fr; }
}

/* =========== FOOTER =========== */
footer {
  border-top: 1px solid var(--gray-2);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}
.foot {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.foot-logo { margin-bottom: 2rem; }
.foot-logo img { height: 72px; margin: 0 auto; opacity: 0.55; }
.foot-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem 2rem;
  margin-bottom: 2rem;
}
.foot-members span {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gray-3);
}
.foot-copy {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray-3);
}

/* =========== REVEAL =========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-logo img { opacity: 0.7 !important; }

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

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

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

  .gal { grid-template-columns: repeat(2, 1fr); }
  .gal-hide-mobile { display: none; }

  .banda-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; }
  .banda-name { font-size: 0.78rem; }
  .banda-role { font-size: 0.5rem; letter-spacing: 0.14em; }

  .foot-members { flex-direction: column; gap: 0.3rem; }
}

@media (max-width: 480px) {
  .tl-item { grid-template-columns: 60px 1fr; gap: 1rem; }
  .disco-grid { grid-template-columns: 1fr; }
  .banda-grid { gap: 0.5rem; }
  .banda-name { font-size: 0.7rem; }
  .banda-role { display: none; }
}

/* lightbox */
.lb{position:fixed;inset:0;z-index:1000;background:rgba(8,8,9,.93);display:none;align-items:center;justify-content:center;padding:4vw;cursor:zoom-out;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}
.lb.on{display:flex}
.lb img{max-width:94vw;max-height:92vh;object-fit:contain;border:1px solid rgba(255,255,255,.12);box-shadow:0 30px 90px rgba(0,0,0,.7)}
.lb-x{position:absolute;top:18px;right:28px;color:#fff;font-size:2.2rem;line-height:1;opacity:.7}
.gal-item img{cursor:zoom-in}
