/* ============================================================
   Cesar Galones — Cantor Sertanejo · Site Oficial
   Tema: palco sertanejo — escuro quente + dourado, foto-driven
   ============================================================ */

:root {
  --ink:        #0c0907;
  --ink-2:      #150f0b;
  --wine:       #20110b;
  --panel:      rgba(255, 244, 230, 0.04);
  --panel-2:    rgba(255, 244, 230, 0.06);
  --line:       rgba(224, 169, 85, 0.20);
  --gold:       #e0a955;
  --gold-bright:#f4cf8c;
  --ember:      #d8743f;
  --cream:      #f7f0e6;
  --muted:      #bcab97;
  --muted-dim:  #8a7b6a;

  --shadow:     0 40px 90px -50px rgba(0,0,0,.92);
  --ease:       cubic-bezier(.22,.61,.36,1);
  --maxw:       1180px;
  --pad:        clamp(20px, 5vw, 68px);

  --font-display: 'Oswald', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: linear-gradient(175deg, var(--ink) 0%, var(--wine) 140%);
  min-height: 100vh; line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--ink); }

.eyebrow, .kicker {
  font-size: .74rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.06;
  letter-spacing: .005em; color: var(--cream);
}
h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: .01em; }

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: linear-gradient(180deg, rgba(12,9,7,.85), rgba(12,9,7,0));
  transition: background .4s var(--ease), padding .35s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,9,7,.94); border-bottom-color: var(--line);
  padding-top: 12px; padding-bottom: 12px; backdrop-filter: blur(10px);
}
.nav-left { display: flex; align-items: center; gap: 16px; }
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 54px; width: auto; display: block;
  background: var(--cream); border-radius: 12px; padding: 6px 12px;
  box-shadow: 0 8px 22px -10px rgba(0,0,0,.7); transition: height .35s var(--ease);
}
.nav.scrolled .brand-logo { height: 46px; }

/* ---------- Mini-player de radio no topo ---------- */
.radio-mini {
  display: flex; align-items: center; gap: 11px; cursor: pointer;
  border: 1px solid var(--line); background: rgba(255,244,230,.05);
  border-radius: 100px; padding: 6px 16px 6px 6px; transition: border-color .25s, background .25s;
  font-family: var(--font-body); color: var(--cream);
}
.radio-mini:hover { border-color: var(--gold); background: rgba(224,169,85,.08); }
.rm-btn {
  position: relative; flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  display: grid; place-items: center; box-shadow: 0 8px 18px -8px rgba(224,169,85,.8);
}
.rm-btn svg { width: 17px; height: 17px; fill: #2a1708; grid-area: 1/1; }
.rm-btn .ico-pause { display: none; }
.radio-mini.playing .ico-play { display: none; }
.radio-mini.playing .ico-pause { display: block; }
.rm-btn .play-spinner { grid-area: 1/1; width: 17px; height: 17px; border-radius: 50%; border: 2.5px solid rgba(42,23,8,.25); border-top-color: #2a1708; display: none; animation: spin .8s linear infinite; }
.radio-mini.loading .ico-play, .radio-mini.loading .ico-pause { display: none; }
.radio-mini.loading .play-spinner { display: block; }
.rm-logo {
  flex: none; height: 34px; width: auto; display: block; border-radius: 8px;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,.8);
}
.rm-info { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.rm-live { display: flex; align-items: center; gap: 6px; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ember); font-weight: 700; }
.rm-title { font-size: .82rem; font-weight: 600; color: var(--cream); white-space: nowrap; }
.radio-mini .eq { display: none; align-items: flex-end; gap: 3px; height: 20px; margin-left: 2px; }
.radio-mini.playing .eq { display: flex; }
.radio-mini .eq span { width: 3px; height: 5px; background: var(--gold); border-radius: 2px; animation: eq .9s ease-in-out infinite; }
.radio-mini .eq span:nth-child(2){ animation-delay:.15s } .radio-mini .eq span:nth-child(3){ animation-delay:.3s } .radio-mini .eq span:nth-child(4){ animation-delay:.45s }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links > a:not(.nav-btn) {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); position: relative; transition: color .25s;
}
.nav-links > a:not(.nav-btn)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links > a:not(.nav-btn):hover { color: var(--cream); }
.nav-links > a:not(.nav-btn):hover::after, .nav-links > a.active::after { width: 100%; }
.nav-live { display: inline-flex; align-items: center; gap: 7px; }

