:root {
  --bg-main: #050509;
  --bg-dark: #070710;
  --bg-card: #111018;
  --text-main: #ffffff;
  --text-muted: #b5b5c3;
  --accent: #b339ff;
  --accent-soft: rgba(179, 57, 255, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --transition-fast: 0.25s ease;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.6);
  --radius-pill: 999px;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppis Fino", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151022 0, #050509 55%);
  color: var(--text-main);
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(5,5,9,0.95), rgba(5,5,9,0.7), transparent);
  backdrop-filter: blur(16px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 42px;
}

.main-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
  color: var(--text-muted);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.main-nav a:hover {
  color: var(--text-main);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--accent);
}

.header-contact a {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Toggle mobile */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin-left: 1rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #fff;
}


/* Social inline (header + footer) */

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-muted);
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.social-link img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
}


.social-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Footer social layout */

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-right .social-links {
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-right .social-links {
    justify-content: flex-start;
  }
}
/* Hero */

.hero {
  position: relative;
  min-height: 100vh;  /* fullscreen */
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 72px;  /* espaço do header fixo */
  z-index: 0;
}

/* Background fixo + zoom com entrada fosca */
.hero::before {
  content: "";
  position: fixed;         /* fica preso na tela, criando efeito parallax */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: brightness(1.15);
  will-change: transform, opacity, filter;
  pointer-events: none;
  z-index: -2;
  animation:
    heroIntro 1.2s ease-out forwards,
    heroZoom 16s ease-in-out 1.2s infinite alternate;
  filter: grayscale(0.85);
}

/* Imagens de fundo */
.hero-home::before    { background-image: url("../img/hero-home.jpg"); }
.hero-shows::before   { background-image: url("../img/hero-shows.jpg"); }
.hero-eventos::before { background-image: url("../img/hero-shows.jpg"); }
.hero-contato::before { background-image: url("../img/hero-contato.jpg"); }

/* Entrada fosca: blur + fade-in */
@keyframes heroIntro {
  0% {
    opacity: 0;
    filter: blur(8px) brightness(0.95);
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1.12);
    transform: scale(1.08);
  }
}

/* Zoom contínuo mais rápido */
@keyframes heroZoom {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1.18); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,9,0.94), rgba(5,5,9,0.8), rgba(5,5,9,0.3));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
}

.hero-single {
  grid-template-columns: 1fr;
  text-align: left;
}

.hero-split {
  align-items: center;
}

.hero-text h1,
.hero-content h1 {
  font-size: clamp(2.4rem, 3vw + 1.2rem, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 30rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-right {
  align-self: center;
}

.pix-key {
  margin-top: 1.2rem;
}

.section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(5,5,9,1), #050509);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px var(--accent-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px var(--accent-soft);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn.full {
  width: 100%;
}

/* Events */

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.events-grid.big {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.event-card {
  position: relative;
  border-radius: 24px;
  padding: 1.6rem 1.6rem 1.3rem;
  background: radial-gradient(circle at top, rgba(179,57,255,0.18), rgba(5,5,9,0.96));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(179,57,255,0.25), transparent 55%);
  opacity: 0.35;
  pointer-events: none;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
  border-color: var(--accent);
  background: radial-gradient(circle at top, rgba(179,57,255,0.26), rgba(5,5,9,1));
}

.event-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: flex-start;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.2rem;
  min-width: 4.2rem;
}

.event-date .day {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 800;
}

