*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --dark: #0b0905;
  --dark-mid: #131109;
  --dark-card: #1c1810;
  --cream: #f5efe0;
  --muted: #7a6e50;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Barlow", sans-serif;
  background: var(--dark) url("images/img_00.jpg") center/cover fixed;
  color: var(--cream);
  overflow-x: hidden;
}

/* NAV */
nav {
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: linear-gradient(to bottom, rgba(11, 9, 5, 0.97), transparent);
}
.nav-logo img {
  height: 55px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-btn {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  border: 1.5px solid var(--gold);
  border-radius: 5px;
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.25s;
}
.nav-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 5rem;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.logo-img {
  display: block;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(11, 9, 5, 1) 0%,
      rgba(11, 9, 5, 0.5) 20%,
      rgba(11, 9, 5, 0.35) 32%,
      rgba(11, 9, 5, 0.05) 100%
    ),
    linear-gradient(
      to top,
      rgba(11, 9, 5, 1) 0%,
      rgba(11, 9, 5, 0.65) 22%,
      transparent 55%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.6s ease both 0.2s;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.hero-logo {
  animation: fadeUp 0.7s ease both 0.3s;
}
.hero-logo img {
  height: 70px;
  width: auto;
  display: block;
}
.hero-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.9rem;
  animation: fadeUp 0.7s ease both 0.45s;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  animation: fadeUp 0.7s ease both 0.6s;
  flex-wrap: wrap;
}
.s-num {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.s-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
  display: block;
}
.hero-cta {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 2.2rem;
  animation: fadeUp 0.7s ease both 0.75s;
}
.btn-main {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.btn-main:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.65;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}
.btn-ghost:hover {
  opacity: 1;
}
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: var(--gold);
}

/* SECTION */
section {
  padding: 7rem 4rem;
}
.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.section-label::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
}

/* SOBRE */
.sobre {
  background: var(--dark-mid);
  overflow: hidden;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.sobre-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sobre-photos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.sobre-photos img:first-child {
  grid-column: 1/-1;
  height: 320px;
}
.sobre-text p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
}
.sobre-text strong {
  color: var(--cream);
  font-weight: 500;
}
.sobre-pull {
  margin-top: 1.8rem;
  padding: 1.3rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 168, 76, 0.04);
}
.sobre-pull p {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  margin: 0;
}
.equipe-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.eq-badge {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 5px;
  background: rgba(201, 168, 76, 0.04);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* HITS */
.hits {
  background: var(--dark);
  overflow: hidden;
}
.hits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin-top: 3rem;
  align-items: start;
}
.timeline {
  padding-left: 1.5rem;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.05));
}
.tl-item {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 2rem;
}
.tl-dot {
  position: absolute;
  left: -1.9rem;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dark);
  border: 1.5px solid var(--gold);
}
.tl-year {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.tl-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.tl-text strong {
  color: var(--cream);
  font-weight: 500;
}

/* NÚMEROS */
.numeros {
  background: var(--dark-card);
}
.num-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 2.8rem;
  max-width: 1100px;
}
.num-card {
  background: var(--dark-mid);
  padding: 2.2rem 1.2rem;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
}
.num-card:hover {
  border-bottom-color: var(--gold);
}
.num-val {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.num-desc {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  display: block;
}

/* DISCOGRAFIA */
.disco {
  background: var(--dark-mid);
  overflow: hidden;
}
.disco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  max-width: 1100px;
  margin-top: 3rem;
}
.disco-col h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding-bottom: 0.7rem;
  margin-bottom: 1rem;
}
.disco-list {
  list-style: none;
}
.disco-list li {
  font-size: 0.86rem;
  color: var(--muted);
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.4;
}
.disco-list li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.disco-list li strong {
  color: var(--cream);
  font-weight: 400;
}

/* GALERIA */
.galeria {
  background: var(--dark);
  overflow: hidden;
}
.galeria-img {
  width: 100%;
  max-width: 1100px;
  display: block;
  margin: 3rem auto 0;
  opacity: 0.88;
}