.nav-social { display: flex; gap: 12px; align-items: center; }
.nav-social a, .footer-social a {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); color: var(--muted); transition: .25s var(--ease);
}
.nav-social svg, .footer-social svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.nav-social a:hover, .footer-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.nav-btn {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 100px; color: #2a1708;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 26px -12px rgba(224,169,85,.7); transition: transform .25s var(--ease);
}
.nav-btn:hover { transform: translateY(-2px); }

.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ember);
  box-shadow: 0 0 0 0 rgba(216,116,63,.7); animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(216,116,63,.6); }
  70% { box-shadow: 0 0 0 7px rgba(216,116,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,116,63,0); }
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

/* ============================================================ HERO (split: texto esq. | foto dir.) */
.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.04fr .96fr; align-items: stretch; overflow: hidden; }
.hero-content {
  order: 1; position: relative; z-index: 2; align-self: center;
  padding: 130px var(--pad) 84px;
  padding-left: max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad)));
}
.hero-bg { order: 2; position: relative; z-index: 1; min-height: 100svh; background: #1a110c; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero-bg::before { /* funde a borda esquerda da foto no fundo escuro */
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(12,9,7,.6) 12%, transparent 36%),
    linear-gradient(180deg, rgba(12,9,7,.4) 0%, transparent 24%);
}
.eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.dash { width: 34px; height: 1.5px; background: var(--gold); display: inline-block; }
.hero-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.3rem, 4.4vw, 4.2rem); line-height: 1.02; letter-spacing: .005em;
  margin: 20px 0 22px; color: var(--cream);
  text-shadow: 0 24px 70px rgba(0,0,0,.6);
}
.hero-title em { font-style: normal; font-weight: 700;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-tagline { font-size: clamp(1.02rem, 2.1vw, 1.3rem); color: var(--muted); font-weight: 300; max-width: 46ch; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-down { display: inline-block; margin-top: 40px; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); transition: color .25s; }
.hero-down:hover { color: var(--gold); }

/* ============================================================ BOTÕES */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: .92rem;
  padding: 14px 24px; border-radius: 100px; border: 1px solid transparent;
  letter-spacing: .02em; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn .ico-arrow { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.btn:hover .ico-arrow { transform: translateX(3px); }
.btn-gold { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #2a1708; box-shadow: 0 14px 30px -12px rgba(224,169,85,.7); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -12px rgba(224,169,85,.85); }
.btn-gold .ico-wa { fill: #2a1708; width: 18px; height: 18px; }
.btn-ghost { background: rgba(12,9,7,.35); border-color: var(--line); color: var(--cream); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(224,169,85,.10); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn .ico-ext { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================ SECTIONS */
.section { padding: clamp(72px, 11vw, 140px) var(--pad); position: relative; }
/* conteudo limitado e centralizado (a secao em si vai full-width p/ bandas) */
.section > .section-head,
.section > .artista-grid,
.section > .musica-wrap,
.section > .shows-wrap,
.section > .eventos,
.section > .video-frame { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: clamp(34px, 6vw, 60px); }
.section-head .kicker { display: block; margin-bottom: 14px; }

/* contraste: bandas alternadas + divisorias sutis */
.section.band {
  background:
    linear-gradient(180deg, rgba(255,244,230,.045) 0%, rgba(255,244,230,.018) 55%, rgba(255,244,230,.03) 100%);
  border-top: 1px solid rgba(224,169,85,.13);
  border-bottom: 1px solid rgba(224,169,85,.13);
}
.section:not(.band) + .section.band, .section.band + .section:not(.band) { } /* transicoes ja marcadas pelas bordas da band */

/* ---------- O Artista ---------- */
.artista-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.artista-text .kicker { display: block; margin-bottom: 16px; }
.artista-text h2 { margin-bottom: 22px; }
.bio-lead { font-family: var(--font-display); font-size: clamp(1.2rem,2.3vw,1.5rem); font-weight: 600; color: var(--cream); margin-bottom: 14px; line-height: 1.3; }
.artista-text > p { color: var(--muted); max-width: 48ch; margin-bottom: 16px; }
.eventos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.evento-card { border: 1px solid var(--line); border-radius: 14px; padding: 20px 18px; background: var(--panel); transition: .3s var(--ease); }
.evento-card:hover { transform: translateY(-3px); border-color: var(--gold); background: var(--panel-2); }
.evento-ico { font-size: 1.5rem; display: block; margin-bottom: 10px; }
.evento-card h3 { font-size: 1.02rem; color: var(--cream); margin-bottom: 4px; }
.evento-card p { font-size: .85rem; color: var(--muted-dim); line-height: 1.45; }

.artista-photo { position: relative; }
.portrait {
  position: relative; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  aspect-ratio: 4/5; background: #1a110c; box-shadow: var(--shadow);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }
.portrait::after { /* leve calor dourado por cima da foto */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(20,12,8,.35) 100%),
              radial-gradient(80% 50% at 50% 0%, rgba(224,169,85,.10), transparent 60%);
}

/* keyframes usados pelo mini-player de rádio (topo) */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes eq { 0%,100%{height:5px} 50%{height:18px} }

/* ---------- Músicas / Spotify ---------- */
.musica { position: relative; overflow: hidden; }
.musica-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 60% at 80% 48%, rgba(29,185,84,.12), transparent 62%),
    radial-gradient(40% 55% at 86% 38%, rgba(224,169,85,.08), transparent 60%);
}
.musica-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px,4vw,60px); align-items: center; }
.musica-text .kicker { display: block; margin-bottom: 14px; }
.musica-text h2 { margin-bottom: 20px; }
.musica-intro { font-size: 1.06rem; color: var(--muted); max-width: 38ch; }
.musica-intro em { font-style: normal; font-weight: 600; color: var(--cream); }
.btn-spotify {
  display: inline-flex; align-items: center; gap: 11px; margin-top: 28px;
  background: #1db954; color: #06210f; font-family: var(--font-body); font-weight: 700;
  font-size: .98rem; padding: 14px 26px; border-radius: 100px;
  box-shadow: 0 16px 32px -14px rgba(29,185,84,.75); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-spotify:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(29,185,84,.9); }
.btn-spotify svg { width: 21px; height: 21px; fill: #06210f; }
.musica-note { margin-top: 18px; font-size: .82rem; color: var(--muted-dim); }
.spotify-embed {
  border-radius: 18px; padding: 14px; border: 1px solid rgba(29,185,84,.22);
  background: rgba(10,18,12,.5);
  box-shadow: var(--shadow), 0 0 60px -20px rgba(29,185,84,.35);
  backdrop-filter: blur(4px);
}
.spotify-embed iframe { display: block; width: 100%; }

/* ---------- Vídeo ---------- */
.video { position: relative; overflow: hidden; }
.video-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(55% 60% at 50% 42%, rgba(224,169,85,.10), transparent 62%);
}
.video .section-head, .video-frame { position: relative; z-index: 1; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); background: #000;
  box-shadow: var(--shadow), 0 0 80px -28px rgba(224,169,85,.45);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Shows / Form ---------- */
.shows { overflow: hidden; }
.shows-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(42% 70% at 74% 56%, rgba(224,169,85,.12), transparent 60%);
}
.shows .section-head, .shows-wrap, .shows .eventos { position: relative; z-index: 1; }
.shows .eventos { margin-top: 0; margin-bottom: clamp(40px, 5vw, 62px); }
.shows .evento-card { background: rgba(0,0,0,.24); }
.shows .evento-card:hover { background: rgba(0,0,0,.32); }
.shows-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,64px); align-items: start; }
.shows-intro { font-size: 1.08rem; color: var(--muted); max-width: 40ch; }
.event-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.event-list li { display: flex; align-items: center; gap: 15px; padding: 15px 18px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(0,0,0,.24); transition: border-color .25s, background .25s, transform .25s var(--ease); }
.event-list li:hover { border-color: var(--gold); background: rgba(0,0,0,.32); transform: translateX(3px); }
.event-list .ev-ico { font-size: 1.45rem; line-height: 1; flex: none; }
.event-list strong { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .02em; color: var(--cream); font-size: 1rem; }
.event-list span { color: var(--muted-dim); font-size: .87rem; }
.shows-benefits { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 15px; }
.shows-benefits li { display: flex; align-items: flex-start; gap: 13px; color: var(--cream); font-size: 1rem; line-height: 1.4; }
.bcheck { flex: none; width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px;
  background: rgba(224,169,85,.16); border: 1px solid rgba(224,169,85,.35); }
