/* =========================================================
   ZEVEDO — A voz do sertão
   Preto + Dourado + Couro
   ========================================================= */

:root {
  --bg: #0a0604;
  --bg-2: #120a06;
  --bg-3: #1a0e08;
  --leather: #2a1810;
  --leather-2: #3d2418;
  --gold-1: #f4d27a;
  --gold-2: #e6b04a;
  --gold-3: #c08820;
  --gold-4: #8a5a14;
  --gold-deep: #5a3a0a;
  --bone: #f5ecd6;
  --bone-2: #d4c8a8;
  --rust: #8a3a14;
  --ember: #ff6a1f;
  --shadow: 0 30px 80px rgba(0,0,0,.7);

  --gold-grad: linear-gradient(180deg, #f4d27a 0%, #e6b04a 35%, #c08820 55%, #8a5a14 80%, #5a3a0a 100%);
  --gold-shine: linear-gradient(110deg, #5a3a0a 0%, #c08820 30%, #fff4c4 50%, #c08820 70%, #5a3a0a 100%);

  --f-display: 'Bebas Neue', 'Oswald', Impact, sans-serif;
  --f-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --f-body: 'Inter', system-ui, sans-serif;

  --max: 1400px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--bone);
  font-family: var(--f-body);
  overflow-x: hidden;
  cursor: none;
}
body.no-cursor-fx { cursor: auto; }
body.no-cursor-fx .cursor-dot,
body.no-cursor-fx .cursor-ring { display: none; }

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: none; }
a { color: inherit; text-decoration: none; cursor: none; }

/* ============ NOISE / GRAIN OVERLAY ============ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: .08;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='3'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.7'/></svg>");
}
.vignette {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 8999;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.7) 100%);
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold-1);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(244,210,122,.9), 0 0 30px rgba(255,140,50,.5);
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold-2);
  border-radius: 50%;
  transition: width .25s, height .25s, border-color .25s, background .25s;
  background: radial-gradient(circle, transparent 60%, rgba(244,210,122,.05) 100%);
}
.cursor-ring.hover {
  width: 70px; height: 70px;
  border-color: var(--gold-1);
  background: radial-gradient(circle, rgba(244,210,122,.1) 0%, transparent 70%);
  mix-blend-mode: difference;
}
.cursor-ring.hover-hat {
  background-image: url("../img/cursor-hat.svg");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  border-color: transparent;
  width: 90px; height: 90px;
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold-3);
  vertical-align: middle;
  margin-right: 14px;
}
.h-display {
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: .9;
  text-transform: uppercase;
}
.h-serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(192,136,32,.3));
}
.gold-shine {
  background: var(--gold-shine);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity .8s, visibility .8s;
}
.loader.gone { opacity: 0; visibility: hidden; }
.loader-logo {
  width: 280px; opacity: 0;
  animation: loaderIn 1.2s cubic-bezier(.2,.8,.2,1) forwards;
  filter: drop-shadow(0 0 30px rgba(244,210,122,.4));
}
.loader-bar {
  width: 240px; height: 1px;
  background: rgba(244,210,122,.15);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
  animation: loadBar 1.5s ease-in-out infinite;
}
@keyframes loaderIn { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(20px); } }
@keyframes loadBar { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ============ TOP NAV ============ */
.topnav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
  width: min(1040px, calc(100% - 56px));
  min-height: 74px;
  padding: 13px 34px;
  background:
    linear-gradient(180deg, rgba(18,10,6,.82), rgba(8,4,2,.68)),
    rgba(10,6,4,.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(244,210,122,.2);
  border-radius: 999px;
  box-shadow:
    0 20px 70px rgba(0,0,0,.46),
    inset 0 1px 0 rgba(244,210,122,.12);
  transition: transform .4s, opacity .4s, background .3s, border-color .3s;
}
.topnav.hidden { transform: translateX(-50%) translateY(-150%); opacity: 0; }
.topnav-logo {
  width: auto; height: 24px;
  flex: 0 0 auto;
  margin: 0;
}
.topnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .16em;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--bone-2);
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  transition: color .3s, background .3s, box-shadow .3s, transform .3s;
  position: relative;
}
.topnav a[data-section="morar"] {
  min-width: 132px;
}
.topnav a:hover {
  color: var(--gold-1);
  background: rgba(244,210,122,.08);
}
.topnav a.active:not(.topnav-cta) {
  color: var(--bg);
  background: var(--gold-grad);
  box-shadow: 0 10px 26px rgba(192,136,32,.28);
}
.topnav-cta {
  min-width: 128px;
  margin: 0;
  padding: 0 22px !important;
  background: var(--gold-grad);
  color: var(--bg) !important;
  font-weight: 800 !important;
  box-shadow:
    0 12px 32px rgba(192,136,32,.32),
    inset 0 1px 0 rgba(255,244,196,.38);
}
.topnav-cta:hover {
  color: var(--bg) !important;
  background: var(--gold-shine);
  background-size: 220% 100%;
  transform: translateY(-1px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 200vh; /* tall to allow scroll-driven dissolve */
}
.hero-sticky {
  position: sticky; top: 0;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 90px 20px 110px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: center 12%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
  will-change: transform, filter;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 20%, rgba(10,6,4,.55) 70%, rgba(10,6,4,1) 100%),
    linear-gradient(180deg, rgba(10,6,4,.45) 0%, transparent 40%, transparent 55%, rgba(10,6,4,1) 100%);
}

