/* =========================================================================
   LAYCER — Estilo global (Dark) | Vanilla CSS
   ========================================================================= */

/* ---------- Variáveis ---------- */
:root {
  --black: #000000;
  --near-black: #0a0a0a;
  --dark: #111111;
  --gray: #8a8a8a;
  --light-gray: #cfcfcf;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.18);
  --border-strong: rgba(255, 255, 255, 0.4);
  --max: 1280px;
  --nav-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Oswald", "Helvetica Neue", Arial, sans-serif;

  /* DESKTOP: HERO - Zoom/top  / EX: 1 = foto inteira | 1.15 = pouco zoom | 1.4 = mais zoom */
  --hero-zoom: 1.6;
  --hero-top: 300px;
  
  /* DESKTOP: LOGO Menu - Tamanho/top. */
  --logo-size: 300px;
  --logo-top: 5px;

    /* DESKTOP: Menu do topo (SHOWS/MÚSICA/VÍDEOS/CONTATO) */
  --nav-top: 60px;
  --nav-font: 1rem;
  
  /* MOBILE: HERO - Margem-topo (0px para não deslocar) */
  --hero-top-mobile: 0px;

  /* MOBILE: LOGO Menu - Tamanho/top) */
  --logo-size-mobile: 90px;

  /* Tamanho da LOGO no rodapé: */
  --footer-logo-size: 100px;

}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Acessibilidade ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--white);
  color: var(--black);
  padding: 10px 16px;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

/* Esconde visualmente mas mantem para leitores de tela / SEO */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid var(--border-strong);
  color: var(--white);
  background: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn--outline:hover,