.event-date .month {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.event-info {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
}

.event-info .weekday {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.event-info h2 {
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
}

.event-info .time,
.event-info .address {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.15rem 0;
}

.event-info .time::before,
.event-info .address::before {
  content: "";
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
}

.event-info .time::before {
  box-shadow: 0 0 0 1px rgba(179,57,255,0.5);
}

.event-info .address::before {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

.event-photo {
  position: relative;
  z-index: 1;
  margin-top: 0.6rem;
  border-radius: 18px;
  overflow: hidden;
}

.event-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.event-card:hover .event-photo img {
  transform: scale(1.06);
  filter: brightness(1.15);
}

@media (max-width: 640px) {
  .event-main {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .event-date {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .event-date .day {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 800;
}

  .event-date .month {
    font-size: 0.8rem;
  }
}


/* Events table */

.events-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
}

.events-table th,
.events-table td {
  padding: 0.35rem 0.6rem;
  font-size: 0.78rem;
}

.events-table thead {
  background: rgba(179,57,255,0.12);
}

.events-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

/* Contact */

.hero-contact-text .dot {
  color: var(--accent);
}

.hero-contact-text p {
  color: var(--text-muted);
}

.big-phone {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.hero-contact-form {
  background: rgba(5,5,9,0.92);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: var(--text-main);
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.alert {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--accent);
  font-size: 0.85rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  background: #050509;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Admin tweaks */

.admin-header {
  background: #050509;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header h1 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.admin-main {
  padding: 1.5rem;
}

.admin-nav a {
  font-size: 0.9rem;
  margin-left: 1rem;
  opacity: 0.8;
}

.admin-nav a:hover {
  opacity: 1;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #111018;
  border-radius: 16px;
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
}

.admin-table thead {
  background: rgba(179,57,255,0.12);
}

.admin-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}

.admin-actions a {
  font-size: 0.8rem;
  margin-right: 0.4rem;
  text-decoration: underline;
}

.admin-form {
  max-width: 640px;
  background: #111018;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.admin-form label {
  font-size: 0.85rem;
  display: block;
  margin-top: 0.8rem;
  margin-bottom: 0.2rem;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  padding: 0.55rem 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
}

.admin-form .inline {
  display: flex;
  gap: 1rem;
}

.admin-form .inline > div {
  flex: 1;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text p {
    max-width: 100%;
  }

  .social-bar {
    left: 0.5rem;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(5,5,9,0.98);
    padding: 1.5rem;
    min-width: 200px;
    transform: translateX(100%);
    transition: transform var(--transition-fast);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: block;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-contact-form {
    margin-top: 2rem;
  }
}


html {
  scroll-behavior: smooth;
}

/* Scroll reveal between sections */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}





.maps-link {
  margin-top: 0.35rem;
}

.maps-link a {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--accent);
  font-weight: 500;
}

.maps-link a:hover {
  text-decoration: underline;
}


/* Hero backgrounds (.webp overrides) */
.hero-home::before    { background-image: url("../img/home.webp"); }
.hero-shows::before   { background-image: url("../img/shows.webp"); }
.hero-eventos::before { background-image: url("../img/eventos.webp"); }
.hero-contato::before { background-image: url("../img/contato.webp"); }



#shows {
  background-image: url("../img/shows.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#eventos {
  background-image: url("../img/eventos.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.poster-link {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--text-muted);
  cursor: pointer;
}

.poster-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.poster-link:hover {
  color: var(--text-main);
}

.poster-link:hover::after {
  width: 100%;
}


/* Poster modal */
.poster-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.poster-modal.is-open {
  display: flex;
}

.poster-modal-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(160, 90, 255, 0.55), rgba(20, 8, 28, 0.72) 55%),
              linear-gradient(135deg, rgba(120, 40, 200, 0.40), rgba(10, 6, 14, 0.78));
  backdrop-filter: blur(10px) saturate(135%);
  -webkit-backdrop-filter: blur(10px) saturate(135%);
}

.poster-modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 780px;
  width: 92%;
  max-height: 90vh;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(120, 55, 200, 0.22), rgba(20, 10, 30, 0.62));
  border: 1px solid rgba(205, 165, 255, 0.22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
}

.poster-modal-close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  background: rgba(120, 55, 200, 0.20);
  border: 1px solid rgba(205, 165, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 1.2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.poster-modal-close:hover {
  transform: scale(1.06);
  background: rgba(160, 90, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.22);
}

.poster-modal-body {
  padding: 1.6rem 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.poster-modal-body img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(5, 5, 9, 0.55);
}

.poster-modal-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
}


body.modal-open { overflow: hidden; }


.admin-two-col {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1rem;
}

.admin-two-col .admin-form {
  flex: 0 0 520px;
}

.event-preview-panel {
  flex: 1;
  min-height: 360px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at top, #1a1224, #050509);
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-preview-title {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.event-card-preview {
  background: rgba(5,5,12,0.9);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}

.event-card-preview .event-photo.preview-photo {
  height: 220px;
}

.event-card-preview .event-photo.preview-photo img {
  object-fit: cover;
}

.preview-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsivo: empilhar no mobile */
@media (max-width: 960px) {
  .admin-two-col {
    flex-direction: column;
  }

  .admin-two-col .admin-form {
    flex: 1;
    max-width: 100%;
  }
}



/* Cards de próximos eventos clicáveis (abre foto) */
.event-card.js-upcoming-card {
  cursor: pointer;
}


/* Hero Integrantes usa mesmo background da home */
.hero-integrantes::before {
  background-image: url("../img/home.webp");
}

/* Scrollbar global mais fina e na cor do site */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--accent), #6d1bb8);
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #d05cff, var(--accent));
}

/* ======================================================
   Integrantes - galeria + painel lateral
   ====================================================== */
.integrantes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: stretch;
}

.integrantes-photos {
  display: flex;
  flex-direction: row;
  gap: 0.9rem;
  align-items: stretch;
  justify-content: flex-start;
}

.integrante-thumb {
  position: relative;
  flex: 1 1 0;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(10,10,16,0.9);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
  transform-origin: center;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast),
    opacity var(--transition-fast);
}

