/* ==========================================================================
   JAY — Landing page institucional
   ========================================================================== */

:root {
  --yellow: #F6C520;
  --yellow-deep: #E0A800;
  --green: #1C3B23;
  --green-bright: #B7E23A;
  --ink: #14110D;
  --cream: #FFF7E3;
  --spotify: #1ED760;

  --container: 1240px;
  --section-pad-x: clamp(24px, 6vw, 90px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  background: var(--ink);
  color: var(--cream);
}

h1, h2, h3, .disp {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

p { margin: 0; }

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

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.kicker--bright { color: var(--green-bright); }

.section-title {
  font-size: clamp(34px, 4.4vw, 60px);
  color: var(--cream);
}

/* Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--yellow);
  color: var(--ink);
}

.btn--primary:hover { background: var(--yellow-deep); }

/* Navbar
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 84px;
  display: flex;
  align-items: center;
  background: rgba(20, 17, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 247, 227, 0.08);
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

.navbar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding: 6px 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--yellow);
  transition: width .2s ease;
}

.nav-link:hover::after { width: 100%; }

.navbar__cta { padding: 11px 24px; font-size: 13px; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  transition: transform .25s ease, opacity .25s ease;
}

.navbar__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,0.15) 0%, rgba(20,17,13,0.05) 40%, rgba(20,17,13,0.75) 100%);
}

.hero__content {
  position: absolute;
  left: var(--section-pad-x);
  right: var(--section-pad-x);
  bottom: clamp(56px, 10vh, 96px);
}

.hero__kicker { color: var(--cream); opacity: 0.85; }

.hero__title {
  font-size: clamp(90px, 16vw, 220px);
  color: var(--cream);
  text-shadow: 0 12px 60px rgba(0,0,0,0.35);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}

.hero__scroll span {
  font-size: 11px;
  letter-spacing: 0.28em;
  opacity: 0.8;
  text-align: center;
}

.hero__scroll-dot { animation: bob 1.8s ease-in-out infinite; }

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* Sobre
   ========================================================================== */

.sobre {
  display: grid;
  grid-template-columns: minmax(280px, 560px) 1fr;
  background: var(--ink);
}

.sobre__media {
  position: relative;
  min-height: 420px;
}

.sobre__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.sobre__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 90px var(--section-pad-x);
}

.sobre__text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 247, 227, 0.78);
  max-width: 560px;
}

.tag-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

.tag {
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid rgba(255, 247, 227, 0.35);
  color: var(--cream);
}

/* Spotify
   ========================================================================== */

.spotify {
  background: var(--green);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 64px;
  padding: 100px var(--section-pad-x);
}

.spotify__content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.spotify__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 247, 227, 0.75);
  max-width: 440px;
}

.player {
  flex: 1 1 380px;
  max-width: 460px;
  background: rgba(20, 17, 13, 0.35);
  border: 1px solid rgba(255, 247, 227, 0.14);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(6px);
}

.player__track { display: flex; gap: 18px; align-items: center; }

.player__cover {
  width: 96px; height: 96px;
  border-radius: 14px;
  object-fit: cover;
  object-position: 50% 15%;
}

.player__meta { display: flex; flex-direction: column; gap: 6px; }
.player__label { font-size: 11px; letter-spacing: 0.16em; color: var(--green-bright); font-weight: 700; }
.player__name { font-size: 20px; font-weight: 700; color: var(--cream); }
.player__artist { font-size: 14px; color: rgba(255, 247, 227, 0.6); }

.player__progress {
  margin: 24px 0 8px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 247, 227, 0.18);
  position: relative;
}

.player__progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 38%;
  border-radius: 2px;
  background: var(--yellow);
}

.player__time {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 247, 227, 0.55);
  margin-bottom: 22px;
}

.player__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }

.player__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player__play {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 247, 227, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.player__play--active {
  border-color: transparent;
  background: var(--yellow);
  color: var(--ink);
}

.player__item-name {
  flex: 1;
  font-size: 14px;
  color: rgba(255, 247, 227, 0.85);
}

.player__item-time { font-size: 12px; color: rgba(255, 247, 227, 0.5); }

/* Eventos
   ========================================================================== */

.eventos {
  padding: 110px var(--section-pad-x) 120px;
  background: var(--ink);
}

.eventos__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.eventos__lead {
  font-size: 15px;
  color: rgba(255, 247, 227, 0.6);
  max-width: 320px;
  padding-bottom: 8px;
}

.eventos__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.event-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,0.15) 0%, rgba(20,17,13,0.55) 55%, rgba(20,17,13,0.96) 100%);
}

.event-card__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.event-card__year {
  font-size: 12px;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.event-card__name {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  font-size: 28px;
  color: var(--cream);
  margin-top: 6px;
}

.event-card__place {
  display: block;
  font-size: 13px;
  color: rgba(255, 247, 227, 0.7);
  margin-top: 4px;
}

/* Contato
   ========================================================================== */

.contato {
  position: relative;
  padding: 120px var(--section-pad-x);
  overflow: hidden;
}

.contato__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
}

.contato__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,17,13,0.96) 0%, rgba(20,17,13,0.86) 42%, rgba(20,17,13,0.4) 100%);
}

.contato__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 64px;
}

.contato__info {
  flex: 1 1 400px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contato__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 247, 227, 0.75);
}

.contato__channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  font-size: 16px;
}

.contato__channels a {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-color: rgba(246, 197, 32, 0.35);
}

.contato__channels a:hover { text-decoration-color: var(--yellow); }

.contato__form {
  flex: 1 1 360px;
  max-width: 420px;
  background: rgba(20, 17, 13, 0.55);
  border: 1px solid rgba(255, 247, 227, 0.16);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  width: 100%;
  background: rgba(255, 247, 227, 0.06);
  border: 1.5px solid rgba(255, 247, 227, 0.22);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  color: var(--cream);
}

.field::placeholder { color: rgba(255, 247, 227, 0.45); }
.field:focus { outline: none; border-color: var(--yellow); }

.contato__submit {
  justify-content: center;
  width: 100%;
  border: none;
  margin-top: 4px;
}

.contato__status {
  font-size: 13px;
  color: var(--green-bright);
  min-height: 18px;
}

/* Footer
   ========================================================================== */

.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 247, 227, 0.1);
  padding: 64px var(--section-pad-x);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__logo { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--cream); }
.footer__tag { font-size: 13px; letter-spacing: 0.14em; color: rgba(255, 247, 227, 0.5); }

.footer__social { display: flex; gap: 14px; }

.social-btn {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 247, 227, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.social-btn:hover {
  border-color: var(--yellow);
  color: var(--ink);
  background: var(--yellow);
}

.footer__divider { height: 1px; background: rgba(255, 247, 227, 0.1); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy { font-size: 13px; color: rgba(255, 247, 227, 0.5); }
.footer__nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer__nav .nav-link { font-size: 13px; }

/* Lenis (smooth scroll) — overrides recomendadas pela lib para evitar
   conflito com o scroll-behavior nativo enquanto ela está ativa. */

.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .eventos__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .navbar__nav,
  .navbar__cta { display: none; }

  .navbar__toggle { display: flex; }

  .navbar.is-menu-open .navbar__nav {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px var(--section-pad-x) 28px;
    background: rgba(20, 17, 13, 0.97);
    border-bottom: 1px solid rgba(255, 247, 227, 0.08);
  }

  .navbar.is-menu-open .navbar__nav .nav-link { padding: 12px 0; width: 100%; }

  .sobre { grid-template-columns: 1fr; }
  .sobre__media { height: 360px; }
  .sobre__content { padding: 64px var(--section-pad-x); }
}

@media (max-width: 640px) {
  .hero__title { font-size: clamp(64px, 22vw, 110px); }
  .hero__scroll span { max-width: 140px; }

  .eventos__grid { grid-template-columns: 1fr; }
  .eventos { padding: 80px var(--section-pad-x) 90px; }

  .spotify, .contato { padding: 72px var(--section-pad-x); }

  .contato__form { padding: 26px; }

  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