.bcheck svg { width: 13px; height: 13px; fill: none; stroke: var(--gold); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.shows-direct {
  display: inline-flex; align-items: center; gap: 11px; margin-top: 32px;
  padding: 13px 20px; border-radius: 100px; border: 1px solid var(--line);
  background: rgba(255,244,230,.03); color: var(--muted); font-size: .92rem; transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.shows-direct:hover { border-color: var(--gold); background: rgba(224,169,85,.08); transform: translateY(-2px); }
.shows-direct .ico-wa { flex: none; width: 22px; height: 22px; fill: #2ad15a; }
.shows-direct strong { color: var(--gold); font-weight: 700; white-space: nowrap; }
.form {
  background: linear-gradient(180deg, rgba(255,244,230,.05), rgba(255,244,230,.02));
  border: 1px solid rgba(224,169,85,.2); border-radius: 22px; padding: clamp(24px,3.2vw,34px);
  box-shadow: var(--shadow), 0 0 70px -30px rgba(224,169,85,.4);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .98rem; color: var(--cream);
  background: rgba(0,0,0,.28); border: 1px solid var(--line); border-radius: 11px;
  padding: 13px 15px; transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224,169,85,.15); }
.field select { appearance: none; cursor: pointer; padding-right: 40px; color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23e0a955' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
/* opcoes do dropdown nativo: fundo escuro + texto creme (some o branco/azul do sistema) */
.field select option, .field select optgroup { background-color: #1c130d; color: var(--cream); }
.field select option:checked { background-color: #2a1c10; color: var(--gold-bright); }
/* appearance:none e' o que faz o iOS respeitar a altura (senao o campo cresce).
   Efeito colateral: o iOS deixa de desenhar o placeholder DD/MM/AAAA nativo —
   por isso desenhamos um custom (.date-ph) por cima. */
.field input[type="date"] {
  color-scheme: dark; -webkit-appearance: none; appearance: none;
  min-height: 0; height: 48px; line-height: normal; cursor: pointer;
}
.field input[type="date"]::-webkit-date-and-time-value { text-align: left; margin: 0; line-height: normal; }
.field input[type="date"]::-webkit-datetime-edit { padding: 0; color: var(--cream); }
/* campo vazio (required => :invalid): some o texto nativo pra nao duplicar o .date-ph */
.field input[type="date"]:invalid::-webkit-datetime-edit { color: transparent; -webkit-text-fill-color: transparent; }
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(72%) sepia(38%) saturate(560%) hue-rotate(348deg) brightness(95%); cursor: pointer;
}
/* placeholder custom DD/MM/AAAA: visivel so com o campo vazio (input :invalid) */
.date-field { position: relative; }
.date-ph {
  position: absolute; left: 16px; bottom: 0; height: 48px; display: flex; align-items: center;
  font-size: .98rem; color: var(--muted-dim); pointer-events: none;
}
.date-field input[type="date"]:valid ~ .date-ph { display: none; }
.form-hint { text-align: center; font-size: .8rem; color: var(--muted-dim); margin-top: 14px; }

/* ---------- Loja ---------- */
.loja { text-align: center; overflow: hidden; border-radius: 0; }
.loja-bg { position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 80% at 50% 40%, rgba(224,169,85,.14), transparent 65%); }
.loja-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.loja-inner .kicker { display: block; margin-bottom: 14px; }
.loja-inner h2 { margin-bottom: 16px; }
.loja-inner p { color: var(--muted); font-size: 1.08rem; max-width: 40ch; margin: 0 auto 32px; }

/* ============================================================ FOOTER */
.footer { position: relative; overflow: hidden; border-top: 1px solid rgba(224,169,85,.18);
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.5)); }
.footer-glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 130% at 50% 0%, rgba(224,169,85,.09), transparent 55%); }
.footer-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,7vw,78px) var(--pad) 34px; }
.footer-main { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr; gap: clamp(28px,5vw,56px); padding-bottom: 38px; }
.footer-brand { max-width: 380px; }
.footer-logo { height: 64px; width: auto; display: block; background: var(--cream);
  border-radius: 14px; padding: 8px 14px; box-shadow: 0 12px 28px -14px rgba(0,0,0,.8); }