.integrante-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.2);
}

.integrante-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,9,0.92), transparent 45%);
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.integrante-thumb.is-active,
.integrante-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.85);
}

.integrante-thumb.is-active img {
  filter: grayscale(0);
}

.integrante-thumb.is-active::after {
  opacity: 0.45;
}

/* Painel lateral */
.integrante-detalhe {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.5fr);
  gap: 1.6rem;
  background: radial-gradient(circle at top left, rgba(179,57,255,0.18), #050509);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.8rem;
  overflow: hidden;
}

.integrante-detalhe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(179,57,255,0.5), transparent 65%);
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: screen;
}

.integrante-detalhe > * {
  position: relative;
  z-index: 1;
}

.integrante-detalhe-foto img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 45px rgba(0,0,0,0.85);
}

.integrante-detalhe-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
}

.integrante-detalhe-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.integrante-detalhe-nome {
  font-size: 1.7rem;
  margin: 0;
}

.integrante-detalhe-role {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.integrante-detalhe-bio {
  font-size: 0.95rem;
  color: var(--text-main);
  max-width: 36rem;
}

/* Texto institucional abaixo dos cards de Integrantes */
.banda-laila-text {
  grid-column: 1 / -1;
  margin-top: 2rem;
  max-width: 900px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
}

.banda-laila-text p + p {
  margin-top: 0.75rem;
}

/* Responsivo Integrantes */
@media (max-width: 1024px) {
  .integrantes-layout {
    grid-template-columns: 1fr;
  }

  .integrantes-photos {
    order: 2;
    overflow-x: auto;
    padding-bottom: 0.4rem;
  }

  .integrante-thumb {
    max-width: 160px;
  }

  .integrante-detalhe {
    order: 1;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 720px) {
  .integrante-detalhe {
    grid-template-columns: 1fr;
  }

  .integrantes-photos {
    justify-content: flex-start;
  }
}

/* ======================================================
   O que já rolou - mini tabela em grid (4 colunas)
   ====================================================== */
.events-grid.events-grid--past {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.event-mini-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.event-mini-avatar {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0%, rgba(179,57,255,0.45), #050509);
  padding: 0;
  cursor: pointer;
}

.event-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-mini-avatar--noimage span {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.event-mini-meta {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
}

.event-mini-meta p,
.event-mini-meta h3 {
  line-height: 1.05;
}

.event-mini-date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-muted);
}

.event-mini-title {
  font-size: 0.9rem;
  margin: 0;
}

.event-mini-title a {
  color: inherit;
  text-decoration: none;
}

.event-mini-title a:hover {
  color: var(--accent);
}

.event-mini-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsivo: reduzir colunas */
@media (max-width: 1100px) {
  .events-grid.events-grid--past {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .events-grid.events-grid--past {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .events-grid.events-grid--past {
    grid-template-columns: 1fr;
  }
}

/* Paginação "O que já rolou!" */
.events-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

/* Abas de ano (Todos / ano atual / anos anteriores)
   Objetivo: manter visual glass violeta, com o botão ativo em destaque (glow) e os demais discretos. */
.events-year-tabs {
  margin-top: 0.65rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  flex-wrap: wrap;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.year-tab {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.05rem;
  height: 2.05rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(179, 57, 255, 0.06);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    opacity 0.18s ease;
}

.year-tab:not(.is-active) {
  opacity: 0.90;
}

.year-tab:hover {
  transform: translateY(-1px);
  opacity: 1;
  border-color: rgba(179, 57, 255, 0.50);
  background: rgba(179, 57, 255, 0.14);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.year-tab:focus-visible {
  outline: none;
  opacity: 1;
  box-shadow:
    0 0 0 3px rgba(179, 57, 255, 0.30),
    0 10px 24px rgba(0, 0, 0, 0.45);
}

/* Botão ativo: leve glow violeta + contraste máximo */
.year-tab.is-active {
  opacity: 1;
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, rgba(179, 57, 255, 0.95), rgba(109, 27, 184, 0.95));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.10) inset,
    0 12px 28px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(179, 57, 255, 0.34);
  transform: translateY(-1px);
}

.year-tab.is-active::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(179, 57, 255, 0.55), rgba(179, 57, 255, 0.0) 70%);
  filter: blur(10px);
  opacity: 0.85;
  pointer-events: none;
  z-index: -1;
}

/* Ano atual (quando NÃO estiver ativo): apenas um contorno sutil, sem etiqueta visível */
.year-tab.is-current:not(.is-active) {
  opacity: 0.95;
  border-color: rgba(205, 165, 255, 0.30);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 1px rgba(179, 57, 255, 0.22);
}

.events-empty {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--text-muted);
}

.page-dot {
  min-width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-muted);
  background: rgba(5,5,9,0.9);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
  cursor: pointer;
}

