/* Página pública da banda
   /b/ escuro · /a/ claro — mesmo layout; só as cores mudam. */

body.banda-page,
body.banda-page.plateia-app {
  --bb-bg: #000;
  --bb-fg: #fff;
  --bb-muted: rgba(255, 255, 255, 0.78);
  --bb-muted-2: rgba(255, 255, 255, 0.55);
  --bb-muted-3: rgba(255, 255, 255, 0.45);
  --bb-border: rgba(255, 255, 255, 0.1);
  --bb-border-soft: rgba(255, 255, 255, 0.08);
  --bb-surface: #121212;
  --bb-foto-bg: #1a1a1a;
  --bb-accent: #ff7700;
  --bb-accent-hover: #ff9933;
  --bb-link-hover-bg: rgba(255, 255, 255, 0.04);
  --bb-icone-bg: rgba(255, 119, 0, 0.12);
  --bb-ext: rgba(255, 255, 255, 0.35);
  --bb-foto-border: rgba(255, 255, 255, 0.12);
  --bb-tabs-bg: #0a0a0a;
  --bb-tabs-fg: rgba(255, 255, 255, 0.55);
  --bb-tabs-active-label: #fff;

  background: var(--bb-bg);
  color: var(--bb-fg);
}

body.banda-page--claro,
body.banda-page--claro.plateia-app {
  --bb-bg: #ffffff;
  --bb-fg: #1a1a1a;
  --bb-muted: #555555;
  --bb-muted-2: #777777;
  --bb-muted-3: #888888;
  --bb-border: #e8e8e8;
  --bb-border-soft: #eeeeee;
  --bb-surface: #f5f5f5;
  --bb-foto-bg: #ececec;
  --bb-accent: #ff7700;
  --bb-accent-hover: #e66a00;
  --bb-link-hover-bg: rgba(0, 0, 0, 0.03);
  --bb-icone-bg: rgba(255, 119, 0, 0.1);
  --bb-ext: #bbbbbb;
  --bb-foto-border: #dddddd;
  --bb-tabs-bg: #fff;
  --bb-tabs-fg: #555;
  --bb-tabs-active-label: #1a1a1a;
}

body.banda-page.plateia-app main,
body.banda-page.plateia-app:has(.pulse-header) main {
  max-width: 430px;
  width: 100%;
  margin: 0 auto 100px;
  padding: 0 0 24px;
  box-sizing: border-box;
  min-width: 0;
}

.banda-sell {
  padding-bottom: 8px;
}

.banda-voltar {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 8px 16px 10px;
  padding: 6px 0;
  color: var(--bb-accent);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  min-height: 40px;
}

.banda-voltar svg {
  width: 20px;
  height: 20px;
}

.banda-voltar:hover {
  color: var(--bb-accent-hover);
}

.show-topo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 16px 10px;
}

.show-topo-bar .banda-voltar {
  margin: 0;
}

.show-topo-bar .banda-estilo-chip {
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* —— Hero / stage (sempre contraste sobre a imagem) —— */
.banda-stage {
  position: relative;
  width: 100%;
  min-height: 200px;
  aspect-ratio: 2 / 1;
  background: linear-gradient(135deg, #1a120c 0%, #0a0a0a 55%, #2a1808 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.banda-stage.has-photo {
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banda-stage-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  pointer-events: none;
}

.banda-stage-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 16px;
}

.banda-stage-nome {
  margin: 0 0 4px;
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
}

.banda-stage-tagline {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

.banda-stage-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.banda-stage-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.banda-stage-social a:hover {
  border-color: #ff7700;
  background: rgba(255, 119, 0, 0.15);
  color: #ff7700;
}

.banda-stage-social svg {
  width: 15px;
  height: 15px;
}

.banda-stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.banda-stage-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.banda-btn-ouvir,
.banda-btn-fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}

.banda-btn-ouvir {
  background: #ff7700;
  color: #0a0a0a;
}

.banda-btn-ouvir:hover {
  background: #ff8f2a;
  color: #0a0a0a;
}

.banda-btn-fa {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
}

.banda-btn-fa:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.banda-btn-fa.is-seguindo {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.banda-btn-fa.is-seguindo svg {
  color: #e11d48;
  fill: #e11d48;
  stroke: #e11d48;
}

.banda-btn-fa:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.banda-seguir-form {
  display: inline-flex;
  margin: 0;
}

.banda-seguidores {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}

.banda-btn-ouvir svg,
.banda-btn-fa svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.banda-sell-pad {
  padding: 0 16px 24px;
}

/* —— Perfil —— */
.banda-perfil-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  padding: 20px 0 4px;
  border-bottom: 1px solid var(--bb-border);
  margin-bottom: 8px;
}

@media (min-width: 560px) {
  .banda-perfil-row {
    grid-template-columns: 110px minmax(0, 1fr) auto;
  }
}

.banda-perfil-foto {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: var(--bb-foto-bg) center / cover no-repeat;
  border: 1px solid var(--bb-foto-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bb-accent);
  font-size: 28px;
  font-weight: 800;
}

@media (min-width: 560px) {
  .banda-perfil-foto {
    width: 110px;
    height: 110px;
  }
}

.banda-perfil-nome {
  margin: 0 0 2px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--bb-fg);
}