/* STREAMING */
.streaming {
  background: var(--dark-card);
  text-align: center;
}
.streaming .section-label {
  justify-content: center;
}
.streaming .section-label::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.streaming .section-label::after {
  display: none;
}
.plats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.plat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.plat-icon {
  width: 56px;
  height: 56px;
  background: var(--dark-mid);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: border-color 0.2s;
}
.plat:hover .plat-icon {
  border-color: var(--gold);
}
.plat span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.stream-box {
  margin: 3rem auto 0;
  max-width: 540px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  background: var(--dark-mid);
}
.stream-box .big {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.stream-box p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}
.stream-link {
  display: inline-block;
  margin-top: 1.4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.stream-link:hover {
  border-color: var(--gold);
}

/* CONTATO */
.contato {
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contato-info p {
  font-size: 0.91rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 1.2rem 0 1.8rem;
}
.dados {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.dado {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--cream);
}
.dado-ico img {
  width: 20px;
}
.dado-ico {
  width: 34px;
  height: 34px;
  /* border: 1px solid rgba(201, 168, 76, 0.22); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.dado-meta {
  font-size: 0.62rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.phones {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
}
.phones p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.phones .num {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
  line-height: 1.6;
}
.wp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  border-radius: 12px;
}
.wp-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.qr-block {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.qr-block img {
  width: 80px;
  height: 80px;
  background: white;
  padding: 4px;
}
.qr-block p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-group select {
  cursor: pointer;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 12px;
  color: var(--cream);
  padding: 0.82rem 1rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.87rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option {
  background: var(--dark-card);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.4rem;
}
.form-submit:hover {
  background: var(--gold-light);
}

/* AGENDA */
.agenda-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.agenda-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,.04) 0%, transparent 60%);
  pointer-events: none;
}
.agenda-wrap {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.agenda-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.agenda-titulo {
  margin-bottom: 0;
}
.agenda-loading {
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.agenda-loading::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(201,168,76,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.agenda-vazio {
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
  padding: 3rem 0;
}

/* countdown */
.ag-countdown {
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-shrink: 0;
}
.ag-cd-bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 10px;
  padding: .5rem .8rem;
  min-width: 52px;
}
.ag-cd-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ag-cd-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .52rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}
.ag-cd-sep {
  font-size: 1.2rem;
  color: var(--muted);
  padding-bottom: .5rem;
}

/* grid */
.ag-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

/* lista */
.ag-lista {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(201,168,76,.08);
  border-radius: 16px;
  padding: .6rem;
  overflow: hidden;
}
.ag-lista-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .5rem .8rem .8rem;
}
.ag-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
  position: relative;
}
.ag-item:hover {
  background: rgba(201,168,76,.05);
}
.ag-item--ativo {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.2);
}
.ag-item--ativo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  height: 64%;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold));
  border-radius: 0 3px 3px 0;
}
.ag-item-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  color: rgba(201,168,76,.3);
  min-width: 18px;
  text-align: center;
}
.ag-item--ativo .ag-item-num {
  color: var(--gold);
}
.ag-item-data {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  white-space: nowrap;
  min-width: 52px;
  transition: color .2s;
}
.ag-item--ativo .ag-item-data {
  color: var(--gold);
}
.ag-item-titulo {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.4;
  transition: color .2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ag-item--ativo .ag-item-titulo {
  color: var(--cream);
  font-weight: 500;
}
.ag-paginacao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem .5rem .3rem;
  border-top: 1px solid rgba(201,168,76,.08);
  margin-top: .4rem;
}
.ag-pag-dot {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  font-size: .65rem;
  color: rgba(201,168,76,.25);
  transition: color .2s, transform .2s;
  line-height: 1;
}
.ag-pag-dot:hover {
  color: rgba(201,168,76,.6);
  transform: scale(1.2);
}
.ag-pag-dot--ativo {
  color: var(--gold);
  transform: scale(1.3);
}
.ag-item-seta {
  margin-left: auto;
  color: transparent;
  font-size: .8rem;
  transition: color .2s, transform .2s;
  flex-shrink: 0;
}
.ag-item--ativo .ag-item-seta,
.ag-item:hover .ag-item-seta {
  color: var(--gold);
  transform: translateX(3px);
}