.hero-logo-wrap {
  position: relative;
  z-index: 3;
  width: min(80vw, 900px);
  max-width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  will-change: transform, opacity, filter;
}
.hero-logo {
  width: 100%;
  max-width: 720px;
  filter: drop-shadow(0 8px 40px rgba(244,210,122,.3));
}

.hero-tagline {
  position: relative;
  text-align: center;
  z-index: 4;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.hero-tagline .h-serif {
  font-size: clamp(20px, 2.4vw, 36px);
  color: var(--bone);
  letter-spacing: .04em;
}
.hero-tagline .small {
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-top: 14px;
  display: block;
}
.hero-tagline .phrase {
  font-family: var(--f-serif);
  font-size: clamp(15px, 1.7vw, 22px);
  color: var(--bone);
  max-width: 720px;
  margin: 14px auto 0;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: .35em;
  color: var(--gold-4);
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
  pointer-events: none;
  opacity: .85;
}
.scroll-cue-line {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--gold-3), transparent);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Particles canvas overlay */
.particles {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 4;
}

/* ============ MARQUEE / TICKER ============ */
.ticker {
  background: var(--bg-2);
  border-top: 1px solid rgba(244,210,122,.1);
  border-bottom: 1px solid rgba(244,210,122,.1);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
  z-index: 10;
}
.ticker-track {
  display: flex; gap: 60px;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: .1em;
  color: var(--gold-3);
  display: flex; align-items: center; gap: 60px;
}
.ticker-item .star { color: var(--gold-1); font-size: 24px; }
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS LAYOUT ============ */
section { position: relative; }
.section {
  padding: 140px 0;
  position: relative;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}
.section-head .left { max-width: 720px; }
.section-head h2 {
  font-size: clamp(48px, 7vw, 110px);
  margin-top: 16px;
  line-height: .92;
}
.section-head h2 .h-serif {
  font-size: .7em;
  display: block;
  font-weight: 400;
  color: var(--bone-2);
  letter-spacing: 0;
  margin-top: 8px;
}

/* ============ BIO ============ */
#bio {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(192,136,32,.08), transparent 50%),
    var(--bg);
  overflow: hidden;
}
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.bio-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.bio-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.bio-portrait:hover img { transform: scale(1.06); }
.bio-portrait::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--gold-3);
  pointer-events: none;
  z-index: 2;
  transform: translate(12px, 12px);
  transition: transform .6s;
}
.bio-portrait:hover::before { transform: translate(0,0); }
.bio-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,6,4,.5));
  pointer-events: none;
}
.bio-meta {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 3;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bone-2);
}

.bio-text p {
  font-family: var(--f-serif);
  font-size: 22px;
  line-height: 1.6;
  color: var(--bone-2);
  margin-bottom: 24px;
}
.bio-text p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 88px;
  line-height: .85;
  float: left;
  margin: 6px 14px 0 0;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(244,210,122,.15);
}
.bio-stat .num {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bio-stat .lbl {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bone-2);
  margin-top: 8px;
}