.page-dot:hover:not(:disabled) {
  border-color: var(--accent);
  color: #fff;
}

.page-dot.is-active {
  background: linear-gradient(135deg, var(--accent), #6d1bb8);
  color: #fff;
  border-color: transparent;
}

.page-dot:disabled {
  opacity: 0.4;
  cursor: default;
}

.page-arrow {
  font-weight: 700;
}



/* Barra de controles (filtros + paginação) em "O que já rolou!" */
.events-controls {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.events-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.events-filter-select {
  min-width: 190px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(5,5,9,0.9);
  color: var(--text-main);
  font-size: 0.85rem;
}

.events-filter-select:focus {
  outline: none;
  border-color: var(--accent);
}

.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;
}

@media (max-width: 640px) {
  .events-controls {
    align-items: flex-start;
  }
}


/* ======================================================
   Seções SHOWS e EVENTOS com background e zoom suave
   ====================================================== */
.section-bg-zoom {
  position: relative;
  overflow: hidden;
}

.section-bg-zoom::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.08);
  will-change: transform, opacity;
  z-index: -1;
  animation: heroZoom 22s ease-in-out infinite alternate;
}

.section-bg-zoom--shows::before {
  background-image: url("../img/shows.webp");
}

.section-bg-zoom--eventos::before {
  background-image: url("../img/eventos.webp");
}



/* Ajuste fino de espaçamento interno dos cards de "O que já rolou!" */
.event-mini-date {
  margin: 0.02rem 0 0.02rem;
}

.event-mini-city {
  margin: 0;
}
