:root {
  --gold:    #D4A017;
  --gold2:   #F0C040;
  --orange:  #FF5500;
  --orange2: #FF7733;
  --dark:    #09090f;
  --white:   #FFFFFF;
  --muted:   rgba(255,255,255,0.5);
  --green:   #25D366;
  --radius:  20px;
  --maxw:    430px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  min-height: 100dvh;
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 90% 40% at 50% 0%,  rgba(100,55,210,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 60% 30% at 50% 100%, rgba(255,85,0,0.07)  0%, transparent 50%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--white);
  overflow-x: hidden;
}

/* ── Shell ── */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px 20px 52px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── Profile ── */
.profile {
  text-align: center;
  margin-bottom: 4px;
}

.avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
}

.avatar-ring {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2), #c8860a, var(--gold2), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(212,160,23,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(212,160,23,0); }
}

.avatar-ring img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  border: 3px solid var(--dark);
  display: block;
}

.avatar-wrap::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.brand-name {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 7px;
}

.tagline {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

/* ── Section label ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.section-label i { color: var(--gold); }

/* ── Show Card (Destaque — Henrique & Juliano) ── */
.show-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  background: linear-gradient(150deg, #0d0920 0%, #1e1040 50%, #110a28 100%);
  border: 1px solid rgba(212,160,23,0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow:
    0 4px 28px rgba(212,160,23,0.08),
    0 1px 6px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
  -webkit-tap-highlight-color: transparent;
}
.show-card:hover,
.show-card:active {
  transform: translateY(-2px) scale(1.006);
  box-shadow:
    0 10px 36px rgba(212,160,23,0.18),
    0 2px 10px rgba(0,0,0,0.6);
}

/* Top shimmer strip */
.show-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  background-size: 200% 100%;
  animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* Banner da imagem do show */
.show-banner {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.show-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.show-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,9,32,0.75) 0%,
    transparent 45%
  );
}

.show-inner {
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
}

.show-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.show-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 11px;
  border-radius: 6px;
  text-transform: uppercase;
}

.show-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(212,160,23,0.1);
  color: var(--gold2);
  border: 1px solid rgba(212,160,23,0.25);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.show-artists {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 3.4rem;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.show-amp { color: var(--gold); }

.show-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.show-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.show-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 5px 10px;
  border-radius: 8px;
}
.show-chip i { color: var(--gold); font-size: 0.75rem; }

/* CTA button */
.show-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--gold) 0%, #a87c10 100%);
  border-radius: 13px;
  padding: 13px 16px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.show-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
}
.cta-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.01em;
}
.cta-icon {
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.18);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #000;
  font-size: 0.88rem;
  flex-shrink: 0;
}

/* Decorative ghost music note */
.deco-music {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 5.5rem;
  color: rgba(212,160,23,0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

/* ── Event Card compacto (Corrida) ── */
.event-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: linear-gradient(135deg, #1c0800, #2e1000);
  border: 1px solid rgba(255,85,0,0.25);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  -webkit-tap-highlight-color: transparent;
}
.event-card:hover,
.event-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,85,0,0.16);
}

.event-thumb-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255,85,0,0.28);
}
.event-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-body { flex: 1 1 auto; min-width: 0; }
.event-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.event-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.event-sub i { color: var(--orange); }

.event-ext {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ── WhatsApp Card ── */
.whats-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: linear-gradient(135deg, #064e27, #0a6432);
  border: 1px solid rgba(37,211,102,0.22);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  -webkit-tap-highlight-color: transparent;
}
.whats-card:hover,
.whats-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.14);
}
.whats-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 26px;
  flex-shrink: 0;
}
.whats-body { flex: 1 1 auto; min-width: 0; }
.whats-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.whats-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.whats-ext {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  margin-top: auto;
  padding-top: 36px;
  text-align: center;
  color: rgba(255,255,255,0.18);
  font-size: 0.7rem;
  line-height: 1.7;
}
.footer-link {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.45); text-decoration: underline; }

/* ── Show Card modifier: Cê Tá Doido (yellow/blue) ── */
.show-card--yellow {
  background: linear-gradient(150deg, #06090f 0%, #0b1630 50%, #070d1e 100%);
  border-color: rgba(245,200,0,0.22);
  box-shadow:
    0 4px 28px rgba(245,200,0,0.07),
    0 1px 6px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.show-card--yellow:hover,
.show-card--yellow:active {
  box-shadow:
    0 10px 36px rgba(245,200,0,0.18),
    0 2px 10px rgba(0,0,0,0.6);
}
.show-card--yellow .show-strip {
  background: linear-gradient(90deg, #F5C800, #FFE566, #1B3FA0, #F5C800);
  background-size: 300% 100%;
}
.show-card--yellow .show-new-badge {
  background: linear-gradient(135deg, #F5C800, #FFE566);
  color: #000;
}
.show-card--yellow .show-type-badge {
  background: rgba(27,63,160,0.25);
  color: #7BA7FF;
  border-color: rgba(27,63,160,0.45);
}
.show-card--yellow .show-amp { color: #F5C800; }
.show-card--yellow .show-chip i { color: #F5C800; }
.show-card--yellow .show-cta {
  background: linear-gradient(135deg, #F5C800 0%, #c89d00 100%);
}
.show-card--yellow .deco-music {
  color: rgba(245,200,0,0.05);
  bottom: 10px;
  right: 14px;
  font-size: 4.5rem;
}
.show-card--yellow .show-banner {
  height: auto;
}
.show-card--yellow .show-banner img {
  height: auto;
  object-fit: fill;
  object-position: initial;
}
.show-card--yellow .show-banner-overlay {
  background: linear-gradient(
    to top,
    rgba(6,9,15,0.55) 0%,
    transparent 30%
  );
}

/* ── Event Card modifier: Henrique & Juliano (purple/gold) ── */
.event-card--purple {
  background: linear-gradient(135deg, #0d0920, #1e1040);
  border-color: rgba(212,160,23,0.25);
}
.event-card--purple:hover,
.event-card--purple:active {
  box-shadow: 0 8px 22px rgba(212,160,23,0.16);
}
.event-card--purple .event-thumb-wrap {
  border-color: rgba(212,160,23,0.3);
}
.event-card--purple .event-sub i { color: var(--gold); }

/* ── Event Card modifier: poster grande, texto embaixo (sem link) ── */
.event-card--soon {
  cursor: default;
  display: block;
  padding: 18px 18px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #12100c, #1d1913);
  border-color: rgba(212,160,23,0.22);
}
.event-card--soon:hover,
.event-card--soon:active {
  transform: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.event-card--soon .event-thumb-wrap {
  width: 75%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(212,160,23,0.22);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.event-card--soon .event-body {
  padding: 16px 0 18px;
  text-align: center;
}
.event-card--soon .event-title {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 6px;
}
.event-card--soon .event-sub i { color: var(--gold2); }

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.show {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
