:root {
  --bg-deep: #14122B;
  --bg-panel: #1E1B3F;
  --bg-panel-2: #262148;
  --accent-pink: #FF3E7F;
  --accent-gold: #FFC93C;
  --text-light: #F5F0E8;
  --text-muted: #A9A3C9;
  --line: rgba(245, 240, 232, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-light);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,62,127,0.16), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(255,201,60,0.10), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, .display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 20, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--text-light);
}
.logo span { color: var(--accent-pink); }
.logo-img{
  max-width: 10px;
  max-height: 10px;
} */

/* ---------- LOGO ---------- */
.logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img img {
  height: 40px !important;   /* tamanho final do logo */
  width: auto !important;
  max-width: 160px !important;
  max-height: 40px !important;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
nav a:hover { color: var(--accent-gold); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  display: block;
}

/* ---------- HERO ---------- */
.hero {
  padding: 96px 24px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid rgba(255,201,60,0.4);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(3.2rem, 12vw, 8rem);
  line-height: 0.92;
  color: var(--text-light);
  text-shadow: 0 0 40px rgba(255,62,127,0.35);
}

.hero h1 .accent { color: var(--accent-pink); }

.hero p {
  max-width: 520px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent-pink);
  color: #14122B;
  box-shadow: 0 6px 0 rgba(0,0,0,0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

/* ---------- SECTION HEADS ---------- */
section { padding: 88px 0; position: relative; z-index: 1; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.section-head .tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- SHOWS (ticket stubs) ---------- */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ticket {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.ticket::before {
  content: "";
  position: absolute;
  left: 130px;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 2px dashed rgba(245,240,232,0.25);
}
.ticket::after {
  content: "";
  position: absolute;
  left: 130px;
  top: -12px;
  width: 24px;
  height: 24px;
  background: var(--bg-deep);
  border-radius: 50%;
  transform: translateX(-50%);
}
.ticket .notch-bottom {
  position: absolute;
  left: 130px;
  bottom: -12px;
  width: 24px;
  height: 24px;
  background: var(--bg-deep);
  border-radius: 50%;
  transform: translateX(-50%);
}

.ticket-date {
  padding: 24px 16px;
  text-align: center;
}
.ticket-date .day {
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem;
  color: var(--accent-gold);
  line-height: 1;
}
.ticket-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}

.ticket-info {
  padding: 20px 28px;
}
.ticket-info .venue {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--text-light);
}
.ticket-info .city {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

.ticket-action {
  padding: 20px 28px;
}

.ticket-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,62,127,0.15);
  color: var(--accent-pink);
  margin-bottom: 6px;
}

@media (max-width: 640px) {
  .ticket {
    grid-template-columns: 90px 1fr;
  }
  .ticket-action {
    grid-column: 1 / -1;
    padding-top: 0;
  }
  .ticket::before, .ticket::after, .ticket .notch-bottom {
    left: 90px;
  }
  .ticket-info { padding: 16px 20px; }
  .ticket-date .day { font-size: 1.8rem; }
}

.no-shows {
  padding: 40px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--text-muted);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-art {
  border-radius: 18px;
  background:
    linear-gradient(160deg, var(--bg-panel-2), var(--bg-panel)),
    radial-gradient(circle at 30% 20%, rgba(255,62,127,0.35), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(255,201,60,0.25), transparent 50%);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.about-art .spotify-label {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.about-art .spotify-label svg {
  width: 16px;
  height: 16px;
  fill: #1DB954;
  flex-shrink: 0;
}

.spotify-embed-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
}
.spotify-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 352px;
  border: none;
}

@media (max-width: 640px) {
  .about-art { padding: 20px; }
  /* Abaixo de 640px o player "alto" do Spotify (com grade de capas)
     não preenche mais os 352px de altura em telas estreitas, sobrando
     espaço vazio dentro da moldura. A versão compacta (152px) faz o
     Spotify reorganizar o conteúdo numa lista horizontal que preenche
     certinho, sem sobra. */
  .spotify-embed-wrap iframe { height: 152px; }
  .spotify-embed-wrap { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); }
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-text p:first-child {
  color: var(--text-light);
  font-size: 1.15rem;
}

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-art { order: -1; }
}

/* ---------- MERCH (coming soon) ---------- */
.merch-banner {
  border: 1px dashed rgba(255,201,60,0.4);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,201,60,0.06), transparent);
}
.merch-banner h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); margin-bottom: 12px; }
.merch-banner p { color: var(--text-muted); max-width: 440px; margin: 0 auto; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}
.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .label { color: var(--text-muted); }
.contact-row .value { font-weight: 600; }
.contact-row a:hover { color: var(--accent-pink); }

.social-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.social-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.social-list a:hover {
  border-color: var(--accent-pink);
  background: rgba(255,62,127,0.08);
}
.social-list .arrow { color: var(--accent-gold); }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
footer .logo { display: block; margin-bottom: 8px; }

@media (max-width: 760px) {
  nav ul { display: none; }
  .menu-btn { display: flex; }
  nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-deep);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
}

/* ========== HERO SLIDESHOW ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Overlay escuro para legibilidade do texto */
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 18, 43, 0.45),
    rgba(20, 18, 43, 0.75) 70%,
    rgba(20, 18, 43, 0.9)
  );
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3.4rem, 13vw, 8.5rem);
  line-height: 0.9;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

/* ---------- HERO CAPTION (texto que troca a cada slide) ---------- */
.hero-caption {
  max-width: 560px;
  margin: 24px auto 0;
  min-height: 3.2em; /* evita "pulos" de layout enquanto o texto muda de tamanho */
  color: var(--text-muted);
  font-size: 1.05rem;
}
.hero-caption.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: var(--accent-gold);
  vertical-align: -0.15em;
  animation: caret-blink 0.8s steps(1) infinite;
}
@keyframes caret-blink {
  50% { opacity: 0; }
}

/* ---------- HERO NAV (clique nas bordas pra trocar de slide) ---------- */
.hero-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  min-width: 56px;
  max-width: 140px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(245, 240, 232, 0.5);
  z-index: 5;
  transition: color 0.2s ease, background 0.2s ease;
}
.hero-nav svg { width: 28px; height: 28px; }
.hero-nav--prev {
  left: 0;
  justify-content: flex-start;
  background: linear-gradient(to right, rgba(20,18,43,0.3), transparent);
}
.hero-nav--next {
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(to left, rgba(20,18,43,0.3), transparent);
}
.hero-nav:hover,
.hero-nav:focus-visible { color: var(--accent-gold); }
.hero-nav:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: -4px; }

@media (max-width: 640px) {
  .hero-nav { width: 22%; padding: 0 6px; }
  .hero-nav svg { width: 22px; height: 22px; }
}

/* Nenhuma imagem do slideshow carregou: mantém o fundo escuro com
   gradiente do body, sem a seção parecer quebrada. */
.hero--no-slideshow {
  min-height: 480px;
}

@media (max-width: 640px) {
  .hero {
    min-height: 620px;
  }
}