.footer-tag { margin: 22px 0 24px; color: var(--muted); font-size: .96rem; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-col { display: flex; flex-direction: column; gap: 13px; align-items: flex-start; }
.footer-col h4 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  font-size: .86rem; letter-spacing: .1em; color: var(--gold); margin-bottom: 5px; }
.footer-col a { color: var(--muted); font-size: .96rem; transition: color .25s; }
.footer-col a:hover { color: var(--gold); }
.footer-wa { color: var(--gold) !important; font-weight: 700; }
.footer-cta { color: var(--cream) !important; font-weight: 600; }
.footer-radio { font-size: .82rem; color: var(--muted-dim); margin-top: 4px; line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; border-top: 1px solid rgba(224,169,85,.1); }
.footer-bottom p { font-size: .82rem; color: var(--muted-dim); }

/* ============================================================ WHATSAPP FLUTUANTE */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, #2ad15a, #1faa47); color: #fff;
  box-shadow: 0 14px 30px -8px rgba(31,170,71,.6); transition: transform .25s var(--ease);
  animation: waPop .5s .8s both;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal { transition-duration: 1s; }
.hero-title.reveal { transition-delay: .08s; }
.hero-tagline.reveal { transition-delay: .18s; }
.hero-cta.reveal { transition-delay: .28s; }
.hero-down.reveal { transition-delay: .38s; }

