/* ============================================================
   JOÃO PEDRO & ZÉ PAULO — SITE OFICIAL
   Design & Desenvolvimento por: Higor Keppe
   Instagram: https://www.instagram.com/higorkeppe_dev/
   ============================================================ */

/* ============================================================
   FONTS & DESIGN SYSTEM
   ============================================================ */
@font-face {
  font-family: 'Tungsten';
  src: url('./src/fonts/Tungsten-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'BebasNeue';
  src: url('./src/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

:root {
  --clr-bg-hero:    #070707;
  --clr-bg-single:  #0C0C0C;
  --clr-bg-dark:    #222222;
  --clr-bg-footer:  #0A0A0A;
  --clr-red:        #C31E1E;
  --clr-red-glow:   rgba(207,32,32,1);
  --clr-red-border: rgba(208,32,32,0.9);
  --clr-red-dim:    rgba(195,30,30,0.9);
  --clr-w90:        rgba(255,255,255,0.9);
  --clr-w80:        rgba(255,255,255,0.8);
  --clr-w70:        rgba(255,255,255,0.7);
  --clr-w60:        rgba(255,255,255,0.6);
  --clr-w85:        rgba(255,255,255,0.85);
  --clr-video:      #D9D9D9;

  --ff-t: 'Tungsten', sans-serif;
  --ff-r: 'Roboto Condensed', sans-serif;
  --ff-i: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
  --dur:  0.3s;

  /* padding lateral padrão de todas as seções */
  --pad: 11.3%;
}

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

html { font-size: 62.5%; scroll-behavior: smooth; }

/* Lenis Smooth Scroll Configuration */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Creative Dev Utilities (Text Reveals) */
.reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
}
.reveal-inner {
  display: block;
  will-change: transform, opacity;
}

body {
  font-family: var(--ff-i);
  background: var(--clr-bg-hero);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html.is-loading,
body.is-loading {
  overflow: hidden !important;
  scroll-behavior: auto !important;
}

/* ============================================================
   PRELOADER (AWWWARDS / HIGH-PERFORMANCE EXPERIENCE)
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-hero);
  overflow: hidden;
  will-change: transform;
}

.preloader__backdrop {
  position: absolute;
  inset: 0;
  background: #070707;
  z-index: 1;
}

.preloader__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 60rem);
  height: min(80vw, 60rem);
  background: radial-gradient(circle, rgba(195, 30, 30, 0.22) 0%, rgba(7, 7, 7, 0) 70%);
  border-radius: 50%;
  filter: blur(4rem);
  pointer-events: none;
  z-index: 2;
}

.preloader__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.2rem;
  width: min(90%, 46rem);
  will-change: transform, opacity;
}

.preloader__logo-wrap {
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 2rem rgba(208, 32, 32, 0.45));
}

.preloader__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.preloader__title {
  font-family: var(--ff-t);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--clr-w90);
  line-height: 0.9em;
}

.preloader__amp {
  color: var(--clr-red);
}

.preloader__subtitle {
  font-family: var(--ff-r);
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--clr-w60);
  text-transform: uppercase;
}

.preloader__progress {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.preloader__bar-track {
  width: 100%;
  height: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.3rem;
  overflow: hidden;
  position: relative;
}

.preloader__bar-fill {
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #8a1515 0%, var(--clr-red) 55%, #ff4a4a 100%);
  box-shadow: 0 0 1.5rem var(--clr-red-glow);
  will-change: transform;
}

.preloader__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--ff-i);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--clr-w70);
}

.preloader__status {
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--clr-w60);
}

.preloader__counter {
  font-family: var(--ff-r);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-w90);
  font-variant-numeric: tabular-nums;
}

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

/* scroll offset para compensar header fixo */
#home, #lancamentos, #essencia, #shows, #numeros, #contato {
  scroll-margin-top: 10rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  height: 10rem;
  border-bottom: 0.2rem solid rgba(255,255,255,0.4);
  background: transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.header.is-scrolled {
  background: rgba(7,7,7,0.95);
  backdrop-filter: blur(1.2rem);
  border-bottom-color: rgba(255,255,255,0.12);
}

.header__logo {
  width: 10rem;
  height: 10rem;
  object-fit: cover;
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.header__nav-link {
  font-family: var(--ff-i);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  transition: opacity var(--dur) var(--ease);
}
.header__nav-link:hover { opacity: 0.6; }

.header__nav-btn {
  font-family: var(--ff-i);
  font-size: 2rem;
  font-weight: 500;
  color: var(--clr-w90);
  border: 0.2rem solid var(--clr-w90);
  border-radius: 1.1rem;
  padding: 0.8rem 1.6rem;
  transition: background var(--dur) var(--ease);
}
.header__nav-btn:hover { background: rgba(255,255,255,0.1); }

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem;
  width: 4.4rem;
  height: 4.4rem;
}
.header__hamburger span {
  display: block;
  width: 2.8rem;
  height: 0.25rem;
  background: #fff;
  border-radius: 0.2rem;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), background var(--dur) var(--ease);
  transform-origin: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 80rem;
  background: var(--clr-bg-hero);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('./src/images/hero.webp') center/cover no-repeat;
  z-index: 0;
  will-change: transform, opacity;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  left: var(--pad);
  top: 50%;
  transform: translateY(-42%);
  width: 42%;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  z-index: 2;
}

.hero__title {
  font-family: var(--ff-t);
  font-size: clamp(8rem, 11.5vw, 22rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w90);
  text-transform: uppercase;
}
.hero__title-and { color: rgba(205,9,9,0.9); }

.hero__subtitle {
  font-family: var(--ff-r);
  font-size: clamp(2.2rem, 2.6vw, 5rem);
  font-weight: 700;
  line-height: 1.1em;
  color: var(--clr-w70);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-r);
  font-size: clamp(1.6rem, 1.8vw, 3.5rem);
  font-weight: 800;
  line-height: 0.88em;
  color: var(--clr-w90);
  border: 0.4rem solid var(--clr-red-border);
  border-radius: 1.5rem;
  padding: 1.4rem 2rem;
  box-shadow: 0 0 2rem 0 var(--clr-red-glow);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.hero__cta:hover {
  background: rgba(208,32,32,0.15);
  box-shadow: 0 0 4rem 0 var(--clr-red-glow);
}

/* descobra — canto inferior direito */
.hero__discover {
  position: absolute;
  right: 4.5rem;
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.hero__discover-text {
  font-family: var(--ff-i);
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w60);
}
.hero__discover-line {
  width: 0.5rem;
  height: 8rem;
  background: rgba(208,32,32,0.6);
}

/* ============================================================
   LANÇAMENTOS / NOVO SINGLE
   ============================================================ */
.single {
  position: relative;
  background: var(--clr-bg-single);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "content cover"
    "desc    cover"
    "cta     cover";
  align-items: center;
  align-content: center;
  height: 100vh;
  min-height: 60rem;
  padding: 0 var(--pad);
  column-gap: 8rem;
  row-gap: 2.8rem;
  isolation: isolate;
}

.single__glow,
.single__glow--right {
  position: absolute;
  width: 90rem;
  height: 90rem;
  background: radial-gradient(circle, rgba(208,32,32,0.5) 0%, rgba(208,32,32,0.2) 35%, rgba(12,12,12,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
}

.single__content {
  grid-area: content;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.single__eyebrow {
  font-family: var(--ff-t);
  font-size: clamp(3.5rem, 4vw, 7rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-red);
}

.single__title {
  font-family: var(--ff-t);
  font-size: clamp(6rem, 8.5vw, 16rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w90);
  white-space: nowrap;
}

.single__desc {
  grid-area: desc;
  position: relative;
  z-index: 2;
  font-family: var(--ff-r);
  font-size: clamp(1.8rem, 2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.25em;
  color: var(--clr-w70);
  max-width: 65rem;
}

.single__cta {
  grid-area: cta;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-family: var(--ff-r);
  font-size: clamp(1.8rem, 1.8vw, 3.2rem);
  font-weight: 800;
  line-height: 0.88em;
  color: var(--clr-w90);
  border: 0.4rem solid rgba(208,32,32,0.7);
  border-radius: 1.5rem;
  padding: 1.2rem 3.5rem;
  margin-top: 0.5rem;
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.single__cta:hover {
  background: rgba(208,32,32,0.15);
  box-shadow: 0 0 2rem rgba(208,32,32,0.6);
}

.single__cover-wrap {
  grid-area: cover;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.single__cover {
  width: 100%;
  max-width: 55rem;
  aspect-ratio: 1;
  object-fit: cover;
  filter: drop-shadow(0 2.5rem 5rem rgba(0,0,0,0.7));
  position: relative;
  z-index: 2;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), filter 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* ============================================================
   VINIL GIRATÓRIO (ATRÁS DA CAPA DO SINGLE)
   ============================================================ */
.single__vinyl-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 78%;
  max-width: 43rem;
  max-height: 43rem;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  /* Desloca sutilmente a partir do centro (-50% + 17%), deixando menos de um quarto do disco vazado */
  transform: translate(-33%, -50%);
  transform-origin: center center;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Hover Desktop: Capa desliza para a esquerda e o vinil desliza para fora à direita */
@media (min-width: 64.01em) {
  .single__cover-wrap:hover .single__cover {
    transform: translateX(-4.5rem);
    filter: drop-shadow(-1rem 3rem 6rem rgba(0, 0, 0, 0.85));
  }

  .single__cover-wrap:hover .single__vinyl-wrap {
    transform: translate(-6%, -50%);
  }
}

.vinyl {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* Rotação e profundidade */
  animation: spin 3s linear infinite;
  will-change: transform;
  filter: drop-shadow(0 1.5rem 3.5rem rgba(0, 0, 0, 0.8));
  
  /* Ranhuras e brilho acetinado do acetato/vinil */
  background: 
    /* 1. Reflexo giratório de luz (sheen característico do vinil em 2 feixes opostos) */
    conic-gradient(
      from 0deg,
      rgba(255, 255, 255, 0.15) 0deg,
      rgba(15, 15, 15, 0.95) 45deg,
      rgba(255, 255, 255, 0.08) 90deg,
      rgba(5, 5, 5, 0.98) 135deg,
      rgba(255, 255, 255, 0.15) 180deg,
      rgba(15, 15, 15, 0.95) 225deg,
      rgba(255, 255, 255, 0.08) 270deg,
      rgba(5, 5, 5, 0.98) 315deg,
      rgba(255, 255, 255, 0.15) 360deg
    ),
    /* 2. Sulcos concêntricos matematicamente circulares (tons de preto e cinza do código) */
    repeating-radial-gradient(
      circle at center,
      #080808 0,
      #080808 0.2rem,
      #252424 0.25rem,
      #141414 0.35rem,
      #313030 0.45rem,
      #0a0a0a 0.55rem,
      #2b2a2a 0.65rem,
      #1f1e1e 0.75rem
    );
  
  border: 0.2rem solid rgba(255, 255, 255, 0.08);
}

/* Selo central do vinil (Label em tons cinza/prata) */
.vinyl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(circle at center, #d0d0d0 0%, #b0b0b0 50%, #7a7a7a 85%, #555555 100%);
  border: 0.35rem solid #1e1e1e;
  box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.75), inset 0 0 0.8rem rgba(0, 0, 0, 0.4);
}

/* Furo central do vinil (Spindle hole) */
.vinyl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6%;
  height: 6%;
  border-radius: 50%;
  background: var(--clr-bg-single);
  border: 0.15rem solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0.4rem rgba(0, 0, 0, 0.9);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ============================================================
   A ESSÊNCIA
   ============================================================ */
.essencia {
  position: relative;
  background: var(--clr-bg-dark);
  overflow: hidden;
  height: 100vh;
  min-height: 60rem;
}

.essencia__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  pointer-events: none;
}

/* layout absoluto fiel ao Figma — base 1920×1080 */
.essencia__inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* A ESSÊNCIA — x:277/1920=14.4%, y:81/1080=7.5% */
.essencia__title {
  position: absolute;
  left: 14.4%;
  top: 7.5%;
  font-family: var(--ff-t);
  font-size: clamp(5rem, 11.5vw, 22rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w90);
  white-space: nowrap;
}

/* DE SÃO CARLOS... — x:277/1920=14.4%, y:274/1080=25.4% */
.essencia__subtitle {
  position: absolute;
  left: 14.4%;
  top: 25.4%;
  font-family: var(--ff-t);
  font-size: clamp(2.2rem, 3.1vw, 6rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-red);
  white-space: nowrap;
}

/* texto esquerdo — x:277/1920=14.4%, y:352/1080=32.6%, w:733/1920=38.2% */
.essencia__text--left {
  position: absolute;
  left: 14.4%;
  top: 32.6%;
  width: 38.2%;
  font-family: var(--ff-r);
  font-size: clamp(1.4rem, 1.3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.5em;
  color: var(--clr-w80);
}

/* texto direito — x:910/1920=47.4%, y:595/1080=55.1%, w:733/1920=38.2% */
.essencia__text--right {
  position: absolute;
  left: 47.4%;
  top: 55.1%;
  width: 38.2%;
  font-family: var(--ff-r);
  font-size: clamp(1.4rem, 1.3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.5em;
  color: var(--clr-w80);
}

/* imagem direita (topo) — x:1060/1920=55.2%, y:132/1080=12.2%, w:583/1920=30.4%, h:389/1080=36% */
.essencia__img--top {
  position: absolute;
  left: 55.2%;
  top: 12.2%;
  width: 30.4%;
  height: 36%;
  object-fit: cover;
}

/* imagem esquerda (baixo) — x:269/1920=14%, y:623/1080=57.7%, w:583/1920=30.4%, h:389/1080=36% */
.essencia__img--bottom {
  position: absolute;
  left: 14%;
  top: 57.7%;
  width: 30.4%;
  height: 36%;
  object-fit: cover;
}

/* ============================================================
   PRÓXIMOS SHOWS
   ============================================================ */
.shows {
  position: relative;
  background: var(--clr-bg-dark);
  overflow: hidden;
  min-height: 100vh;
  height: auto;
  padding: 8rem var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shows__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
}

.shows__inner { position: relative; z-index: 1; width: 100%; }

.shows__title {
  font-family: var(--ff-t);
  font-size: clamp(5rem, 10.4vw, 20rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w90);
  margin-bottom: 1rem;
}

.shows__subtitle {
  font-family: var(--ff-r);
  font-size: clamp(1.8rem, 2.1vw, 4rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w70);
  margin-bottom: 5rem;
}

.shows__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.shows__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 0.1rem solid rgba(255,255,255,0.5);
  transition: background var(--dur) var(--ease);
  cursor: default;
}
.shows__item:last-child { border-bottom: 0.1rem solid rgba(255,255,255,0.5); }
.shows__item:hover { background: rgba(255,255,255,0.05); }

.shows__left {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 10vw, 19.5rem);
}

.shows__date {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  min-width: 18rem;
}

.shows__date-text {
  font-family: var(--ff-r);
  font-size: clamp(2.4rem, 2.6vw, 5rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w90);
}

.shows__year {
  font-family: var(--ff-r);
  font-size: clamp(1.6rem, 1.8vw, 3.5rem);
  font-weight: 400;
  line-height: 0.88em;
  color: var(--clr-w80);
}

.shows__location {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.shows__city {
  font-family: var(--ff-r);
  font-size: clamp(2.4rem, 2.6vw, 5rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w90);
}

.shows__venue {
  font-family: var(--ff-r);
  font-size: clamp(1.6rem, 1.8vw, 3.5rem);
  font-weight: 400;
  line-height: 0.88em;
  color: var(--clr-w80);
}

.shows__ticket {
  font-family: var(--ff-r);
  font-size: clamp(1.4rem, 1.6vw, 3rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w60);
  border: 0.2rem solid var(--clr-w60);
  border-radius: 3rem;
  padding: 1.2rem 3rem;
  white-space: nowrap;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.shows__ticket:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.shows__ticket--soon {
  opacity: 0.55;
  cursor: default;
  border-style: dashed;
}
.shows__ticket--soon:hover {
  color: var(--clr-w60);
  border-color: var(--clr-w60);
  background: transparent;
}

.shows__empty {
  padding: 4.5rem 2rem;
  text-align: center;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.3);
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.3);
}

.shows__empty-title {
  font-family: var(--ff-t);
  font-size: clamp(2.4rem, 3.2vw, 4.8rem);
  font-weight: 700;
  color: var(--clr-w90);
  margin-bottom: 0.8rem;
}

.shows__empty-subtitle {
  font-family: var(--ff-r);
  font-size: clamp(1.4rem, 1.4vw, 2.2rem);
  color: var(--clr-w60);
}

/* ============================================================
   O FENÔMENO DIGITAL
   ============================================================ */
.digital {
  position: relative;
  background: var(--clr-bg-dark);
  overflow: hidden;
  min-height: 100vh;
  height: auto;
  padding: 8rem var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.digital__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
}

.digital__inner { 
  position: relative; 
  z-index: 1; 
  width: 100%;
  overflow: hidden;
}

.digital__title {
  font-family: var(--ff-t);
  font-size: clamp(4rem, 6vw, 11.5rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-red-dim);
  text-align: center;
  margin-bottom: 3.5rem;
}

.digital__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.digital__stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.digital__stat-number {
  font-family: var(--ff-t);
  font-size: clamp(3rem, 4.5vw, 8.5rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w90);
}

.digital__stat-label {
  font-family: var(--ff-r);
  font-size: clamp(1rem, 1.2vw, 2.2rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w60);
}

/* ============================================================
   CARROSSEL DE VÍDEOS INFINITO (CSS PURO @KEYFRAMES)
   ============================================================ */
.digital__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  /* Degradê suave nas laterais para sensação de infinito premium */
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.digital__track {
  display: flex;
  width: max-content;
  animation: digitalScroll 26s linear infinite;
  will-change: transform;
}

.digital__group {
  display: flex;
  gap: 2.2rem;
  padding-right: 2.2rem; /* Espaçamento idêntico entre os conjuntos para loop sem emenda */
}

/* Animação contínua horizontal */
@keyframes digitalScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile: velocidade reduzida/lenta nativamente */
@media (max-width: 64em) {
  .digital__track {
    animation-duration: 48s;
  }
}

/* Card Individual de Vídeo (9:16 Aspect Ratio) */
.digital__card {
  width: clamp(16rem, 15vw, 23rem);
  aspect-ratio: 9/16;
  border-radius: 2rem;
  background: #0d0d0d;
  border: 0.15rem solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.65);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
  user-select: none;
}

.digital__card:hover {
  transform: translateY(-0.8rem) scale(1.03);
  border-color: rgba(208, 32, 32, 0.75);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.8), 0 0 2.5rem rgba(208, 32, 32, 0.35);
}

.digital__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), filter 0.35s ease;
  filter: brightness(0.85);
  z-index: 0;
}

.digital__card:hover .digital__card-img {
  transform: scale(1.08);
  filter: brightness(1.02);
}

.digital__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0.4) 65%,
    rgba(0, 0, 0, 0.92) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.digital__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.digital__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 0.1rem solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(0.8rem);
  -webkit-backdrop-filter: blur(0.8rem);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-family: var(--ff-r);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--clr-w90);
  text-transform: uppercase;
}