.btn--outline:focus-visible { background: var(--white); color: var(--black); }
.btn--solid { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--solid:hover,
.btn--solid:focus-visible { background: transparent; color: var(--white); }
.btn--wide { padding: 16px 60px; letter-spacing: 0.2em; margin: 0 auto 40px; }
.btn--sm { padding: 8px 16px; font-size: 0.66rem; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  padding: 0 clamp(16px, 4vw, 48px);
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

/* No CELULAR: o header (logo + ícone do menu) fica fixo, mas some ao
   descer a tela e reaparece assim que você rola pra cima — assim ele
   nunca fica "no caminho" do conteúdo, mas está sempre a 1 gesto. */
@media (max-width: 860px) {
  .site-header {
    position: fixed;
    transition: transform 0.35s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  }
  .site-header.nav-hidden { transform: translateY(-100%); }
}

.nav {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.nav-group { display: flex; gap: clamp(20px, 4vw, 56px); }
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

.nav-group a {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  font-weight: 400;
  color: var(--light-gray);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-group a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-group a:hover { color: var(--white); }
.nav-group a:hover::after { transform: scaleX(1); }

/* Distância do menu até o topo e tamanho da fonte — só no DESKTOP.
   Controle pelas variáveis --nav-top e --nav-font lá em cima (:root).
   (Esta regra fica DEPOIS da base .nav-group a de propósito, para vencer.) */
@media (min-width: 861px) {
  .site-header { padding-top: var(--nav-top); }
  .nav-group a { font-size: var(--nav-font); }
}

.nav-logo { justify-self: center; transform: translateY(var(--logo-top)); }
.nav-logo img { height: auto; width: auto; max-height: var(--logo-size-mobile); max-width: 100%; }

@media (min-width: 861px) {
  .nav-logo img { max-height: var(--logo-size); }
}

/* ---------- Toggle mobile ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  justify-content: center;
  justify-self: end;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Menu mobile ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-menu ul a {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  font-weight: 300;
}
.mobile-social {
  display: flex;
  gap: 24px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--gray);
}
.mobile-social a:hover { color: var(--white); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: translateY(var(--hero-top-mobile));
  z-index: 1;
}
/* Em telas largas (desktop), mostra a foto quase inteira com um leve zoom.
   Controle o zoom pela variável --hero-zoom lá em cima (:root). */
@media (min-width: 768px) {
  .hero-bg {
    object-fit: contain;
    object-position: center;
    transform: translateY(var(--hero-top)) scale(var(--hero-zoom));
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid var(--border-strong);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   SEÇÕES GERAIS
   ========================================================================= */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) clamp(16px, 5vw, 48px);
}
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  margin-bottom: clamp(30px, 4.5vw, 54px);
  text-transform: uppercase;
}

/* ---------- Música ---------- */
.section--music { position: relative; }
.music-embed {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  overflow: hidden;
}
.music-embed iframe { display: block; width: 100%; border: 0; }
.music-hint { text-align: center; color: var(--gray); font-size: 0.85rem; letter-spacing: 0.06em; margin-top: 22px; }
.music-hint a { color: var(--light-gray); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s var(--ease); }
.music-hint a:hover { color: var(--white); }

/* ---------- Shows ---------- */
.shows-list { display: flex; flex-direction: column; }
.show-row {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 26px 8px;
  border-top: 1px solid var(--border);
}
.show-row:last-child { border-bottom: 1px solid var(--border); }

.show-date { display: flex; flex-direction: column; }
.show-day { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.08em; }
.show-weekday { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.14em; }

.show-venue { font-size: 1rem; color: var(--light-gray); letter-spacing: 0.03em; }
.show-place { font-size: 0.95rem; color: var(--light-gray); text-align: left; }
.show-actions { display: flex; gap: 10px; }
.show-soon { color: var(--gray); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }

.shows-empty { text-align: center; color: var(--gray); letter-spacing: 0.1em; padding-top: 30px; }

/* ---------- Vídeos ---------- */
/* ---------- Vídeos ---------- */
.videos-empty { text-align: center; color: var(--gray); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.9rem; padding: 10px 0 4px; }
.video-block { max-width: 900px; margin: 0 auto clamp(50px, 8vw, 90px); text-align: center; }
.video-block:last-child { margin-bottom: 0; }
.video-heading {
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  border: 1px solid var(--border);
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Contato ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 8vw, 100px);
  max-width: 1040px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}
.contact-item { margin-bottom: 34px; }
.contact-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.contact-item p { color: var(--light-gray); font-size: 1.1rem; }
.contact-item a { color: var(--light-gray); transition: color 0.3s var(--ease); }
.contact-item a:hover { color: var(--white); }

.subscribe { text-align: center; align-self: start; }
.subscribe-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  margin-bottom: 14px;
}
.subscribe-sub { color: var(--light-gray); margin-bottom: 26px; font-size: 0.95rem; }
.subscribe-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  gap: 0;
}
.subscribe-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-right: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.subscribe-form input::placeholder { color: var(--gray); }
.subscribe-form input:focus { outline: none; border-color: var(--white); }
.subscribe-form .btn { border-left: none; }
.subscribe-note { color: var(--gray); font-size: 0.8rem; letter-spacing: 0.06em; margin-top: 16px; }
.subscribe-note.error { color: #ff6b6b; }
.subscribe-note.success { color: #6bffb0; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: clamp(50px, 8vw, 80px) clamp(16px, 5vw, 48px) 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-logo { margin-bottom: -36px; }
.footer-logo img { height: var(--footer-logo-size); width: auto; }
.footer-social { display: flex; gap: 26px; }
.footer-social a {
  color: var(--light-gray);
  display: inline-flex;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-social a:hover { color: var(--white); transform: translateY(-3px); }
.footer-copy { color: var(--gray); font-size: 0.78rem; letter-spacing: 0.08em; text-align: center; }

/* =========================================================================
   COOKIE BANNER
   ========================================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 16px clamp(16px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.82rem; color: var(--light-gray); letter-spacing: 0.03em; flex: 1; min-width: 240px; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* =========================================================================
   RESPONSIVO
   ========================================================================= */
@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-group { display: none; }
  .nav-logo { justify-self: start; }
  .nav-toggle { display: flex; }

  .show-row {
    grid-template-columns: 90px 1fr;
    grid-template-areas:
      "date info"
      "date place"
      "actions actions";
    gap: 6px 18px;
    row-gap: 10px;
  }
  .show-date { grid-area: date; align-self: start; }
  .show-info { grid-area: info; }
  .show-place { grid-area: place; }
  .show-actions { grid-area: actions; margin-top: 12px; }

  .contact-grid { grid-template-columns: 1fr; text-align: center; }
  .contact-info { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title img { width: 82vw; }
  .subscribe-form { flex-direction: column; gap: 12px; }
  .subscribe-form input { border-right: 1px solid var(--border-strong); }
  .subscribe-form .btn { border-left: 1px solid var(--white); padding: 14px; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: center; }
}

/* =========================================================================
   REVEAL AO ROLAR (aparição suave e gradual)
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduz movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  /* Sem animação: mostra tudo imediatamente */
  .reveal { opacity: 1 !important; transform: none !important; }
}
