@font-face {
  font-family: 'Boomme';
  src: url('assets/fonts/Boomme.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --azul: #1586FB;
  --azul-claro: #C2FB7A;
  --limao: #D8F700;
  --vermelho: #FE512D;
  --preto: #231E21;
  --max: 1080px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--preto);
  color: #fff;
  font-family: 'Boomme', 'Arial Black', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

h1, h2, .wordmark, .btn, .tagline, .section-label, .show-date {
  font-family: 'Boomme', 'Arial Black', sans-serif;
  text-transform: uppercase;
}

p, .lede, .nav a, .links-list a, .show-place, .ticket-info, .ticket-info strong, .ticket-info span {
  font-family: 'Space Grotesk', 'Arial', sans-serif;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Ticker */

.ticker {
  background: var(--limao);
  color: var(--preto);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 4px solid var(--preto);
  font-family: 'Boomme', sans-serif;
  font-size: 12px;
  padding: 9px 0;
}

.ticker-track {
  display: inline-flex;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  background: var(--preto);
  border-bottom: 4px solid var(--vermelho);
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.wordmark-img {
  height: 42px;
  display: block;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  font-family: 'Boomme', sans-serif;
  font-size: 10px;
  color: #fff;
  padding: 9px 14px;
  border: 2px solid var(--limao);
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  background: var(--limao);
  color: var(--preto);
  transform: rotate(-2deg) scale(1.05);
}

/* Hero */

.hero {
  position: relative;
  padding: 70px 0 110px;
  text-align: center;
  background-color: var(--azul);
  /* Quando assets/img/fotos/hero-bg.jpg existir, ele aparece aqui atrás do logo,
     tingido pelo gradiente da marca (background-blend-mode). Sem o arquivo,
     o gradiente sozinho preenche normalmente — nada quebra. */
  background-image:
    url('assets/img/fotos/hero-bg.jpg'),
    radial-gradient(ellipse 120% 90% at 50% 0%, var(--azul) 0%, var(--azul-claro) 55%, var(--limao) 100%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: multiply;
  overflow: hidden;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: repeating-linear-gradient(45deg, rgba(35,30,33,0.08), rgba(35,30,33,0.08) 10px, rgba(35,30,33,0.02) 10px, rgba(35,30,33,0.02) 20px), var(--azul-claro);
  border: 2px dashed var(--preto);
  color: var(--preto);
  font-family: 'Boomme', sans-serif;
  font-size: 10px;
  text-align: center;
  box-sizing: border-box;
}

.photo-placeholder span {
  font-size: 22px;
  line-height: 1;
}

.hero-logo {
  max-width: min(720px, 92%);
  width: 100%;
  height: auto;
  filter: drop-shadow(10px 12px 0 rgba(35,30,33,0.55));
}

.tagline {
  font-size: clamp(20px, 3.6vw, 34px);
  color: var(--preto);
  margin: 30px 0 36px;
  transform: rotate(-1deg);
  line-height: 1.2;
  text-shadow: 3px 3px 0 #fff;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions-top {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 16px 26px;
  font-size: 12px;
  border-radius: 999px;
  border: 3px solid var(--preto);
  box-shadow: 6px 6px 0 var(--preto);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translate(3px, 3px) rotate(-1deg);
  box-shadow: 3px 3px 0 var(--preto);
}

.btn-red {
  background: var(--vermelho);
  color: #fff;
  -webkit-text-stroke: 1px var(--preto);
}

.btn-outline {
  background: #fff;
  color: var(--preto);
}

.btn-limao {
  background: var(--limao);
  color: var(--preto);
  -webkit-text-stroke: 0.5px var(--vermelho);
  box-shadow: 6px 6px 0 var(--vermelho);
}

.btn-limao:hover {
  box-shadow: 3px 3px 0 var(--vermelho);
}

/* Sections */

.section {
  padding: 90px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 22px;
  background: inherit;
  clip-path: polygon(
    0% 100%, 5% 0%, 10% 100%, 15% 0%, 20% 100%, 25% 0%, 30% 100%, 35% 0%,
    40% 100%, 45% 0%, 50% 100%, 55% 0%, 60% 100%, 65% 0%, 70% 100%, 75% 0%,
    80% 100%, 85% 0%, 90% 100%, 95% 0%, 100% 100%
  );
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--limao);
  margin: 0 0 20px;
}

.section-label-alt { color: var(--vermelho); }

.tilt {
  font-size: clamp(32px, 5.6vw, 60px);
  line-height: 0.95;
  color: var(--vermelho);
  -webkit-text-stroke: 1.5px var(--limao);
  text-shadow: 5px 5px 0 var(--preto);
  transform: rotate(-2deg);
  margin: 0 0 28px;
  display: inline-block;
}

.tilt-left { transform: rotate(2deg); }

.lede { font-size: 19px; }

.section-sobre {
  background: var(--azul-claro);
  color: var(--preto);
}

.section-sobre .section-label { color: var(--vermelho); }

.section-sobre .tilt {
  -webkit-text-stroke: 1.5px var(--preto);
  text-shadow: 5px 5px 0 #fff;
}

.section-sobre strong { background: var(--vermelho); color: #fff; padding: 0 4px; }
.inline-link { text-decoration: underline; text-decoration-color: var(--vermelho); text-decoration-thickness: 3px; }

.section-agenda {
  background: var(--preto);
  color: #fff;
}

.section-ingressos {
  background: var(--limao);
  color: var(--preto);
}

.section-ingressos .tilt {
  color: var(--vermelho);
  -webkit-text-stroke: 1.5px var(--preto);
  text-shadow: 5px 5px 0 #fff;
}

.section-ingressos .section-label-alt { color: var(--vermelho); }

.tickets-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.ticket-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 3px solid var(--preto);
  border-radius: 14px;
  box-shadow: 8px 8px 0 rgba(35,30,33,0.35);
  flex-wrap: wrap;
  transform: rotate(-0.5deg);
}

.ticket-item:nth-child(even) { transform: rotate(0.5deg); }

.ticket-date {
  font-family: 'Boomme', sans-serif;
  font-size: 14px;
  background: var(--vermelho);
  color: #fff;
  padding: 9px 12px;
  border-radius: 6px;
  min-width: 96px;
  text-align: center;
}

.ticket-info {
  flex: 1;
  min-width: 200px;
  color: var(--preto);
}

.ticket-info strong { display: block; font-size: 19px; }
.ticket-info span { color: #666; font-size: 14px; }

.ticket-btn {
  padding: 12px 22px;
  font-size: 11px;
}

.section-galeria {
  background: #fff;
  color: var(--preto);
}

.section-galeria .tilt { color: var(--azul); -webkit-text-stroke: 1.5px var(--preto); text-shadow: 5px 5px 0 var(--limao); }
.section-galeria .lede { margin-bottom: 8px; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 34px;
}

.photo-frame {
  aspect-ratio: 1 / 1;
  border: 6px solid #fff;
  border-radius: 10px;
  box-shadow: 8px 8px 0 rgba(35,30,33,0.35);
  outline: 2px solid var(--preto);
  overflow: hidden;
}

.photo-frame img.photo-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf1 { transform: rotate(-3deg); }
.pf2 { transform: rotate(2deg); margin-top: 22px; }
.pf3 { transform: rotate(-2deg); }
.pf4 { transform: rotate(3deg); }
.pf5 { transform: rotate(-4deg); margin-top: 22px; }
.pf6 { transform: rotate(2deg); }

@media (max-width: 780px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .pf2, .pf5 { margin-top: 0; }
}

.section-stickers {
  background: var(--azul);
  color: #fff;
}

.section-stickers .tilt { color: var(--limao); -webkit-text-stroke: 1.5px var(--vermelho); }

.section-contato {
  background: var(--vermelho);
  color: #fff;
}

.section-contato .tilt { color: #fff; -webkit-text-stroke: 1.5px var(--preto); text-shadow: 5px 5px 0 var(--limao); }
.section-contato .section-label-alt { color: var(--preto); }

/* Agenda */

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.show-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 3px solid var(--limao);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  flex-wrap: wrap;
  transform: rotate(-0.6deg);
  transition: transform 0.15s ease;
}

.show-item:nth-child(even) { transform: rotate(0.6deg); border-color: var(--azul); }
.show-item:hover { transform: rotate(0deg) scale(1.01); }

.show-date {
  font-size: 13px;
  min-width: 96px;
  color: var(--preto);
  background: var(--limao);
  padding: 7px 10px;
  border-radius: 6px;
}

.show-place { flex: 1; min-width: 200px; }
.show-place strong { display: block; font-size: 17px; }
.show-place span { color: #b8b8b8; font-size: 14px; }

.show-link {
  font-size: 11px;
  font-family: 'Boomme', sans-serif;
  padding: 8px 14px;
  border: 2px solid #fff;
  border-radius: 999px;
}

.shows-empty {
  color: var(--limao);
  font-size: 15px;
  padding: 20px 0;
}

/* Stickers */

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 20px;
}

.sticker {
  width: 100%;
  height: auto;
  border: 6px solid #fff;
  border-radius: 10px;
  box-shadow: 8px 8px 0 rgba(35,30,33,0.5);
}

.s1 { transform: rotate(-4deg); }
.s2 { transform: rotate(3deg); margin-top: 30px; }
.s3 { transform: rotate(2deg); }
.s4 { transform: rotate(-3deg); margin-top: -10px; }

/* Contato */

.links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: Arial, sans-serif;
}

.links-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--preto);
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  border: 3px solid var(--preto);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}

.links-list a em { font-style: normal; color: var(--limao); }

.links-list a:hover {
  transform: translate(-3px, -3px) rotate(-1deg);
  background: #35302f;
}

/* Footer */

.site-footer {
  background: var(--preto);
  color: #fff;
  padding: 26px 0;
  font-family: 'Boomme', sans-serif;
  font-size: 10px;
  text-align: center;
  border-top: 4px solid var(--limao);
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .nav a { font-size: 9px; padding: 7px 10px; }
  .sticker-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 80px; }
}