.digital__card-badge-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--clr-red);
}

.digital__card-play {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: auto 0;
}

.digital__card-play-btn {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: rgba(208, 32, 32, 0.85);
  border: 0.2rem solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0.8rem 2.5rem rgba(208, 32, 32, 0.6);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
}

.digital__card-play-btn svg {
  width: 2.2rem;
  height: 2.2rem;
  margin-left: 0.3rem;
}

.digital__card:hover .digital__card-play-btn {
  transform: scale(1.15);
  background: var(--clr-red);
}

.digital__card-play-text {
  font-family: var(--ff-r);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-w80);
}

.digital__card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 1rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.digital__card-author {
  font-family: var(--ff-t);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--clr-w90);
  line-height: 1.1em;
}

.digital__card-sub {
  font-family: var(--ff-r);
  font-size: 1.1rem;
  color: var(--clr-w60);
}

/* ============================================================
   MODAL DE VÍDEO LIGHTBOX (EM TELA CHEIA)
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              visibility 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 4, 0.88);
  backdrop-filter: blur(2rem);
  -webkit-backdrop-filter: blur(2rem);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 48rem;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92) translateY(2rem);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.is-open .video-modal__dialog {
  transform: scale(1) translateY(0);
}

.video-modal__close {
  position: absolute;
  top: -4.8rem;
  right: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 0.15rem solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
  z-index: 2;
}

.video-modal__close svg {
  width: 2rem;
  height: 2rem;
}

.video-modal__close:hover {
  background: var(--clr-red);
  border-color: var(--clr-red);
  transform: rotate(90deg) scale(1.1);
}

.video-modal__frame-wrap {
  width: 100%;
  height: 78vh;
  max-height: 72rem;
  border-radius: 2rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 0.85), 0 0 3rem rgba(208, 32, 32, 0.25);
  border: 0.15rem solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal__frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

/* ============================================================
   CONTATO
   ============================================================ */