.banda-perfil-user {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bb-accent);
}

.banda-perfil-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.banda-perfil-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--bb-muted);
}

.banda-perfil-meta svg {
  width: 15px;
  height: 15px;
  color: var(--bb-accent);
  flex-shrink: 0;
}

.banda-perfil-meta a {
  color: inherit;
  text-decoration: none;
}

.banda-perfil-meta a:hover {
  color: var(--bb-accent);
}

.banda-perfil-estilos {
  grid-column: 1 / -1;
}

@media (min-width: 560px) {
  .banda-perfil-estilos {
    grid-column: auto;
    text-align: right;
    min-width: 100px;
  }
}

.banda-perfil-estilos h3 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-accent);
}

.banda-estilo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

@media (min-width: 560px) {
  .banda-estilo-chips {
    justify-content: flex-end;
  }
}

.banda-estilo-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1.5px solid var(--bb-accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bb-accent);
}

/* —— Seções —— */
.banda-sec {
  padding: 22px 0 4px;
  border-bottom: 1px solid var(--bb-border);
}

.banda-sec:last-child {
  border-bottom: 0;
}

.banda-sec-titulo {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bb-fg);
}

.banda-show-list {
  margin: 0 -4px;
  padding-bottom: 4px;
}

/* Arte do show na página da banda: 4:5, como no cadastro */
.banda-show-list .dc-show-media {
  aspect-ratio: 4 / 5;
  width: 118px;
}

.banda-empty {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 119, 0, 0.08), transparent 50%),
    var(--bb-surface);
  border: 1px solid var(--bb-border-soft);
}

.banda-empty > svg {
  width: 36px;
  height: 36px;
  color: var(--bb-accent);
  flex-shrink: 0;
}

.banda-empty p {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bb-fg);
}

.banda-empty span {
  font-size: 13px;
  color: var(--bb-muted-2);
}

/* —— Galeria —— */
.banda-galeria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 480px) {
  .banda-galeria {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.banda-galeria-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--bb-foto-bg) center / cover no-repeat;
  cursor: pointer;
  overflow: hidden;
}

.banda-galeria-thumb:hover {
  outline: 2px solid var(--bb-accent);
  outline-offset: 1px;
}

/* —— Links —— */
.banda-links-card {
  border-radius: 14px;
  background: var(--bb-surface);
  border: 1px solid var(--bb-border-soft);
  padding: 16px;
}

.banda-link-grupo + .banda-link-grupo {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--bb-border-soft);
}

.banda-link-cat {
  margin: 0 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--bb-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bb-accent);
  line-height: 1.2;
}

.banda-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  text-decoration: none;
  color: var(--bb-fg);
  border-radius: 8px;
}

.banda-link-item:hover {
  background: var(--bb-link-hover-bg);
}

.banda-link-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bb-icone-bg);
  color: var(--bb-accent);
  flex-shrink: 0;
}

.banda-link-icone svg {
  width: 16px;
  height: 16px;
}

.banda-link-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.banda-link-meta strong {
  font-size: 14px;
  font-weight: 700;
}