/* ============================================================ RESPONSIVO */
/* menu colapsa em hamburguer cedo (antes de espremer no tablet) */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; align-items: flex-start;
    background: rgba(12,9,7,.98); border-bottom: 1px solid var(--line);
    padding: 10px var(--pad) 24px; transform: translateY(-135%); transition: transform .4s var(--ease); backdrop-filter: blur(12px);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > a:not(.nav-btn) { padding: 14px 0; width: 100%; font-size: 1rem; }
  .nav-btn { margin-top: 8px; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-bg { order: -1; min-height: 48svh; }
  .hero-img { object-position: center 22%; }
  .hero-bg::before {
    background: linear-gradient(180deg, rgba(12,9,7,.25) 0%, transparent 28%, transparent 62%, var(--ink) 100%);
  }
  .hero-content { padding: 44px var(--pad) 64px; padding-left: var(--pad); }
  .artista-grid { grid-template-columns: 1fr; }
  .artista-photo { max-width: 380px; }
  .shows-wrap, .musica-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .radio-mini { padding: 5px 8px 5px 5px; gap: 7px; }
  .rm-info, .radio-mini .eq { display: none !important; }
  .rm-logo { height: 30px; }
  .nav-left { gap: 10px; }
  .brand-logo { height: 44px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .eventos { grid-template-columns: 1fr; }
  .player { flex-wrap: wrap; }
  .eq { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