.signature {
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-size: 56px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 30px;
  display: inline-block;
  transform: rotate(-3deg);
}

/* ============ AGENDA ============ */
#agenda {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.shows-list { display: flex; flex-direction: column; }
.show-row {
  display: grid;
  grid-template-columns: 130px 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(244,210,122,.12);
  position: relative;
  cursor: none;
  transition: padding-left .4s;
}
.show-row:last-child { border-bottom: 1px solid rgba(244,210,122,.12); }
.show-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold-grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.show-row:hover { padding-left: 28px; }
.show-row:hover::before { transform: scaleY(1); }
.show-row:hover .show-bg {
  opacity: .15;
}
.show-bg {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  background: url('img/show.jpg') right/cover;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
  mask: linear-gradient(90deg, transparent, black 60%);
  -webkit-mask: linear-gradient(90deg, transparent, black 60%);
}
.show-date {
  position: relative; z-index: 2;
}
.show-date .day {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: .9;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.show-date .month {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bone-2);
  margin-top: 4px;
}
.show-date .year {
  font-size: 11px;
  color: var(--gold-4);
  margin-top: 2px;
}
.show-info { position: relative; z-index: 2; }
.show-info .city {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.show-info .venue {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--bone-2);
  margin-top: 4px;
  font-size: 18px;
}
.show-detail { position: relative; z-index: 2; color: var(--bone-2); font-size: 14px; }
.show-detail .lbl {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-3);
  display: block;
  margin-bottom: 4px;
}
.btn-ticket {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: transparent;
  border: 1px solid var(--gold-3);
  color: var(--gold-1);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  overflow: hidden;
  transition: color .3s;
}
.btn-ticket::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-grad);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.btn-ticket:hover { color: var(--bg); border-color: transparent; }
.btn-ticket:hover::before { transform: translateY(0); }
.btn-ticket .arrow { transition: transform .4s; }
.btn-ticket:hover .arrow { transform: translateX(4px); }

/* ============ DISCO / MUSIC ============ */
#disco {
  background: var(--bg);
  overflow: hidden;
}
.disco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.album {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
}
.album img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s, filter .6s;
}
.album:hover img { transform: scale(1.08); filter: brightness(.5); }
.album-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 40%, rgba(10,6,4,.95));
  z-index: 2;
}
.album-overlay h3 {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.album-overlay .yr {
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold-3);
  text-transform: uppercase;
  margin-top: 4px;
}
.album-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.4);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .4s;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(244,210,122,.5);
}
.album:hover .album-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.album-play svg { width: 28px; height: 28px; margin-left: 4px; }

.spotify-embed {
  margin-top: 60px;
  background: var(--bg-2);
  border: 1px solid rgba(244,210,122,.15);
  padding: 32px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.spotify-embed iframe {
  width: 100%;
  border-radius: 12px;
}

/* ============ VIDEOS ============ */
#videos {
  background: linear-gradient(180deg, var(--bg) 0%, var(--leather) 100%);
}
.video-feature {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
  cursor: none;
}
.video-feature iframe {
  width: 100%; height: 100%;
  border: none;
}
.video-thumb {
  position: absolute; inset: 0;
  background: url('img/show.jpg') center/cover;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.video-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,6,4,.4);
}
.video-play-btn {
  position: relative; z-index: 2;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(10,6,4,.6);
  border: 2px solid var(--gold-1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-1);
  backdrop-filter: blur(10px);
  transition: transform .4s, background .3s;
}
.video-feature:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--gold-grad);
  color: var(--bg);
  border-color: transparent;
}
.video-play-btn svg { width: 36px; height: 36px; margin-left: 4px; }
.video-title {
  position: absolute;
  bottom: 32px; left: 32px;
  z-index: 3;
}
.video-title h3 {
  font-family: var(--f-display);
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.video-title .meta {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-top: 8px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-thumb-small {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
}
.video-thumb-small img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform .8s;
}
.video-thumb-small:hover img { transform: scale(1.08); }
.video-thumb-small::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,6,4,.9));
}
.video-thumb-small .lbl {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.video-thumb-small .play-mini {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 50px;
  background: rgba(10,6,4,.5);
  border: 1px solid var(--gold-1);
  border-radius: 50%;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-1);
  transition: background .3s;
}
.video-thumb-small:hover .play-mini { background: var(--gold-grad); color: var(--bg); }