/* painel destaque */
.ag-destaque {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e1a09 0%, #100e05 60%, #0b0905 100%);
  border: 1px solid rgba(201,168,76,.22);
  padding: 2.2rem 2.2rem 1.8rem;
  box-shadow:
    0 24px 64px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(201,168,76,.12),
    0 0 0 1px rgba(201,168,76,.04);
  transition: opacity .3s, transform .3s;
}
.ag-destaque.trocando {
  opacity: 0;
  transform: translateY(8px);
}
.ag-destaque::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 65%);
  pointer-events: none;
}
.ag-dest-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.18);
  padding: .28rem .8rem;
  border-radius: 20px;
  margin-bottom: 1.4rem;
}
.ag-dest-header {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  line-height: 1;
  margin-bottom: .2rem;
}
.ag-dest-dia {
  font-family: 'Playfair Display', serif;
  font-size: 7.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: .85;
  text-shadow:
    0 0 60px rgba(201,168,76,.2),
    0 2px 4px rgba(0,0,0,.4);
}
.ag-dest-mes {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(201,168,76,.7);
  padding-bottom: .9rem;
}
.ag-dest-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,.35), rgba(201,168,76,.05), transparent);
  margin: 1.1rem 0;
}
.ag-dest-titulo {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.55;
}
.ag-dest-local {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--muted);
  margin-top: .4rem;
}
.ag-acoes {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(201,168,76,.08);
}
.ag-btn-ingresso {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .75rem 1.6rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, filter .2s;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
  flex: 1;
  justify-content: center;
}
.ag-btn-ingresso:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.45);
  filter: brightness(1.08);
}
.ag-btn-share {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 10px;
  color: var(--gold);
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.ag-btn-share:hover {
  background: rgba(201,168,76,.14);
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  /* countdown no mobile — abaixo do título, compacto */
  .agenda-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .ag-countdown {
    display: flex;
    gap: .4rem;
    width: 100%;
  }
  .ag-cd-bloco {
    flex: 1;
    padding: .5rem .4rem;
    min-width: unset;
  }
  .ag-cd-num {
    font-size: 1.3rem;
  }
  .ag-cd-label {
    font-size: .48rem;
  }
  .ag-cd-sep {
    font-size: 1rem;
    padding-bottom: .3rem;
  }

  /* grid empilha: destaque primeiro, lista depois */
  .ag-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ag-lista { order: 2; }
  .ag-destaque {
    order: 1;
    padding: 1.6rem 1.4rem 1.4rem;
    border-radius: 16px;
  }

  /* destaque mobile compacto mas elegante */
  .ag-dest-header {
    gap: .4rem;
  }
  .ag-dest-dia {
    font-size: 4.5rem;
  }
  .ag-dest-mes {
    font-size: 1.3rem;
    padding-bottom: .6rem;
  }
  .ag-dest-titulo {
    font-size: .98rem;
  }
  .ag-acoes {
    margin-top: 1.2rem;
    padding-top: 1rem;
  }
  .ag-btn-ingresso {
    flex: 1;
    justify-content: center;
  }

  /* lista mobile */
  .ag-lista {
    border-radius: 12px;
  }
  .ag-item {
    padding: .75rem .9rem;
  }
  .ag-item-num {
    display: none;
  }
  .ag-item-data {
    font-size: .9rem;
    min-width: 48px;
  }
  .ag-item-titulo {
    font-size: .82rem;
  }
}

/* PARCEIROS */
.parceiros {
  background: var(--dark);
  padding: 3rem 4rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.parceiros img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: opacity 0.2s;
}
.parceiros img:hover {
  opacity: 1;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease var(--delay, 0s),
    transform 0.7s ease var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.reveal-left {
  transform: translateX(-30px);
}
.reveal.reveal-right {
  transform: translateX(30px);
}
.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* SCROLL TO TOP */
#scroll-top {
  position: fixed;
  bottom: 9rem;
  right: 2rem;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.5rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.2s;
  pointer-events: none;
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#scroll-top:hover {
  background: var(--gold-light);
}

/* FOOTER */
footer {
  background: var(--dark) url("images/img_00.jpg") center/cover;
  padding: 2.5rem 4rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.f-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.f-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
.l-link {
  display: flex;
  gap: 2rem;
  align-content: flex-end;
}

.f-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.f-links a:hover {
  color: var(--gold);
}
.f-copy {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
═══════════════════════════════════════════════════ */

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 2rem;
  }
  section {
    padding: 6rem 2.5rem;
  }
  .hero {
    padding: 0 2.5rem 4.5rem;
  }
  .sobre-grid {
    gap: 3rem;
  }
  .hits-grid {
    gap: 3rem;
  }
  .contato-grid {
    gap: 3rem;
  }
  .num-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stats {
    gap: 2rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  h1 {
    font-size: 6rem;
  }
}

/* ── MOBILE LARGE (max 768px) ── */
@media (max-width: 768px) {
  nav {
    padding: 0.9rem 1.2rem;
  }
  .nav-links {
    display: none;
  }
  .nav-btn {
    font-size: 0.68rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.12em;
  }
  .nav-logo img {
    height: 25px;
  }

  section {
    padding: 4rem 1.2rem;
  }
  .hero {
    padding: 0 1.2rem 3.5rem;
    min-height: 100svh;
  }
  .hero-logo img {
    height: 50px;
  }
  h1 {
    font-size: 3.8rem;
    line-height: 0.9;
  }
  .hero-sub {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
  }
  .hero-stats {
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
    padding-top: 1.5rem;
  }
  .s-num {
    font-size: 1.4rem;
  }
  .s-label {
    font-size: 0.55rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  .btn-main {
    padding: 0.8rem 1.8rem;
    font-size: 0.75rem;
  }
  .hero-dots {
    right: 1.2rem;
    bottom: 2rem;
  }

  /* Logo direita hero — hide on mobile */
  .hero > div[style*="bottom:3.5rem;right:4rem"] {
    display: none;
  }

  .section-title {
    font-size: 1.8rem;
  }
  .section-label {
    font-size: 0.6rem;
  }

  /* SOBRE */
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sobre-photos {
    grid-template-columns: 1fr 1fr;
  }
  .sobre-photos img {
    height: 200px;
  }
  .sobre-photos img:first-child {
    height: 240px;
  }
  .sobre-text p {
    font-size: 0.88rem;
  }
  .sobre-pull p {
    font-size: 0.95rem;
  }
  .equipe-row {
    gap: 0.6rem;
  }
  .eq-badge {
    font-size: 0.62rem;
    padding: 0.4rem 0.7rem;
  }

  /* HITS */
  .hits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hits-right img {
    border-radius: 4px;
  }
  .tl-text {
    font-size: 0.85rem;
  }

  /* NÚMEROS */
  .num-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .num-val {
    font-size: 2rem;
  }
  .num-desc {
    font-size: 0.6rem;
  }

  /* DISCOGRAFIA */
  .disco-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .disco-list li {
    font-size: 0.82rem;
  }

  /* STREAMING */
  .plats {
    gap: 1.5rem;
  }
  .plat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .stream-box {
    padding: 1.5rem;
  }
  .stream-box .big {
    font-size: 2.2rem;
  }

  /* CONTATO */
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .phones .num {
    font-size: 1rem;
  }
  .wp-btn {
    font-size: 0.75rem;
    padding: 0.85rem 1.2rem;
  }
  .what {
    width: 50px;
    height: 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .qr-block img {
    width: 65px;
    height: 65px;
  }
  .qr-block p {
    font-size: 0.6rem;
  }

  /* PARCEIROS */
  .parceiros {
    gap: 1.5rem;
    padding: 2rem 1.2rem;
  }
  .parceiros img {
    height: 32px;
  }

  /* FOOTER */
  footer {
    padding: 1.8rem 1.2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
  }
  .f-logo img {
    height: 24px;
  }
  .f-links {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .f-links a {
    font-size: 0.6rem;
  }
  .f-copy {
    font-size: 0.62rem;
  }
}

/* ── MOBILE SMALL (max 480px) ── */
@media (max-width: 480px) {
  nav {
    padding: 0.8rem 1rem;
  }
  .nav-btn {
    display: none;
  }

  section {
    padding: 3.5rem 1rem;
  }
  .hero {
    padding: 0 1rem 3rem;
  }
  h1 {
    font-size: 3rem;
  }
  .hero-logo img {
    height: 42px;
  }
  .hero-stats {
    gap: 1rem;
  }
  .s-num {
    font-size: 1.2rem;
  }

  .sobre-photos {
    grid-template-columns: 1fr;
  }
  .sobre-photos img {
    height: 260px;
  }
  .sobre-photos img:first-child {
    height: 260px;
  }

  .num-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .num-val {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stream-box .big {
    font-size: 1.8rem;
  }

  .plats {
    gap: 1rem;
  }
  .plat-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .plat span {
    font-size: 0.58rem;
  }

  .phones .num {
    font-size: 0.92rem;
  }
}

/* ── HAMBURGER MENU (mobile nav) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 9, 5, 0.97);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile a:hover {
  color: var(--gold);
}
.nav-mobile .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.nav-mobile .nav-mobile-cta {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  border-color: var(--gold);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}
.icones {
  width: 25px;
}
.iconesm {
  width: 20px;
}
.iconesk {
  width: 30px;
}