/* ============================================================
   CONTATO / CONTRATE SHOWS
   ============================================================ */
.contato {
  position: relative;
  background: var(--clr-bg-dark);
  overflow: hidden;
  min-height: 100vh;
  height: auto;
  padding: 10rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato__glow {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 70rem;
  height: 70rem;
  background: radial-gradient(circle, rgba(195, 30, 30, 0.25) 0%, rgba(34, 34, 34, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(5rem);
}

.contato__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 6rem;
  width: 100%;
  align-items: center;
}

/* ---- CARTÃO DE CONTATO (ESQUERDA) ---- */
.contato__left {
  display: flex;
  flex-direction: column;
}

.contato__card {
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(2rem);
  -webkit-backdrop-filter: blur(2rem);
  border: 0.15rem solid rgba(255, 255, 255, 0.12);
  border-radius: 2.4rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.5), inset 0 0 2rem rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.contato__card:hover {
  border-color: rgba(195, 30, 30, 0.4);
  box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 0.6), 0 0 3rem rgba(195, 30, 30, 0.15);
}

.contato__brand {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contato__logo-box {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 0.1rem solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.4);
}

.contato__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 0.8rem rgba(195, 30, 30, 0.5));
}

.contato__brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contato__eyebrow {
  font-family: var(--ff-r);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--clr-red);
  text-transform: uppercase;
}