/* ============ GALLERY ============ */
#galeria {
  background: var(--leather);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: none;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .4s;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,6,4,.7));
  opacity: 0;
  transition: opacity .4s;
}
.gallery-item:hover img { transform: scale(1.1); filter: brightness(1.1) contrast(1.1); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--bone);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

.g1 { grid-column: span 5; grid-row: span 6; }
.g2 { grid-column: span 4; grid-row: span 4; }
.g3 { grid-column: span 3; grid-row: span 4; }
.g4 { grid-column: span 4; grid-row: span 5; }
.g5 { grid-column: span 3; grid-row: span 5; }
.g6 { grid-column: span 5; grid-row: span 4; }

/* ============ STORE / MERCH ============ */
#loja {
  background: var(--bg);
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.merch-card {
  background: var(--bg-2);
  border: 1px solid rgba(244,210,122,.1);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .4s, transform .5s;
  cursor: none;
}
.merch-card:hover {
  border-color: var(--gold-3);
  transform: translateY(-6px);
}
.merch-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--leather);
  position: relative;
}
.merch-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s;
}
.merch-card:hover .merch-img img { transform: scale(1.05); }
.merch-info {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.merch-info h4 {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.merch-info .price {
  font-family: var(--f-display);
  font-size: 22px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.merch-info .cat {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-top: 4px;
}
.merch-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--bg);
  color: var(--gold-1);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--gold-3);
  z-index: 2;
}

/* ============ CONTRATAÇÃO ============ */
#contato {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info p {
  font-family: var(--f-serif);
  font-size: 22px;
  color: var(--bone-2);
  margin-bottom: 32px;
  line-height: 1.55;
}
.contact-blocks { display: grid; gap: 24px; margin-top: 40px; }
.contact-block {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(244,210,122,.12);
}
.contact-block .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-1);
  flex-shrink: 0;
}
.contact-block .lbl {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.contact-block .val {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: .04em;
  margin-top: 4px;
  text-transform: uppercase;
}
.contact-form {
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(244,210,122,.15);
  padding: 40px;
  border-radius: 4px;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(244,210,122,.4), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.contact-form h3 {
  font-family: var(--f-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.field { margin-bottom: 20px; }
.field label {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-3);
  display: block;
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,210,122,.2);
  color: var(--bone);
  padding: 10px 0;
  font-family: var(--f-body);
  font-size: 16px;
  outline: none;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--gold-1);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  background: var(--gold-grad);
  color: var(--bg);
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244,210,122,.4);
}
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .6s;
}
.btn-primary:hover::after { left: 100%; }

/* ============ PRESS / NEWSLETTER ============ */
#imprensa {
  background: var(--bg-2);
}
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.press-card {
  border: 1px solid rgba(244,210,122,.15);
  padding: 40px;
  border-radius: 4px;
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(192,136,32,.06), transparent 60%),
    var(--bg);
}
.press-card h3 {
  font-family: var(--f-display);
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.press-card p {
  font-family: var(--f-serif);
  font-size: 18px;
  color: var(--bone-2);
  margin: 16px 0 28px;
  line-height: 1.6;
}
.press-list {
  list-style: none;
  margin-top: 20px;
}
.press-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(244,210,122,.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.press-list li .l { color: var(--bone-2); }
.press-list li .arr { color: var(--gold-1); }

/* ============ FOOTER ============ */
.footer {
  background: #050302;
  padding: 100px 0 30px;
  border-top: 1px solid rgba(244,210,122,.15);
  position: relative;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,210,122,.1);
}
.footer-brand .logo { width: 200px; margin-bottom: 16px; }
.footer-brand p {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--bone-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--bone-2);
  padding: 6px 0;
  transition: color .3s, padding-left .3s;
}
.footer-col a:hover { color: var(--gold-1); padding-left: 6px; }
.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-4);
}