.banda-link-meta span {
  font-size: 12px;
  color: var(--bb-muted-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.banda-link-ext {
  width: 16px;
  height: 16px;
  color: var(--bb-ext);
  flex-shrink: 0;
}

/* Tabs */
body.banda-page.plateia-app .plateia-tabs-light {
  background: var(--bb-tabs-bg);
  border-top-color: var(--bb-border);
}

body.banda-page.plateia-app .plateia-tabs-light a {
  color: var(--bb-tabs-fg) !important;
}

body.banda-page.plateia-app .plateia-tabs-light a.tab-active {
  color: var(--bb-accent) !important;
}

body.banda-page.plateia-app .plateia-tabs-light a.tab-active span {
  color: var(--bb-tabs-active-label) !important;
}

/* —— Página do show (/s/ · /e/) —— */
.show-stage-artista {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.banda-perfil-user a {
  color: inherit;
  text-decoration: none;
}

.banda-perfil-user a:hover {
  text-decoration: underline;
}

.show-acao-chips {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 4px;
}

.show-acao-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}

.show-acao-chips form,
.show-acao-row form {
  display: flex;
  margin: 0;
}

.show-acao-chips .banda-estilo-chip {
  cursor: pointer;
  background: transparent;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  justify-content: center;
  padding: 3px 8px;
  border-width: 1px;
  line-height: 1.2;
}

.show-acao-chips .banda-estilo-chip.is-active {
  background: var(--bb-accent);
  color: #0a0a0a;
  border-color: var(--bb-accent);
}

.show-acao-chips .banda-estilo-chip:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.show-acao-chips .banda-estilo-chip.is-fa {
  gap: 4px;
}

.show-acao-chips .banda-estilo-chip.is-fa svg {
  width: 11px;
  height: 11px;
}

.show-acao-chips .banda-estilo-chip.is-seguindo svg {
  color: #e11d48;
  fill: #e11d48;
  stroke: #e11d48;
}

/* Show: foto | titulo | acoes */
.show-sell .show-perfil-head {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 10px 12px;
  padding-bottom: 12px;
  margin-bottom: 0;
  border-bottom: 0;
}

.show-sell .banda-perfil-estilos {
  grid-column: auto;
  text-align: right;
  justify-self: end;
  align-self: start;
  width: auto;
  max-width: 9.5rem;
  min-width: 0;
}

.show-sell .banda-perfil-estilos h3 {
  margin: 0 0 4px;
  font-size: 9px;
}

.show-sell .banda-perfil-foto {
  width: 64px;
  height: 64px;
}

.show-sell .banda-perfil-nome {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.show-sell .banda-perfil-info {
  min-width: 0;
  align-self: center;
}

.show-perfil-dados {
  padding: 0 0 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--bb-border);
}

.show-perfil-dados .banda-perfil-user {
  margin: 0 0 2px;
  font-size: 13px;
}

.show-artista-nome {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bb-fg, #fff);
}

.show-perfil-dados .banda-perfil-meta {
  margin-top: 2px;
}

@media (min-width: 560px) {
  .show-sell .show-perfil-head {
    grid-template-columns: 88px minmax(0, 1fr) auto;
  }
  .show-sell .banda-perfil-foto {
    width: 88px;
    height: 88px;
  }
  .show-sell .banda-perfil-estilos {
    max-width: 12rem;
  }
  .show-acao-chips .banda-estilo-chip {
    font-size: 11px;
    padding: 4px 10px;
  }
}

.show-confirmados {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--bb-muted, rgba(255, 255, 255, 0.65));
  text-align: right;
}

.show-local-nome {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--bb-fg);
}

.show-local-end {
  margin: 0;
  font-size: 14px;
  color: var(--bb-muted);
}

.show-local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.show-local-actions .banda-btn-fa,
.show-btn-device {
  color: var(--bb-fg);
  border-color: rgba(127, 127, 127, 0.45);
  opacity: 1;
  cursor: pointer;
}

body.banda-page--claro .show-local-actions .banda-btn-fa,
body.banda-page--claro .show-btn-device {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.show-obs {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bb-muted);
}

.show-artista-link {
  background: var(--bb-surface);
  border: 1px solid var(--bb-border-soft);
  padding: 12px 14px;
  border-radius: 14px;
}
