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

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #313131;
  -webkit-font-smoothing: antialiased;
}

#app {
  min-height: 100vh;
}

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

button {
  font: inherit;
}

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

p {
  margin: 0;
}

h1, h2, h3 {
  margin: 0;
}

/* Vista */
.vista {
  min-height: 100vh;
  background: #fff;
}

.contenedor-page-tabs {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 24px;
}

.back-color-blanco {
  background: #fff;
}

.estado-msg {
  padding: 48px 16px;
  text-align: center;
  color: #717171;
  font-size: 14px;
}

.estado-error {
  color: #b60825;
}

.aviso-mock {
  font-size: 11px;
  color: #a7a6a6;
  margin-bottom: 16px;
}

/* Nav */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eeeeee;
}

.nav-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: 720px;
  margin: 0 auto;
}

.nav-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Hero */
.banda-hero {
  position: relative;
  height: 256px;
  background-color: #1a1a1a;
  overflow: hidden;
}

.banda-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.banda-hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.banda-hero-title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

/* Tipografía utilitaria */
.letra-blanco-24 {
  color: #fff;
  font-size: 24px;
  margin: 0;
  letter-spacing: 0.04em;
}

.letra-blanco-14 { color: #fff; font-size: 14px; }
.letra-blanco-12 { color: #fff; font-size: 12px; }
.letra-gray4-12 { color: #313131; font-size: 12px; }
.letra-gray3-12 { color: #717171; font-size: 12px; }
.letra-azul1-12 { color: #035fff; font-size: 12px; }
.letra-negro-14 { color: #1a1a1a; font-size: 14px; }

.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 4px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 24px; }
.px-3 { padding-left: 16px; padding-right: 16px; }
.pt-3 { padding-top: 16px; }
.py-3 { padding-top: 16px; padding-bottom: 16px; }
.pb-2 { padding-bottom: 8px; }

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #035fff;
}

.stat-icon {
  width: 14px;
  height: 14px;
}

/* Galería */
.scroll-x {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-x::-webkit-scrollbar { display: none; }

.galeria-item {
  flex: 0 0 30vw;
  max-width: 140px;
  aspect-ratio: 1;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  background: #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fechas */
.fechas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.fecha-card {
  background-color: #9ca3af;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

/* Merch */
.merch-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.merch-container::-webkit-scrollbar { display: none; }

.merch-item {
  flex-shrink: 0;
  width: 96px;
}

.merch-item-img-wrapper {
  aspect-ratio: 1;
  background: #f3f4f6;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.merch-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-spacer {
  height: 110px;
}

/* Store footer */
.store-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #fffffff5;
  border-top: 1px solid #eeeeee;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
  padding: 10px 28px calc(10px + env(safe-area-inset-bottom, 0px));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.store-footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 20px;
}

.store-footer-text {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #313131;
}

.store-footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.store-badge-link {
  display: block;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-badge-link:hover,
.store-badge-link:focus {
  opacity: 0.88;
  transform: translateY(-1px);
}

.store-badge-img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 360px) {
  .store-badge-img {
    height: 36px;
  }
}