/* EGGYS credit — elegant footer signature */
.eggys-credit {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(244, 210, 122, .12);
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(244,210,122,.04), rgba(244,210,122,.01));
  color: var(--gold-4);
  transition: all .5s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.eggys-credit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(244,210,122,.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .9s ease;
}
.eggys-credit:hover {
  border-color: rgba(244, 210, 122, .35);
  color: var(--gold-1);
  box-shadow: 0 8px 30px rgba(244, 210, 122, .12);
  transform: translateY(-1px);
}
.eggys-credit:hover::before { transform: translateX(100%); }
.eggys-label {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-4); opacity: .7;
}
.eggys-brand {
  display: inline-flex; align-items: center; gap: 8px;
  position: relative;
  padding-left: 14px;
}
.eggys-brand::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 18px;
  background: linear-gradient(180deg, transparent, rgba(244,210,122,.4), transparent);
}
.eggys-mark {
  width: 18px; height: 18px;
  color: var(--gold-1);
  filter: drop-shadow(0 0 6px rgba(244,210,122,.3));
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.eggys-credit:hover .eggys-mark { transform: rotate(-8deg) scale(1.1); }
.eggys-name {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  font-family: var(--f-display, 'Playfair Display', serif);
  font-size: 14px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-1);
  line-height: 1;
}
.eggys-tag {
  font-family: var(--f-sans, 'Inter', sans-serif);
  font-size: 8px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-4); opacity: .6;
  margin-top: 3px;
}
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .eggys-credit { padding: 8px 14px; }
  .eggys-label { display: none; }
  .eggys-brand { padding-left: 0; }
  .eggys-brand::before { display: none; }
}

/* Big footer wordmark */
.footer-wordmark {
  font-family: var(--f-display);
  font-size: clamp(80px, 18vw, 280px);
  letter-spacing: .04em;
  text-align: center;
  padding: 20px 0 0;
  background: linear-gradient(180deg, rgba(244,210,122,.15) 0%, rgba(244,210,122,0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: .9;
  margin-top: 40px;
  pointer-events: none;
  user-select: none;
}

/* ============ DOCK (iOS-style apps) ============ */
.dock {
  position: fixed;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 600;
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 14px 12px;
  background: rgba(10,6,4,.55);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(244,210,122,.2);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.06);
}
.dock-app {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .4s cubic-bezier(.2,1.4,.4,1);
  overflow: hidden;
  cursor: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.15);
}
.dock-app::after {
  content: attr(data-name);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(10,6,4,.9);
  color: var(--bone);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(244,210,122,.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .3s;
}
.dock-app:hover {
  transform: scale(1.18) translateX(-4px);
}
.dock-app:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.dock-app svg { width: 26px; height: 26px; }
.dock-app .glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 40%);
  border-radius: 14px;
  pointer-events: none;
}
.dock-divider {
  height: 1px;
  background: rgba(244,210,122,.15);
  margin: 4px 8px;
}