.contato__brand-name {
  font-family: var(--ff-t);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.95em;
  color: var(--clr-w90);
}

.contato__divider {
  width: 100%;
  height: 0.1rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.contato__manager {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contato__manager-tag {
  font-family: var(--ff-r);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--clr-w60);
  text-transform: uppercase;
}

.contato__manager-name {
  font-family: var(--ff-r);
  font-size: clamp(2.4rem, 2.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1em;
}

.contato__channels {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.contato__channel {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.4rem 1.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 0.1rem solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.contato__channel:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(0.4rem);
}

.contato__channel-icon {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato__channel-icon--wa {
  background: rgba(37, 211, 102, 0.15);
  border: 0.1rem solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.contato__channel-icon--wa img {
  width: 2.4rem;
  height: 2.4rem;
}

.contato__channel-icon--mail {
  background: rgba(195, 30, 30, 0.15);
  border: 0.1rem solid rgba(195, 30, 30, 0.3);
  color: var(--clr-red);
}

.contato__channel-icon--mail svg {
  width: 2.2rem;
  height: 2.2rem;
}

.contato__channel-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contato__channel-label {
  font-family: var(--ff-r);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-w60);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contato__channel-val {
  font-family: var(--ff-r);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1em;
}

.contato__wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1.6rem 2.4rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 1.4rem;
  font-family: var(--ff-r);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 1rem 2.5rem rgba(37, 211, 102, 0.3);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), filter var(--dur) var(--ease);
}

.contato__wa-btn:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.5rem 3.5rem rgba(37, 211, 102, 0.45);
  filter: brightness(1.08);
}

.contato__wa-btn img {
  width: 2.4rem;
  height: 2.4rem;
  filter: brightness(0) invert(1);
}

/* ---- FORMULÁRIO (DIREITA) ---- */
.contato__right {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.contato__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato__tag {
  font-family: var(--ff-t);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-red);
}

.contato__title {
  font-family: var(--ff-t);
  font-size: clamp(4.2rem, 5.5vw, 8.5rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w90);
}

.contato__subtitle {
  font-family: var(--ff-r);
  font-size: clamp(1.6rem, 1.6vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4em;
  color: var(--clr-w70);
  max-width: 58rem;
}

.contato__form {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contato__field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contato__field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contato__field-label {
  font-family: var(--ff-r);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--clr-w80);
}

.contato__field-input {
  width: 100%;
  background: rgba(15, 15, 15, 0.7);
  border: 0.15rem solid rgba(255, 255, 255, 0.15);
  border-radius: 1.4rem;
  padding: 1.4rem 1.8rem;
  font-family: var(--ff-r);
  font-size: 1.8rem;
  color: #fff;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.contato__field-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.contato__field-input:focus {
  background: rgba(20, 20, 20, 0.9);
  border-color: var(--clr-red);
  box-shadow: 0 0 1.5rem rgba(195, 30, 30, 0.35);
}

.contato__field-textarea {
  resize: vertical;
  min-height: 11rem;
}

.contato__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  margin-top: 1rem;
  padding: 1.8rem 3.5rem;
  background: linear-gradient(135deg, var(--clr-red) 0%, #8a1515 100%);
  color: #fff;
  border: 0.2rem solid var(--clr-red-border);
  border-radius: 1.5rem;
  font-family: var(--ff-r);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 0.8rem 2.5rem var(--clr-red-glow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.contato__submit:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.4rem 4rem var(--clr-red-glow);
  background: linear-gradient(135deg, #d62424 0%, var(--clr-red) 100%);
}

.contato__submit svg {
  width: 2.4rem;
  height: 2.4rem;
  transition: transform var(--dur) var(--ease);
}

.contato__submit:hover svg {
  transform: translateX(0.4rem);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-bg-footer);
  padding: 4rem var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 3.2vw, 6.1rem);
}

.footer__social img {
  width: clamp(4rem, 3.9vw, 7.5rem);
  height: clamp(4rem, 3.9vw, 7.5rem);
  transition: opacity var(--dur) var(--ease);
}
.footer__social:hover img { opacity: 0.6; }

.footer__tagline,
.footer__copy {
  font-family: var(--ff-r);
  font-size: clamp(1.6rem, 2.1vw, 4rem);
  font-weight: 700;
  line-height: 0.88em;
  color: var(--clr-w90);
  text-align: center;
}

.footer__credits {
  font-family: var(--ff-r);
  font-size: clamp(1.3rem, 1.4vw, 2rem);
  font-weight: 500;
  color: var(--clr-w60);
  text-align: center;
  margin-top: 0.5rem;
}

.footer__credits-link {
  color: var(--clr-w90);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.35rem;
  text-decoration-color: rgba(195, 30, 30, 0.6);
  transition: color var(--dur) var(--ease), text-decoration-color var(--dur) var(--ease);
}

.footer__credits-link:hover {
  color: var(--clr-red);
  text-decoration-color: var(--clr-red);
}



/* ============================================================
   RESPONSIVE — mobile
   ============================================================ */
@media (max-width: 64em) {
  :root { --pad: 5%; }

  /* ---- HEADER MOBILE ---- */
  .header {
    height: 7.6rem;
    padding: 0 2rem;
  }
  .header.menu-open {
    border-bottom-color: transparent;
    background: transparent;
  }
  .header__logo-wrap {
    position: relative;
    z-index: 101;
  }
  .header__logo {
    width: 7.6rem;
    height: 7.6rem;
  }
  .header__hamburger {
    display: flex;
    position: relative;
    z-index: 101;
  }

  /* Hamburger to X transform */
  .header__hamburger.is-active span:nth-child(1),
  .header__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.85rem) rotate(45deg);
    background: var(--clr-red);
  }
  .header__hamburger.is-active span:nth-child(2),
  .header__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .header__hamburger.is-active span:nth-child(3),
  .header__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.85rem) rotate(-45deg);
    background: var(--clr-red);
  }

  /* Mobile Fullscreen Menu Drawer */
  .header__nav {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(7,7,7,0.98);
    backdrop-filter: blur(2rem);
    -webkit-backdrop-filter: blur(2rem);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .header__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .header__nav .header__nav-link {
    font-family: var(--ff-t);
    font-size: 4.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--clr-w90);
    transition: color 0.2s var(--ease);
  }
  .header__nav .header__nav-link:hover,
  .header__nav .header__nav-link:active {
    color: var(--clr-red);
  }

  .header__nav .header__nav-btn {
    font-family: var(--ff-t);
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    border: 0.25rem solid var(--clr-red);
    background: rgba(195,30,30,0.2);
    border-radius: 1.5rem;
    padding: 1.2rem 3.5rem;
    margin-top: 1rem;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .header__nav .header__nav-btn:active {
    background: rgba(195,30,30,0.4);
    transform: scale(0.97);
  }

  /* ---- HERO MOBILE ---- */
  .hero {
    background: var(--clr-bg-hero);
    min-height: 69.6rem;
  }
  .hero__bg {
    background-image: url('./src/images/bg-hero-phone.webp');
    background-position: center top;
  }

  .hero__content {
    left: 4.7rem;
    top: unset;
    bottom: 13rem;
    transform: none;
    width: 31.5rem;
    gap: 1.8rem;
  }

  .hero__title {
    font-size: 9rem;
  }

  .hero__subtitle {
    font-size: 2.5rem;
  }

  .hero__cta {
    font-size: 1.8rem;
    border-width: 0.3rem;
    padding: 1.2rem 1.8rem;
    border-radius: 1.5rem;
  }

  .hero__subtitle {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.9);
  }

  .hero__discover { display: none; }

  /* ---- DEMAIS SECTIONS MOBILE ---- */
  /* ---- SINGLE MOBILE ---- */
  .single {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
    padding: 5rem 4.2rem 6rem;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .single__glow,
  .single__glow--right {
    position: absolute;
    width: 120%;
    height: 180%;
    background: linear-gradient(145deg, rgba(12,12,12,0) 30%, rgba(208,32,32,0.5) 55%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    bottom: -40%;
    top: auto;
    right: auto;
    left: -10%;
    transform: none;
  }
  .single__cover-wrap {
    order: 2;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .single__content    { order: 1; width: 100%; gap: 0; position: relative; z-index: 2; }
  .single__desc       {
    order: 3;
    font-size: 2.6rem;
    line-height: 1.25em;
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
  }
  .single__cta        {
    order: 4;
    font-size: 3.5rem;
    width: 29rem;
    max-width: 100%;
    align-self: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
  }
  .single__cover      { width: 26.2rem; height: 26.2rem; max-width: unset; position: relative; z-index: 2; }
  .single__eyebrow    { font-size: 4rem; }
  .single__title      { font-size: 8rem; }
  .single__vinyl-wrap {
    width: 20.5rem;
    height: 20.5rem;
    transform: translate(-35%, -50%);
  }

  .essencia { height: auto; min-height: 100vh; }
  .essencia__title    { position: static; font-size: 10rem; white-space: normal; }
  .essencia__subtitle { position: static; font-size: 3.5rem; white-space: normal; margin-top: 1rem; }
  .essencia__text--left,
  .essencia__text--right {
    position: static;
    width: 100%;
    margin-top: 2rem;
    font-size: 2.2rem;
    line-height: 1.5em;
  }
  .essencia__img--top,
  .essencia__img--bottom { 
    position: static; 
    width: 100%; 
    height: 24rem; 
    margin-top: 2rem; 
    border-radius: 1.6rem; 
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.5); 
  }
  .essencia__inner { display: flex; flex-direction: column; padding: 6rem 5%; }

  /* ---- SHOWS MOBILE ---- */
  .shows {
    height: auto;
    min-height: 100vh;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .shows__title {
    font-size: clamp(6rem, 16vw, 8rem);
    line-height: 0.88em;
    margin-bottom: 1rem;
  }
  .shows__subtitle {
    font-size: 2.2rem;
    line-height: 1.3em;
    color: var(--clr-w70);
    margin-bottom: 3.5rem;
  }
  .shows__list {
    width: 100%;
  }
  .shows__item {
    padding: 1.8rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .shows__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
  }
  .shows__date {
    min-width: unset;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
  }
  .shows__date-text {
    font-size: 2.5rem;
    line-height: 1em;
  }
  .shows__year {
    font-size: 1.6rem;
    color: var(--clr-w70);
  }
  .shows__location {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .shows__city {
    font-size: 2rem;
    line-height: 1.1em;
  }
  .shows__venue {
    font-size: 1.4rem;
    color: var(--clr-w60);
    text-transform: capitalize;
  }
  .shows__ticket {
    font-size: 1.6rem;
    padding: 1.1rem 2.2rem;
    border-radius: 2.5rem;
    flex-shrink: 0;
  }

  /* ---- DIGITAL MOBILE ---- */
  .digital {
    height: auto;
    min-height: 100vh;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .digital__title {
    font-size: clamp(4.5rem, 13vw, 6.5rem);
    line-height: 0.9em;
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .digital__stats {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  .digital__stat {
    gap: 0.5rem;
  }
  .digital__stat-number {
    font-size: 6rem;
    line-height: 0.88em;
  }
  .digital__stat-label {
    font-size: 2rem;
    color: var(--clr-w60);
  }
  .digital__carousel {
    padding: 1rem 0;
  }
  .digital__card {
    width: 19rem;
  }

  /* ---- CONTATO MOBILE ---- */
  .contato {
    height: auto;
    min-height: 100vh;
    padding: 7rem 5%;
  }
  .contato__glow { display: none; }
  .contato__inner {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
    width: 100%;
  }
  .contato__right {
    order: 1;
    gap: 2.5rem;
    width: 100%;
  }
  .contato__title {
    font-size: clamp(4rem, 12vw, 5.8rem);
    line-height: 0.9em;
  }
  .contato__subtitle {
    font-size: 1.8rem;
  }
  .contato__field-group {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contato__submit {
    font-size: 2rem;
    padding: 1.6rem 2rem;
  }
  .contato__left {
    order: 2;
    width: 100%;
  }
  .contato__card {
    padding: 3rem 2.2rem;
    gap: 2.4rem;
    border-radius: 2rem;
  }
  .contato__brand-name {
    font-size: 2.8rem;
  }
  .contato__channel-val {
    font-size: 1.7rem;
  }
  .contato__wa-btn {
    font-size: 1.6rem;
    padding: 1.4rem 2rem;
  }

  /* ---- FOOTER MOBILE ---- */
  .footer {
    padding: 5rem 5% 4rem;
    gap: 2.5rem;
  }
  .footer__socials {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
  }
  .footer__social img {
    width: 4.5rem;
    height: 4.5rem;
  }
  .footer__tagline {
    font-size: 2rem;
    line-height: 1.35em;
    text-align: center;
    color: var(--clr-w90);
  }
  .footer__copy {
    font-size: 1.6rem;
    line-height: 1.35em;
    text-align: center;
    color: var(--clr-w60);
  }
  .footer__credits {
    font-size: 1.5rem;
    line-height: 1.35em;
    text-align: center;
  }

  /* Tactile Mobile Micro-interactions (Awwwards feel) */
  .hero__cta:active,
  .single__cta:active,
  .shows__ticket:active,
  .contato__submit:active,
  .contato__wa-btn:active {
    transform: scale(0.96) !important;
    filter: brightness(1.15);
    transition: transform 0.12s var(--ease), filter 0.12s var(--ease);
  }

  .shows__item {
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .shows__item:active {
    background: rgba(255, 255, 255, 0.04);
    transform: scale(0.985);
  }
}


