body {
  animation: fadePage 0.4s ease;
}

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

.hero-banda {
  background: url('../img/gallery/gallery10.JPG') center/cover no-repeat;
}

/* más oscuro que home */
.hero-banda .hero-overlay {
  background: rgba(0,0,0,0.75);
}


@media (max-width: 768px) {
  .hero {
    background-image: url("../img/banner_mobile.png");
    background-position: center;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.1) 10%,
      rgba(0,0,0,0.1) 20%,
      rgba(0,0,0,0.2) 1000%
    );
    z-index: 1;
  }
}

.subtitle {
  color: #aaa;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.member-card {
  position: relative;
  overflow: hidden;
}

.member-card img {
  width: 100%;
  filter: grayscale(100%);
  transition: 0.4s;
}

.member-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.member-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, #000, transparent);
}

.member-card {
  position: relative;
  overflow: hidden;
  background: #000;
}

/* imagen */
.member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(100%) brightness(0.7);
  transition: all 0.5s ease;
}

/* overlay */
.member-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;

  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);

  transform: translateY(100%);
  transition: all 0.4s ease;
}

/* nombre */
.member-name {
  margin: 0;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* rol */
.member-role {
  font-size: 0.7rem;
  color: #aaa;
}

/* hover */
.member-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.member-card:hover .member-overlay {
  transform: translateY(0);
}

.member-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 0%;
  height: 2px;
  background: #e50914;

  transition: 0.4s;
}

.member-card:hover::after {
  width: 100%;
}

.member-card:hover {
  box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2);
}

.banda-closing {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background: #000;
  overflow: hidden;
}

/* glow agresivo */
.banda-closing::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 600px;
  height: 600px;

  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(229,9,20,0.15), transparent 70%);
}

/* contenido */
.closing-content {
  position: relative;
  z-index: 2;
}

/* título */
.closing-title {
  font-size: clamp(32px, 6vw, 64px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

/* texto */
.closing-text {
  color: #aaa;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* botones */
.closing-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@keyframes breatheRed {
  0%,100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.banda-closing::before {
  animation: breatheRed 6s ease-in-out infinite;
}

.members .row {
  max-width: 900px;
  margin: auto;
}