/* App bg colors (authentic-ish) */
.app-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af 75%, #515bd4); }
.app-facebook { background: linear-gradient(135deg, #1877f2, #0a4dba); color: #fff; }
.app-spotify { background: #1ed760; color: #000; }
.app-youtube { background: linear-gradient(135deg, #ff0000, #cc0000); color: #fff; }
.app-tiktok { background: #000; color: #fff; position: relative; }
.app-deezer { background: linear-gradient(135deg, #ef5466, #ff7e30, #f7d34c, #4ee572, #39b1d6, #a338ff); color: #fff; }
.app-apple { background: linear-gradient(135deg, #fa233b, #fb5c74); color: #fff; }
.app-x { background: #000; color: #fff; }
.app-whats { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; }

/* Mini iPhone dock at bottom for mobile fallback */
.dock-mobile {
  display: none;
  position: fixed;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 600;
  flex-direction: row;
  background: rgba(10,6,4,.7);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(244,210,122,.2);
  padding: 10px;
  gap: 8px;
  border-radius: 24px;
}
.dock-mobile .dock-app { width: 44px; height: 44px; border-radius: 12px; }
.dock-mobile .dock-app svg { width: 22px; height: 22px; }
.dock-mobile .dock-divider { display: none; }

/* ============ GALLERY MODAL ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9500;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90%; max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 0 100px rgba(0,0,0,.8);
}
.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  width: 50px; height: 50px;
  background: transparent;
  border: 1px solid var(--gold-3);
  border-radius: 50%;
  color: var(--gold-1);
  font-size: 22px;
  cursor: none;
}

/* ============ AUDIO TOGGLE ============ */
.audio-toggle {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 600;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(10,6,4,.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(244,210,122,.2);
  color: var(--gold-1);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: transform .3s, background .3s;
}
.audio-toggle:hover { transform: scale(1.1); background: var(--bg); }
.audio-toggle .bars {
  display: flex; gap: 3px; align-items: center; height: 18px;
}
.audio-toggle .bars span {
  width: 3px; background: var(--gold-1); border-radius: 2px;
  height: 100%;
}
.audio-toggle.playing .bars span:nth-child(1) { animation: bar 1s ease-in-out infinite .2s; }
.audio-toggle.playing .bars span:nth-child(2) { animation: bar 1s ease-in-out infinite .4s; }
.audio-toggle.playing .bars span:nth-child(3) { animation: bar 1s ease-in-out infinite .1s; }
.audio-toggle.playing .bars span:nth-child(4) { animation: bar 1s ease-in-out infinite .3s; }
.audio-toggle.muted .bars span { height: 4px; opacity: .4; }
@keyframes bar {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s, transform 1s; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

.split-line { display: block; overflow: hidden; }
.split-line .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.split-line.in .word { transform: translateY(0); }

/* ============ DECORATIVE DIVIDERS ============ */
.divider-ornament {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 50px 24px;
  position: relative;
  background: var(--bg);
}
.divider-ornament.on-leather { background: var(--leather); }
.divider-ornament.on-bg2 { background: var(--bg-2); }
.divider-ornament::before, .divider-ornament::after {
  content: ''; flex: 1; max-width: 220px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,210,122,.45), transparent);
}
.divider-ornament .orn {
  display: flex; align-items: center; gap: 14px;
  color: var(--gold-1);
}
.divider-ornament .orn svg {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 8px rgba(244,210,122,.35));
  animation: ornPulse 3s ease-in-out infinite;
}
.divider-ornament .orn .star-mini {
  color: var(--gold-3);
  font-family: var(--f-display); font-size: 18px;
  animation: starSpin 6s linear infinite;
}
@keyframes ornPulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}
@keyframes starSpin {
  to { transform: rotate(360deg); }
}

/* ============ STATS COUNTER ============ */
.stats-section {
  padding: 90px 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192,136,32,.06), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(192,136,32,.06), transparent 50%),
    var(--bg);
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(244,210,122,.08);
  border-bottom: 1px solid rgba(244,210,122,.08);
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(244,210,122,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: .5;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 2;
}
.stat-card {
  text-align: center; padding: 30px 16px;
  position: relative;
}
.stat-card + .stat-card::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(244,210,122,.25), transparent);
}
.stat-card .num {
  font-family: var(--f-display); font-size: clamp(54px, 7vw, 96px); line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(192,136,32,.2));
}
.stat-card .num .plus { font-size: .65em; vertical-align: top; }
.stat-card .lbl {
  font-size: 11px; letter-spacing: .25em; color: var(--bone-2);
  text-transform: uppercase; margin-top: 10px; font-weight: 600;
}
.stat-card .ic {
  width: 30px; height: 30px; color: var(--gold-3); margin: 0 auto 12px;
}

/* ============ QUOTE / LYRIC BLOCK ============ */
.quote-block {
  text-align: center; padding: 110px 32px; position: relative;
  background:
    radial-gradient(ellipse at center, rgba(192,136,32,.12) 0%, transparent 60%),
    var(--bg-2);
  overflow: hidden;
  border-top: 1px solid rgba(244,210,122,.1);
  border-bottom: 1px solid rgba(244,210,122,.1);
}
.quote-block::before, .quote-block::after {
  content: '"'; position: absolute; font-family: var(--f-display);
  font-size: 260px; color: rgba(244,210,122,.07); line-height: .8;
  pointer-events: none; user-select: none;
}
.quote-block::before { top: 10px; left: 40px; }
.quote-block::after { bottom: -60px; right: 40px; transform: rotate(180deg); }
.quote-block q {
  font-family: var(--f-serif); font-style: italic; font-size: clamp(22px, 2.6vw, 36px);
  color: var(--bone); line-height: 1.5; max-width: 800px;
  display: block; margin: 0 auto 26px; quotes: '' '';
  position: relative; z-index: 2;
}
.quote-block .who {
  font-size: 11px; letter-spacing: .35em; color: var(--gold-3); text-transform: uppercase;
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 14px;
}
.quote-block .who::before, .quote-block .who::after {
  content: ''; width: 30px; height: 1px; background: var(--gold-3);
}

/* ============ FLOATING ORNAMENTS ============ */
.float-ornaments {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  z-index: 1;
}
.float-orn {
  position: absolute; opacity: .07;
  color: var(--gold-1); animation: floatOrn 14s ease-in-out infinite;
}
.float-orn svg { width: 100%; height: 100%; }
.float-orn.f1 { top: 10%; left: 5%; width: 80px; height: 80px; animation-delay: 0s; }
.float-orn.f2 { top: 60%; right: 8%; width: 100px; height: 100px; animation-delay: -3s; }
.float-orn.f3 { bottom: 10%; left: 12%; width: 60px; height: 60px; animation-delay: -6s; }
.float-orn.f4 { top: 30%; right: 20%; width: 70px; height: 70px; animation-delay: -9s; }
@keyframes floatOrn {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .07; }
  50% { transform: translateY(-30px) rotate(10deg); opacity: .12; }
}

/* ============ AMBIENT GOLDEN PULSE ============ */
.ambient-glow {
  position: absolute; pointer-events: none;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,210,122,.12), transparent 70%);
  filter: blur(40px);
  animation: glowMove 16s ease-in-out infinite;
  z-index: 0;
}
@keyframes glowMove {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(120px, -60px) scale(1.2); }
  66% { transform: translate(-100px, 80px) scale(.9); }
}

/* ============ HERO SMALL DOT ============ */
.hero-dot { color: var(--gold-1); margin: 0 8px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .bio-grid, .contact-grid, .press-grid, .spotify-embed { grid-template-columns: 1fr; gap: 40px; }
  .disco-grid, .merch-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .show-row { grid-template-columns: 90px 1fr auto; }
  .show-row .show-detail { display: none; }
  .show-date .day { font-size: 44px; }
  .show-info .city { font-size: 22px; }
  .topnav { width: calc(100% - 48px); min-height: 68px; padding: 8px 26px; }
  .topnav a { padding: 6px 10px; font-size: 11px; letter-spacing: .12em; }
  .topnav-logo { margin: 0; width: auto; height: 22px !important; }
  .topnav a[data-section="morar"] { min-width: 120px; }
  .topnav-cta { min-width: 116px; margin: 0; }
}

/* Tablets / small laptops — hide text nav, keep CTA + logo */
@media (max-width: 880px) {
  .topnav a:not(.topnav-cta):not(.topnav-logo-wrap) { display: none; }
  .topnav { width: calc(100% - 28px); min-height: 58px; padding: 7px 18px; }
  .topnav-cta { min-width: 116px; margin: 0; }
  .dock { right: 14px; padding: 10px 8px; gap: 8px; border-radius: 22px; }
  .dock-app { width: 42px; height: 42px; border-radius: 12px; }
  .dock-app svg { width: 22px; height: 22px; }
}

/* Phones */
@media (max-width: 720px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  button, a { cursor: pointer; }
  .grain { opacity: .05; }

  /* Top nav */
  .topnav {
    top: 12px;
    gap: 6px;
    min-height: 56px;
    padding: 6px 10px;
    width: calc(100% - 24px);
    justify-content: space-between;
  }
  .topnav-logo { width: auto; height: 22px !important; margin: 0; }
  .topnav a:not(.topnav-cta) { display: none; }
  .topnav-cta { min-width: 110px; padding: 7px 14px !important; font-size: 10px; }

  .section { padding: 70px 0; }
  .section-inner { padding: 0 18px; }
  .section-head { margin-bottom: 40px; }

  /* HERO mobile */
  .hero { height: auto; }
  .hero-sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
    padding: 110px 18px 80px;
  }
  .hero-bg { background-position: center 18%; transform: scale(1.05); }
  .hero-logo { width: min(80vw, 360px); }
  .hero-tagline .small { font-size: 10px; letter-spacing: .3em; margin-top: 6px; }
  .hero-tagline .phrase { font-size: 15px; line-height: 1.5; padding: 0 6px; }
  .hero-tagline .h-serif { font-size: 18px; }
  .hero-cta {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 24px auto 0;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 11px;
    letter-spacing: .2em;
  }
  .scroll-cue { display: none; }

  /* Section heads */
  .section-head h2 { font-size: clamp(36px, 11vw, 56px); }

  /* Ticker */
  .ticker { padding: 14px 0; }
  .ticker-item { font-size: 22px; gap: 30px; }
  .ticker-item .star { font-size: 16px; }

  /* Bio */
  .bio-text p { font-size: 17px; line-height: 1.55; }
  .bio-text p:first-of-type::first-letter { font-size: 60px; }
  .signature { font-size: 40px; }
  .highlight-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .highlight-card { padding: 14px 10px; }
  .highlight-card .lbl { font-size: 12px; }

  /* Disco / videos / merch */
  .disco-grid, .merch-grid, .video-grid { grid-template-columns: 1fr; }
  .video-title h3 { font-size: 22px; }
  .video-title { bottom: 16px; left: 16px; right: 16px; }

  /* Galeria — keep mosaic but smaller */
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 60px;
    gap: 8px;
  }
  .g1 { grid-column: span 6; grid-row: span 4; }
  .g2 { grid-column: span 3; grid-row: span 3; }
  .g3 { grid-column: span 3; grid-row: span 3; }
  .g4 { grid-column: span 3; grid-row: span 3; }
  .g5 { grid-column: span 3; grid-row: span 3; }
  .g6 { grid-column: span 6; grid-row: span 3; }
  .gallery-item .cap { font-size: 13px; bottom: 10px; left: 12px; }

  /* Agenda */
  .show-row { grid-template-columns: 70px 1fr; row-gap: 8px; padding: 22px 0; gap: 16px; }
  .show-row .btn-ticket { grid-column: 1 / -1; justify-content: center; }
  .show-info .city { font-size: 18px; }
  .show-info .venue { font-size: 14px; }
  .show-date .day { font-size: 36px; }

  /* Contratação */
  .contract-cards { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .contract-card { padding: 18px 10px; }
  .contract-card .lbl { font-size: 14px; }

  /* Forms / Footer */
  .field-row { grid-template-columns: 1fr; }
  .bio-stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .footer { padding: 60px 0 30px; }
  .footer-bottom { font-size: 10px; gap: 14px; flex-direction: column; text-align: center; }
  .footer-wordmark { font-size: clamp(60px, 22vw, 140px); margin-top: 20px; }

  /* Track feature */
  .track-feature { padding: 20px; }
  .track-feature .cover { max-width: 220px; margin: 0 auto; }
  .track-feature h3 { font-size: 30px; }
  .track-actions { justify-content: center; }
  .track-actions .btn-primary,
  .track-actions .btn-ghost { width: 100%; justify-content: center; }

  /* Press cards */
  #imprensa-simple .press-cards { grid-template-columns: 1fr !important; }

  /* Dock — só lateral some, dock-mobile cuida do resto */
  .dock { display: none; }
  .dock-mobile { display: flex; }

  /* Loja empty / agenda empty */
  .empty-state { padding: 40px 18px; }
  .empty-state h3 { font-size: 22px; }
  .empty-state p { font-size: 16px; }

  /* WhatsApp big CTA */
  #contato .btn-primary { width: 100%; justify-content: center; padding: 16px 24px !important; font-size: 12px !important; }
}

/* Very narrow phones */
@media (max-width: 380px) {
  .section-inner { padding: 0 14px; }
  .section-head h2 { font-size: 30px; }
  .topnav-cta { min-width: 104px; font-size: 9px; padding: 6px 10px !important; }
  .hero-logo { width: 80vw; }
  .hero-tagline .phrase { font-size: 14px; }
  .ticker-item { font-size: 18px; }
  .footer-wordmark { font-size: 70px; }
}
