/* ============================================================
   DIEGO FREESTYLE — Premium Editorial v2
   Fundo claro, tipografia impactante, acento amarelo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700;800&family=Caveat:wght@600;700&display=swap');

:root {
  --cream: #F3F1EB;
  --cream2: #E9E6DC;
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --ink-3: #2A2A2A;
  --dim: #6B6B6B;
  --line: rgba(10, 10, 10, 0.10);
  --yellow: #FFDF00;
  --yellow-soft: #FFF3A0;
  --green: #00B14F;
  --white: #FFFFFF;

  --font-display: 'Anton', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1280px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

*::selection {
  background: var(--yellow);
  color: var(--ink);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

#loader.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ball-wrap {
  position: relative;
  width: 64px;
  height: 96px;
  margin: 0 auto 20px;
}

.loader-ball {
  position: absolute;
  left: 50%;
  top: 0;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  transform-origin: 50% 100%;
  animation: lb-bounce .85s ease-in-out infinite;
}

.loader-ball svg {
  width: 52px;
  height: 52px;
  display: block;
}

.loader-shadow {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 7px;
  background: rgba(10, 10, 10, 0.15);
  border-radius: 50%;
  animation: lb-shadow .85s ease-in-out infinite;
}

@keyframes lb-bounce {
  0% {
    top: 0px;
    transform: scaleX(1) scaleY(1) rotate(0deg);
  }

  44% {
    top: 40px;
    transform: scaleX(1) scaleY(1) rotate(159deg);
  }

  50% {
    top: 44px;
    transform: scaleX(1.30) scaleY(0.70) rotate(180deg);
  }

  56% {
    top: 40px;
    transform: scaleX(1) scaleY(1) rotate(201deg);
  }

  100% {
    top: 0px;
    transform: scaleX(1) scaleY(1) rotate(360deg);
  }
}

@keyframes lb-shadow {

  0%,
  100% {
    transform: translateX(-50%) scale(0.5);
    opacity: 0.15;
  }

  48%,
  52% {
    transform: translateX(-50%) scale(1);
    opacity: 0.4;
  }
}

.loader-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--ink);
  text-transform: uppercase;
  text-align: center;
}

/* ============================================================
   HEADER
   ============================================================ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(243, 241, 235, 0);
  transition: background .4s ease, border-color .4s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}

#main-header.scrolled {
  padding: 10px 0;
  background: rgba(243, 241, 235, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ball-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  animation: brand-bob 3s ease-in-out infinite;
}

.ball-mark i {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff 0%, #e8e0a0 38%, #c8a800 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  animation: ball-bounce-sm 1.4s ease-in-out infinite;
}

@keyframes brand-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes ball-bounce-sm {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.brand-name {
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.brand-name small {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--dim);
  margin-top: 3px;
  text-transform: uppercase;
}

#desktop-nav ul {
  display: flex;
  gap: 2px;
  list-style: none;
}

#desktop-nav a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  border-radius: 999px;
  transition: color .2s, background .2s;
}

#desktop-nav a:hover {
  color: var(--ink);
  background: rgba(10, 10, 10, 0.06);
}

#desktop-nav a.nav-cta {
  background: var(--ink);
  color: var(--yellow);
  padding: 9px 18px;
}

#desktop-nav a.nav-cta:hover {
  background: var(--ink-2);
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.lang-trigger:hover {
  border-color: var(--ink);
  background: rgba(10, 10, 10, 0.04);
}

.lang-trigger i {
  color: var(--ink);
}

#hamburger {
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  border-radius: 10px;
  transition: background .2s;
}

#hamburger:hover {
  background: rgba(10, 10, 10, 0.06);
}

#hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s;
}

#hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hamburger.open span:nth-child(2) {
  opacity: 0;
}

#hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

#mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

#mobile-menu ul {
  list-style: none;
  text-align: center;
}

#mobile-menu li {
  margin: 18px 0;
}

#mobile-menu a {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

#mobile-menu a:hover {
  color: var(--dim);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

/* Canvas ball animation — behind everything */
#ball-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Huge background text */
.hero-bg-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 22vw, 380px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(10, 10, 10, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Thin accent line at very top */
.hero-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(255, 223, 0, 0.2) 60%, transparent 100%);
  z-index: 4;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px clamp(20px, 4vw, 48px) 80px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

/* LEFT — text */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 28px;
}

.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 223, 0, 0.7);
  animation: dot-ping 1.8s ease-out infinite;
}

@keyframes dot-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 223, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 223, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 223, 0, 0);
  }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
  overflow: hidden;
}

.hero-h1 .line {
  display: block;
  overflow: hidden;
}

.hero-h1 .line span {
  display: block;
  transform: translateY(100%);
  transition: transform 1s var(--ease-out);
}

.hero-h1.visible .line span {
  transform: translateY(0);
}

.hero-h1 .line:nth-child(2) span {
  transition-delay: .08s;
}

.hero-h1 .line:nth-child(3) span {
  transition-delay: .16s;
}

.hero-h1-accent {
  color: var(--ink);
  position: relative;
  display: inline-block;
}

.hero-h1-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  right: 0;
  height: 8px;
  background: var(--yellow);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease-out) .5s;
}

.hero-h1.visible .hero-h1-accent::after {
  transform: scaleX(1);
}

.hero-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--dim);
  margin-bottom: 36px;
  max-width: 38ch;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transition: transform .2s var(--ease), background .2s, color .2s;
}

.btn-primary:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-primary i {
  font-size: 17px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 2px solid var(--line);
  transition: border-color .2s, transform .2s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* RIGHT — media frame */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3/4;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
}

/* Frame accent stripe */
.hero-media-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: var(--yellow);
  z-index: 3;
}

.hero-media-frame video,
.hero-media-frame img,
.hero-media-frame .hero-png {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* PNG slot: transparent bg, contain */
.hero-media-frame .hero-png {
  object-fit: contain;
  object-position: bottom center;
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Gradient overlay on frame */
.hero-media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.55) 0%, transparent 45%);
  pointer-events: none;
}

/* Floating badge */
.hero-badge {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-badge.badge-yellow {
  background: var(--yellow);
  color: var(--ink);
  top: 24px;
  right: -16px;
}

.hero-badge.badge-dark {
  background: var(--ink);
  color: var(--yellow);
  bottom: 40px;
  left: -16px;
}

.hero-badge span {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero-badge small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-badge.badge-yellow small {
  color: rgba(10, 10, 10, 0.6);
}

.hero-badge.badge-dark small {
  color: rgba(255, 223, 0, 0.6);
}

/* Bottom ticker */
.hero-ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: var(--ink);
  padding: 14px 0;
  flex-shrink: 0;
}

.hero-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  animation: marquee-ltr 22s linear infinite;
}

.hero-ticker-track .t-accent {
  color: var(--yellow);
}

.hero-ticker-track .t-sep {
  margin: 0 20px;
  opacity: 0.3;
}

@keyframes marquee-ltr {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SOBRE — Light, two-column
   ============================================================ */
#sobre {
  padding: 120px 0;
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-images {
  position: relative;
}

.sobre-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream2);
}

.sobre-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sobre-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream2);
  border: 5px solid var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.sobre-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-text {
  padding-left: 20px;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}

.eyebrow-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--yellow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  font-family: 'Georgia', serif;
  text-transform: none;
  letter-spacing: -0.01em;
}

.section-body {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 32px;
}

.inline-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.istat {
  display: flex;
  flex-direction: column;
}

.istat-n {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.istat-l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px;
}

/* ============================================================
   NÚMEROS — Full black, yellow contrast
   ============================================================ */
#numeros {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.numeros-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  perspective: 1000px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transform-style: preserve-3d;
}

.stat-block:last-child {
  border-right: none;
}

.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width .8s var(--ease-out);
}

.stat-block.in-view::after {
  width: 60%;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 110px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.stat-number .stat-val {
  color: var(--white);
}

.stat-number .stat-sym {
  color: var(--yellow);
  font-size: .7em;
  animation: sym-glow 2s ease-in-out infinite;
}

@keyframes sym-glow {

  0%,
  100% {
    text-shadow: 0 0 8px rgba(255, 223, 0, 0.3);
  }

  50% {
    text-shadow: 0 0 24px rgba(255, 223, 0, 0.7), 0 0 48px rgba(255, 223, 0, 0.3);
  }
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
}

.stat-special .stat-number {
  font-size: clamp(22px, 3vw, 36px);
  color: var(--yellow);
}

/* ============================================================
   VÍDEOS — White section
   ============================================================ */
#videos {
  padding: 120px 0;
  background: var(--cream);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.view-all {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .2s;
}

.view-all:hover {
  color: var(--ink);
}

.view-all i {
  transition: transform .3s;
}

.view-all:hover i {
  transform: translateX(4px);
}

.videos-featured {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}

.videos-left {
  display: flex;
  flex-direction: column;
}

.videos-left .section-title {
  margin-bottom: 0;
}

.video-card--big {
  flex: 1;
  aspect-ratio: auto;
  min-height: 360px;
}

.videos-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.videos-right .video-card {
  flex: 1;
  aspect-ratio: auto;
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.4);
}

.video-card-thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out), filter .4s ease;
  filter: brightness(0.85);
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.05);
  filter: brightness(1);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ink);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}

.video-card:hover .video-card-play {
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 0 8px rgba(255, 223, 0, 0.2);
}

.video-card--big .video-card-play {
  width: 72px;
  height: 72px;
  font-size: 26px;
}

.video-card-label {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.video-card-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ============================================================
   GALERIA — Horizontal scroll (GSAP pinned)
   ============================================================ */
#galeria {
  background: var(--ink-2);
  position: relative;
}

.galeria-sticky {
  overflow: hidden;
}

.galeria-head {
  padding: 80px clamp(20px, 4vw, 48px) 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
}

.galeria-head .section-title {
  color: var(--white);
  margin: 0;
}

.drag-hint {
  font-family: var(--font-hand);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
}

.galeria-track {
  display: flex;
  gap: 16px;
  padding: 0 clamp(20px, 4vw, 48px) 80px;
  will-change: transform;
}

.galeria-item {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.galeria-item:active {
  cursor: grabbing;
}

.galeria-track.is-dragging {
  cursor: grabbing;
}

.galeria-track.is-dragging .galeria-item {
  cursor: grabbing;
}

.galeria-item img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  transition: filter .4s ease;
  filter: saturate(0.8) brightness(0.9);
  pointer-events: none;
}

.galeria-item:hover img {
  filter: saturate(1) brightness(1);
}

.galeria-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 10, 10, 0.3) 100%);
  opacity: 0;
  transition: opacity .35s;
}

.galeria-item:hover::before {
  opacity: 1;
}

.gi-tall {
  height: 440px;
}

.gi-short {
  height: 300px;
  align-self: flex-end;
}

.gi-wide {
  height: 360px;
}

/* Gallery lightbox */
#g-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

#g-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.glb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.glb-close,
.glb-prev,
.glb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background .2s;
}

.glb-close:hover,
.glb-prev:hover,
.glb-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.glb-close {
  top: 20px;
  right: 20px;
  font-size: 26px;
}

.glb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.glb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   DEPOIMENTOS — Warm white, polaroid cards
   ============================================================ */
#depoimentos {
  padding: 120px 0;
  background: var(--cream);
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* qcard styles kept from inline style but overridden for light bg */
.qcard {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin: 0;
}

.qcard-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.qcard:hover .qcard-img {
  transform: scale(1.04);
}

.qcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .45) 50%, transparent 100%);
  pointer-events: none;
}

.qcard--featured::after {
  background: linear-gradient(to top, rgba(0, 120, 50, .9) 0%, rgba(0, 80, 30, .45) 50%, transparent 100%);
}

.qcard-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.qcard-mark {
  font-size: 72px;
  line-height: .75;
  color: var(--yellow);
  font-weight: 900;
  margin-bottom: 6px;
  font-family: Georgia, serif;
}

.qcard--featured .qcard-mark {
  color: #a8ffb0;
}

.qcard-text {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 255, 255, .93);
  margin-bottom: 20px;
}

.qcard-author strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.1;
  letter-spacing: .02em;
}

.qcard--featured .qcard-author strong {
  color: #fff;
}

.qcard-author span {
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .14em;
}

/* ============================================================
   MÍDIA — Yellow section (marcas)
   ============================================================ */
#midia {
  padding: 80px 0;
  background: var(--yellow);
}

#midia .eyebrow-tag {
  color: rgba(10, 10, 10, 0.55);
}

#midia .eyebrow-tag::before {
  background: var(--ink);
}

#midia .section-title {
  color: var(--ink);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
  margin-top: 48px;
}

.brand-logo-item {
  height: 44px;
  width: auto;
  color: rgba(10, 10, 10, 0.5);
  transition: color .3s ease, transform .35s var(--ease-out);
}

.brand-logo-item:hover {
  color: var(--ink);
  transform: translateY(-4px) scale(1.08);
}

.brand-logo-item svg {
  height: 100%;
  width: auto;
  display: block;
}

/* ============================================================
   CONTATO — Dark section
   ============================================================ */
#contato {
  padding: 160px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.contato-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 223, 0, 0.08) 0%, transparent 60%);
  transition: background .05s;
}

.contato-wrap {
  position: relative;
  z-index: 1;
}

.contato-center {
  text-align: center;
}

.contato-center .section-title {
  color: var(--white);
}

.contato-center .section-title em {
  color: var(--yellow);
  font-style: italic;
}

.contato-center .eyebrow-tag::before {
  background: var(--yellow);
}

.contato-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contato-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--white);
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  transition: background .3s, border-color .3s, transform .3s var(--ease-out), box-shadow .3s;
}

.contato-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 223, 0, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(255, 223, 0, 0.15);
}

.contato-btn i {
  font-size: 32px;
  color: var(--yellow);
  transition: transform .3s var(--ease-out);
}

.contato-btn:hover i {
  transform: scale(1.2);
}

.contato-btn span {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contato-btn small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.contato-btn--wa:hover {
  border-color: #25D366;
  box-shadow: 0 20px 50px -20px rgba(37, 211, 102, 0.2);
}

.contato-btn--wa:hover i {
  color: #25D366;
}

.contato-btn--mail:hover {
  border-color: var(--yellow);
}

.contato-btn--ig:hover {
  border-color: #E4405F;
  box-shadow: 0 20px 50px -20px rgba(228, 64, 95, 0.2);
}

.contato-btn--ig:hover i {
  color: #E4405F;
}

/* ============================================================
   SOCIAL RAIL
   ============================================================ */
.social-rail {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-rail a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.08);
  color: var(--ink);
  font-size: 15px;
  transition: background .2s, transform .2s;
  border: 1px solid var(--line);
}

.social-rail a:hover {
  background: var(--ink);
  color: var(--yellow);
  transform: scale(1.12);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--ink-2);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-brand .ball-mark i {
  background: radial-gradient(circle at 32% 28%, #fff 0%, #e8e0a0 38%, #c8a800 100%);
}

#footer p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.footer-credit {
  font-size: 12px;
  opacity: 0.35;
  color: var(--white);
}

/* ============================================================
   LANGUAGE MODAL
   ============================================================ */
.lang-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.lang-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lang-modal {
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  background: var(--white);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(.95);
  transition: transform .3s var(--ease-out);
}

.lang-overlay.is-open .lang-modal {
  transform: scale(1);
}

.lang-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.lang-modal-head h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--ink);
}

.lang-modal-head h3 i {
  color: var(--ink);
}

.lang-modal-close {
  background: none;
  border: none;
  color: var(--dim);
  font-size: 26px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
}

.lang-modal-close:hover {
  background: var(--cream);
}

.lang-modal-search {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}

.lang-modal-search input {
  width: 100%;
  padding: 11px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
  transition: border-color .2s;
}

.lang-modal-search input:focus {
  border-color: var(--ink);
}

.lang-modal-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 10px;
}

.lang-modal-list::-webkit-scrollbar {
  width: 6px;
}

.lang-modal-list::-webkit-scrollbar-thumb {
  background: var(--cream2);
  border-radius: 4px;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: background .15s;
}

.lang-item:hover {
  background: var(--cream);
}

.lang-item.is-active {
  background: rgba(255, 223, 0, 0.2);
  color: var(--ink);
  font-weight: 700;
}

.lang-flag {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  flex: 0 0 auto;
}

.lang-name {
  flex: 1;
}

.lang-check {
  color: var(--ink);
  font-weight: 800;
}

.lang-reset {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 22px 0;
  padding: 11px 14px;
  width: calc(100% - 44px);
  background: rgba(255, 223, 0, .15);
  border: 1px solid rgba(255, 223, 0, .5);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: background .2s, border-color .2s;
}

.lang-reset:hover {
  background: rgba(255, 223, 0, .3);
  border-color: var(--yellow);
}

.lang-reset .lang-flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
}

.goog-te-banner-frame,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-tooltip {
  display: none !important;
}

.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}

/* ============================================================
   REVEAL UTILITY
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.reveal-left.in {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.reveal-right.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .hero-right {
    order: -1;
  }

  .hero-media-frame {
    max-width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0;
  }

  .hero-media-frame::before {
    display: none;
  }

  .hero-badge.badge-yellow {
    right: 20px;
    top: 20px;
  }

  .hero-badge.badge-dark {
    left: 20px;
    bottom: 20px;
  }

  .hero-left {
    padding: 40px clamp(20px, 4vw, 48px);
  }

  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .sobre-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .sobre-text {
    padding: 0;
  }

  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .videos-featured {
    grid-template-columns: 1fr;
  }

  .dep-grid {
    grid-template-columns: 1fr;
  }

  .qcard {
    aspect-ratio: 16/9;
  }

  .contato-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contato-btn {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  #desktop-nav {
    display: none;
  }

  #hamburger {
    display: flex;
  }

  .social-rail {
    display: none;
  }

  .videos-featured {
    grid-template-columns: 1fr;
  }

  .video-card--big {
    min-height: 260px;
  }

  .brands-grid {
    gap: 28px 36px;
  }

  .brand-logo-item {
    height: 30px;
  }

  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    padding-bottom: 20px;
  }

  .hero-h1 {
    font-size: clamp(52px, 13vw, 90px);
  }

  .galeria-track {
    padding: 0 20px 60px;
  }

  .gi-tall {
    height: 320px;
  }

  .gi-short {
    height: 220px;
  }

  .gi-wide {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 13vw;
  }

  .sobre-img-float {
    display: none;
  }

  .brand-logo-item {
    height: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .numeros-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .inline-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ball-mark i,
  .dot-pulse,
  .hero-ticker-track,
  .loader-ball,
  .loader-shadow {
    animation: none;
  }

  .hero-h1 .line span,
  .reveal,
  .reveal-left,
  .reveal-right {
    transition: none !important;
  }
}

/* ============================================================
   v3 — CUSTOM CURSOR / PROGRESS / GRAIN / 3D / CHAR
   ============================================================ */

/* Custom cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100001;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0; /* Hidden by default, native cursor is used */
}

.cursor-dot {
  width: 7px;
  height: 7px;
  margin: -3.5px;
  background: #fff;
  transition: width .25s, height .25s, opacity .3s var(--ease-out);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  margin: -18px;
  border: 1.5px solid #fff;
  transition: width .3s var(--ease-out), height .3s var(--ease-out), background .3s, opacity .3s var(--ease-out);
}

body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  margin: -30px;
  background: rgba(255, 255, 255, 0.08);
}

body.cursor-hover .cursor-dot {
  width: 4px;
  height: 4px;
  margin: -2px;
}

body.cursor-down .cursor-ring {
  width: 28px;
  height: 28px;
  margin: -14px;
}

@media (hover: none) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* Allow native cursor in gallery drag mode */
body.cursor-in-gallery .cursor-dot,
body.cursor-in-gallery .cursor-ring {
  opacity: 0;
}

@media (hover: hover) {
  /* Only hide native cursor when in blend mode */
  body.cursor-blend * {
    cursor: none !important;
  }

  body.cursor-in-gallery .galeria-track,
  body.cursor-in-gallery .galeria-item,
  body.cursor-in-gallery .galeria-item img {
    cursor: grab !important;
  }

  body.cursor-in-gallery.cursor-down .galeria-track,
  body.cursor-in-gallery.cursor-down .galeria-item,
  body.cursor-in-gallery.cursor-down .galeria-item img {
    cursor: grabbing !important;
  }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100000;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Three.js mount */
#three-hero {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#three-hero canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Char split */
.char {
  display: inline-block;
  will-change: transform;
}

.section-title {
  overflow: hidden;
}

/* ---- Richer hover micro-interactions ---- */
.video-card {
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.4);
}

.btn-primary,
.btn-ghost {
  will-change: transform;
}

/* Brand logo hover bounce in midia */
#midia .brands-grid img {
  transition: opacity .3s, transform .35s var(--ease-out), filter .3s;
}

#midia .brands-grid img:hover {
  transform: translateY(-4px) scale(1.08);
}

/* Sobre image hover */
.sobre-img-main img,
.sobre-img-float img {
  transition: transform .8s var(--ease-out);
}

.sobre-images:hover .sobre-img-main img {
  transform: scale(1.04);
}

.sobre-images:hover .sobre-img-float img {
  transform: scale(1.06);
}

/* Contato link arrow grow */
.contato-link {
  position: relative;
  width: fit-content;
}

.contato-link::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--yellow);
  opacity: 0;
  transition: right .4s var(--ease-out), opacity .3s;
}

.contato-link:hover::after {
  right: 0;
  opacity: 1;
}

/* Galeria item hover lift */
.galeria-item {
  transition: transform .5s var(--ease-out);
}

.galeria-item:hover {
  transform: translateY(-10px);
}

/* Hero badges float idle */
.hero-badge.badge-yellow {
  animation: badge-float-a 4s ease-in-out infinite;
}

.hero-badge.badge-dark {
  animation: badge-float-b 5s ease-in-out infinite;
}

@keyframes badge-float-a {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-8px) rotate(-2deg)
  }
}

@keyframes badge-float-b {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(8px) rotate(2deg)
  }
}

/* Nav link underline grow */
#desktop-nav a:not(.nav-cta) {
  position: relative;
}

#desktop-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}

#desktop-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {

  .hero-badge.badge-yellow,
  .hero-badge.badge-dark {
    animation: none;
  }
}

/* ════════════════════════════════════════════════════════════
   v4 — NEW HERO / LOADER / LOGO / MINI-GAME / FILLERS
   ════════════════════════════════════════════════════════════ */

/* ---- LOADER (typographic) ---- */
#loader {
  flex-direction: column;
  gap: 0;
  background: var(--ink);
}

.loader-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.86;
}

.lw-line {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 96px);
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  overflow: hidden;
}

.lw-line.lw-accent {
  color: var(--yellow);
}

.lw-line em {
  display: inline-block;
  font-style: normal;
  transform: translateY(110%);
  animation: lw-in .7s var(--ease-out) forwards;
}

.lw-line em:nth-child(1) {
  animation-delay: .05s
}

.lw-line em:nth-child(2) {
  animation-delay: .1s
}

.lw-line em:nth-child(3) {
  animation-delay: .15s
}

.lw-line em:nth-child(4) {
  animation-delay: .2s
}

.lw-line em:nth-child(5) {
  animation-delay: .25s
}

.lw-line em:nth-child(6) {
  animation-delay: .3s
}

.lw-line em:nth-child(7) {
  animation-delay: .35s
}

.lw-line em:nth-child(8) {
  animation-delay: .4s
}

.lw-line em:nth-child(9) {
  animation-delay: .45s
}

@keyframes lw-in {
  to {
    transform: translateY(0);
  }
}

.loader-bar {
  width: min(280px, 60vw);
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  margin-top: 32px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s linear;
}

.loader-count {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

.loader-count i {
  font-style: normal;
}

/* ---- BRAND LOGO (monogram) ---- */
.brand-logo {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-radius: 9px;
}

.brand-logo-d {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  line-height: 1;
  margin-top: 1px;
}

.brand-logo-dot {
  position: absolute;
  right: 5px;
  bottom: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
}

.brand:hover .brand-logo-dot {
  animation: logo-dot 0.6s ease;
}

@keyframes logo-dot {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.8)
  }
}

#footer .brand-logo {
  background: rgba(255, 255, 255, 0.1);
}

#footer .brand-logo-d {
  color: var(--white);
}

/* ════════════════════════════════════════════════════════════
   HERO — knockout video name + PNG
   ════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  background: #fff;
  overflow: hidden;
  display: block;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05));
}

/* Knockout cover: white layer, name-shaped holes via lighten blend */
.hero-knockout {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  background: #fff;
  mix-blend-mode: lighten;
  overflow: hidden;
  pointer-events: none;
}

.hero-knockout-track {
  white-space: nowrap;
  will-change: transform;
  padding-left: 4vw;
}

.hero-knockout-track span {
  font-family: var(--font-display);
  font-size: clamp(120px, 24vw, 360px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: #000;
  /* becomes video via lighten */
}

/* Foreground PNG */
.hero-png {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  height: 92%;
  width: auto;
  max-width: none;
  transform: translateX(calc(-50% + var(--px, 0px))) translateY(var(--py, 0px));
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  animation: hero-png-float 6s ease-in-out infinite;
}

@keyframes hero-png-float {

  0%,
  100% {
    margin-bottom: 0;
  }

  50% {
    margin-bottom: 14px;
  }
}

/* Eyebrow top */
.hero-eyebrow-top {
  position: absolute;
  top: 92px;
  left: clamp(20px, 4vw, 48px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  mix-blend-mode: difference;
}

.hero-eyebrow-top .he-sep {
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* Bottom band */
.hero-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 60px 0 48px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
}

.hero-band-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.hero-tagline em {
  font-family: 'Georgia', serif;
  font-style: italic;
  text-transform: none;
  color: var(--yellow);
}

.btn-ghost--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost--light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Scroll cue */
.hero-scrollcue {
  position: absolute;
  bottom: 40px;
  right: clamp(20px, 4vw, 48px);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  mix-blend-mode: difference;
}

.hero-scrollcue-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.hero-scrollcue-line i {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--yellow);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0% {
    transform: translateY(-100%)
  }

  100% {
    transform: translateY(200%)
  }
}

/* ---- BRAND TICKER (below hero) ---- */
.brand-ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 18px 0;
  border-top: 3px solid var(--yellow);
}

.brand-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 30px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  animation: marquee-ltr 28s linear infinite;
}

.brand-ticker-track .bt-accent {
  color: var(--yellow);
}

.brand-ticker-track .bt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 22px;
  flex: 0 0 auto;
}

@keyframes marquee-ltr {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ════════════════════════════════════════════════════════════
   TITLE HOVER — color + lift
   ════════════════════════════════════════════════════════════ */
.section-title .char {
  transition: color .3s var(--ease-out), transform .3s var(--ease-out);
}

.section-title:hover .char {
  color: var(--yellow);
}

.section-title em {
  transition: color .3s;
}

/* ════════════════════════════════════════════════════════════
   SOBRE — extra filler (signature strip)
   ════════════════════════════════════════════════════════════ */
.sobre-text .section-title:hover .char {
  color: var(--green);
}

.sobre-sign {
  font-family: var(--font-hand);
  font-size: 30px;
  color: var(--dim);
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sobre-sign::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

/* ════════════════════════════════════════════════════════════
   MÍDIA — centered + marquee
   ════════════════════════════════════════════════════════════ */
#midia {
  padding: 0 0 80px;
  overflow: hidden;
}

.midia-marquee {
  overflow: hidden;
  padding: 24px 0 56px;
}

.midia-marquee-track {
  display: flex;
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 90px);
  color: rgba(10, 10, 10, 0.12);
  white-space: nowrap;
  animation: marquee-ltr 30s linear infinite;
}

.midia-center {
  text-align: center;
}

.midia-center .section-title {
  margin: 0 auto 8px;
}

.midia-center .section-title:hover .char {
  color: var(--white);
}

.midia-center .brands-grid {
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════
   MINI-GAME
   ════════════════════════════════════════════════════════════ */
#game {
  background: var(--ink);
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: 100svh;
  min-height: 500px;
}

#gameCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  cursor: pointer;
}

.game-idle-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.game-idle-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: idle-pulse 2.5s ease-in-out infinite;
}

.game-idle-hint i {
  font-size: 28px;
  color: var(--yellow);
}

@keyframes idle-pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-8px);
  }
}

.game-idle-ui.hidden {
  display: none;
}

.game-hud {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  display: flex;
  gap: 48px;
  transition: opacity .4s ease;
}

.game-score {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-score-n {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.02em;
}

.game-score:last-child .game-score-n {
  color: var(--white);
}

.game-score-l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.game-over-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(6px);
}

.game-overlay-card {
  text-align: center;
  padding: 30px;
}

.game-overlay-icon {
  font-size: 44px;
  color: var(--yellow);
  margin-bottom: 16px;
  animation: gicon 2s ease-in-out infinite;
}

@keyframes gicon {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-10px) rotate(15deg)
  }
}

.game-overlay-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.game-overlay-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 28ch;
  margin-inline: auto;
}

/* ---- Responsive (v4) ---- */
@media (max-width: 1024px) {
  .hero-png {
    height: 80%;
  }
}

@media (max-width: 768px) {
  .hero-knockout-track span {
    font-size: clamp(90px, 30vw, 200px);
  }

  /* Keep PNG and knockout anchored in the upper portion so they don't overlap the bottom band */
  .hero-knockout {
    align-items: flex-start;
    padding-top: 12vh;
  }

  .hero-png {
    height: 70%;
    bottom: auto;
    top: 8vh;
    transform: translateX(calc(-50% + var(--px, 0px))) translateY(var(--py, 0px));
  }

  .hero-band {
    padding: 48px 0 80px;
  }

  .hero-band-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-btns a {
    width: 100%;
    justify-content: center;
  }

  .hero-eyebrow-top {
    top: 80px;
  }

  .hero-scrollcue {
    display: none;
  }

  #game {
    height: 70vh;
    min-height: 400px;
  }

  .game-score-n {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .hero-knockout {
    padding-top: 40vh;
  }

  .hero-png {
    height: 60%;
    top: 10vh;
  }

  .hero-tagline {
    font-size: 30px;
    color: #15151a;
  }

  .hero-band {
    padding: 32px 0 60px;
  }

  #game {
    height: 60vh;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-png,
  .brand-ticker-track,
  .midia-marquee-track,
  .game-overlay-icon,
  .hero-scrollcue-line i,
  .game-idle-hint {
    animation: none;
  }
}

/* ════════════════════════════════════════════════════════════
   v5 — SPOTLIGHT · TITLE BLEND · FOOTER GAME · DEPOIMENTOS · DECK
   ════════════════════════════════════════════════════════════ */

/* ---- GLOBAL SPOTLIGHT (focal invert) ---- */
.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.5) 38%, transparent 70%);
  mix-blend-mode: difference;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
}

@media (hover: none) {
  .spotlight {
    display: none;
  }
}

/* ---- SECTION TITLE — blend on hover (dramatic invert) ---- */
.section-title {
  transition: filter .3s ease;
}

.section-title:hover {
  mix-blend-mode: difference;
}

.section-title:hover .char {
  color: #fff;
}

.section-title:hover em {
  color: #fff;
}

/* ════════════════════════════════════════════════════════════
   FOOTER — wordmark + ball physics toy
   ════════════════════════════════════════════════════════════ */
#footer {
  position: relative;
  min-height: 88vh;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 28px;
}

#footerGame {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

.footer-count {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(180px, 38vw, 560px);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.footer-wordmark {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 0.8;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  padding: 0 16px;
  margin-top: auto;
  pointer-events: none;
  user-select: none;
}

.footer-wordmark span {
  display: block;
}

.footer-wordmark .fw-1 {
  font-size: clamp(56px, 15vw, 200px);
  color: #fff;
}

.footer-wordmark .fw-2 {
  font-size: clamp(56px, 15vw, 200px);
  color: var(--yellow);
}

.footer-hint {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: opacity .4s ease;
  pointer-events: none;
}

.footer-hint.hidden {
  opacity: 0;
}

.footer-hint i {
  color: var(--yellow);
  animation: fh-tap 1.4s ease-in-out infinite;
}

@keyframes fh-tap {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

.footer-meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-meta .footer-credit {
  opacity: 0.7;
}

/* ════════════════════════════════════════════════════════════
   DEPOIMENTOS — richer cards
   ════════════════════════════════════════════════════════════ */
.dep-grid {
  align-items: center;
}

.qcard {
  perspective: 1000px;
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.5);
}

.qcard--featured {
  transform: translateY(-24px) scale(1.03);
  z-index: 2;
}

.qcard-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 45%, transparent 80%);
  transition: opacity .4s ease;
}

.qcard--featured .qcard-grad {
  background: linear-gradient(to top, rgba(0, 120, 50, 0.94) 0%, rgba(0, 80, 35, 0.5) 45%, transparent 80%);
}

.qcard-mark {
  transform: translateY(10px);
  opacity: 0.85;
  transition: transform .4s var(--ease-out), opacity .4s;
}

.qcard:hover .qcard-mark {
  transform: translateY(0) scale(1.1);
  opacity: 1;
}

.qcard-text {
  transition: transform .4s var(--ease-out);
}

.qcard:hover .qcard-text {
  transform: translateY(-4px);
}

.qcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qcard-ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
  flex: 0 0 auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.qcard--featured .qcard-ava {
  border-color: #fff;
}

.qcard-author-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.qcard-author-txt strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.01em;
}

.qcard--featured .qcard-author-txt strong {
  color: #fff;
}

.qcard-author-txt small {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ════════════════════════════════════════════════════════════
   VIDEO DECK — stacked → fan on hover
   ════════════════════════════════════════════════════════════ */
.videos-right {
  position: relative;
  min-height: 440px;
}

.deck-card {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  background: var(--ink);
  opacity: 0;
  transition: transform .55s var(--ease-out), box-shadow .45s ease, opacity .6s ease;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.4);
}

.videos-right.in .deck-card {
  opacity: 1;
}

.deck-card:nth-child(1) {
  z-index: 3;
  transform: translateY(0) rotate(-3deg);
}

.deck-card:nth-child(2) {
  z-index: 2;
  transform: translateY(20px) rotate(2.5deg);
}

.deck-card:nth-child(3) {
  z-index: 1;
  transform: translateY(40px) rotate(-1.5deg);
}

.videos-right.spread .deck-card:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.videos-right.spread .deck-card:nth-child(2) {
  transform: translateY(220px) rotate(0);
}

.videos-right.spread .deck-card:nth-child(3) {
  transform: translateY(440px) rotate(0);
}

.videos-right.spread {
  min-height: 640px;
}

.deck-card:hover {
  box-shadow: 0 28px 56px -20px rgba(0, 0, 0, 0.55);
}

@media (max-width: 980px) {
  .videos-right {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .deck-card {
    position: relative;
    opacity: 1;
    transform: none !important;
    height: 200px;
  }
}

/* ---- responsive footer ---- */
@media (max-width: 768px) {
  #footer {
    min-height: 78vh;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 20px 0;
  }

  .qcard--featured {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .footer-hint i,
  .spotlight {
    animation: none;
  }
}

/* ════════════════════════════════════════════════════════════
   v6 — CURSOR BLEND · VIDEOS · 3D GAME · INLINE FOOTER
   ════════════════════════════════════════════════════════════ */

/* ---- CURSOR: hard, blend only when .cursor-blend ---- */
.cursor-dot,
.cursor-ring {
  mix-blend-mode: normal;
}

.cursor-dot {
  background: var(--ink);
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.55);
}

.cursor-ring {
  border: 1.6px solid var(--ink);
  background: transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

body.cursor-hover .cursor-ring {
  background: transparent;
}

body.cursor-blend .cursor-dot {
  background: #fff;
  box-shadow: none;
  mix-blend-mode: difference;
  opacity: 1;
}

body.cursor-blend .cursor-ring {
  border-color: #fff;
  box-shadow: none;
  mix-blend-mode: difference;
  opacity: 1;
}

/* ---- KILL title hover color/blend (no color change on hover) ---- */
.section-title:hover {
  mix-blend-mode: normal;
}

.section-title:hover .char {
  color: inherit;
}

.section-title:hover em {
  color: inherit;
}

.sobre-text .section-title:hover .char,
.midia-center .section-title:hover .char {
  color: inherit;
}

.section-title .char {
  transition: none;
}

/* ════════════════════════════════════════════════════════════
   VÍDEOS — big cinematic cards
   ════════════════════════════════════════════════════════════ */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.vcard {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink);
  will-change: transform, clip-path;
  box-shadow: 0 24px 60px -32px rgba(0, 0, 0, 0.5);
}

.vcard-media {
  position: absolute;
  inset: -6% 0;
  overflow: hidden;
}

.vcard-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.95);
  transition: transform .8s var(--ease-out), filter .5s ease;
}

.vcard:hover .vcard-media img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.05);
}

.vcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.15) 55%, transparent 100%);
}

.vcard-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.vcard-num {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--yellow);
}

.vcard-meta {
  display: flex;
  flex-direction: column;
}

.vcard-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.vcard-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  color: #fff;
  line-height: 0.95;
  letter-spacing: 0.01em;
  transition: transform .4s var(--ease-out);
}

.vcard:hover .vcard-title {
  transform: translateX(5px);
}

.vcard-play {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  transition: transform .45s var(--ease-out), opacity .4s, box-shadow .4s;
}

.vcard:hover .vcard-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 0 12px rgba(255, 223, 0, 0.18);
}

@media (max-width: 900px) {
  .vid-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vcard {
    aspect-ratio: 16 / 10;
  }
}

/* ════════════════════════════════════════════════════════════
   MINI-GAME (3D) section
   ════════════════════════════════════════════════════════════ */
#game {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: radial-gradient(ellipse at 70% 20%, #15151a 0%, var(--ink) 60%);
  overflow: hidden;
}

#gameThree {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

#gameThree canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.game-ui {
  position: relative;
  z-index: 2;
  padding: 88px clamp(20px, 4vw, 48px) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}

.game-ui .section-title {
  color: #fff;
}

.game-ui .section-title em {
  color: var(--yellow);
  font-family: 'Georgia', serif;
  font-style: italic;
}

.game-hud {
  display: flex;
  gap: 34px;
  opacity: 0;
  transition: opacity .5s ease;
}

.game-hud .game-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.game-score-n {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--yellow);
}

.game-score:last-child .game-score-n {
  color: #fff;
}

.game-score-l {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.game-hint {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: opacity .4s ease;
}

.game-hint.hidden {
  opacity: 0;
}

.game-hint i {
  color: var(--yellow);
  animation: fh-tap 1.4s ease-in-out infinite;
}

@keyframes fh-tap {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.game-over {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(5px);
}

.game-over[hidden] {
  display: none;
}

.game-over-card {
  text-align: center;
  padding: 30px;
}

.game-over-icon {
  font-size: 46px;
  color: var(--yellow);
  margin-bottom: 14px;
  animation: fh-tap 2s ease-in-out infinite;
}

.game-over-card h3 {
  font-family: var(--font-display);
  font-size: 38px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.game-over-card p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
}

.game-over-card .btn-primary {
  pointer-events: auto;
}

@media (max-width: 768px) {

  /* Game UI: title left side, HUD placed absolutely centered at top */
  .game-ui {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    pointer-events: none;
  }

  .game-ui .section-title {
    max-width: 60%;
  }

  /* HUD: both scores side-by-side, centered at top of the game canvas */
  .game-hud {
    position: absolute;
    top: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 32px;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    /* shown by JS when game starts */
    z-index: 4;
  }

  .game-hud .game-score {
    align-items: center;
  }

  .game-score-n {
    font-size: 40px;
  }

  .game-score-l {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}


/* ════════════════════════════════════════════════════════════
   FOOTER — inline
   ════════════════════════════════════════════════════════════ */
#footer {
  position: static;
  min-height: 0;
  overflow: visible;
  background: var(--ink);
  display: block;
  padding: 52px 0 36px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  transition: color .2s;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--yellow);
  transition: right .35s var(--ease-out);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-nav a:hover::after {
  right: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background .2s, color .2s, transform .2s;
}

.footer-social a:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-3px);
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-base .footer-credit {
  opacity: 0.8;
}

@media (max-width: 700px) {
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ---- extra microinteractions ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease-out);
}

.btn-primary:hover::after {
  left: 140%;
}

.eyebrow-tag::before {
  transition: width .4s var(--ease-out);
}

.eyebrow-tag:hover::before {
  width: 44px;
}

/* ════════════════════════════════════════════════════════════
   v7 — GAME PINNED · OUTRO · LOGO WALL · VIDEO FEAT · CURSOR DISC
   ════════════════════════════════════════════════════════════ */

/* ---- CURSOR: hard solid disc in blend mode (real invert) ---- */
body.cursor-blend .cursor-dot {
  opacity: 0;
}

body.cursor-blend .cursor-ring {
  width: 76px;
  height: 76px;
  margin: -38px;
  background: #fff;
  border: none;
  box-shadow: none;
  mix-blend-mode: difference;
}

/* ---- GAME: pinned full-screen via sticky ---- */
.game-wrap {
  position: relative;
  height: 200vh;
  background: var(--ink);
}

#game.game-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 42%, #17171d 0%, var(--ink) 66%);
}

#game.game-sticky #gameThree {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.game-eyebrow {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

#game.game-sticky .game-hud {
  position: absolute;
  top: 26px;
  right: clamp(20px, 4vw, 48px);
  z-index: 3;
  display: flex;
  gap: 30px;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}

#game.game-sticky .game-hud .game-score {
  align-items: flex-end;
}

/* Mobile phones: HUD centered and lower so it doesn't overlap eyebrow text */
@media (max-width: 480px) {
  #game.game-sticky .game-hud {
    top: 76px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 32px;
    justify-content: center;
  }

  #game.game-sticky .game-hud .game-score {
    align-items: center;
  }
}

#game.game-sticky .game-hint {
  position: absolute;
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  transition: opacity .4s ease;
}

#game.game-sticky .game-hint.hidden {
  opacity: 0;
}

#game.game-sticky .game-hint i {
  color: var(--yellow);
  font-size: 16px;
  animation: cue-up 1.5s ease-in-out infinite;
}

@keyframes cue-up {

  0%,
  100% {
    transform: translateY(0);
    opacity: .6;
  }

  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* ---- OUTRO — DIEGO FREESTYLE knockout closing ---- */
#outro {
  position: relative;
  height: 100vh;
  height: 100svh;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outro-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.outro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outro-knockout {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #fff;
  mix-blend-mode: lighten;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 0.8;
  pointer-events: none;
}

.outro-knockout span {
  font-family: var(--font-display);
  color: #000;
  letter-spacing: -0.01em;
}

.outro-knockout .ok-1 {
  font-size: clamp(70px, 16vw, 240px);
}

.outro-knockout .ok-2 {
  font-size: clamp(70px, 16vw, 240px);
}

.outro-tag {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  mix-blend-mode: difference;
}

/* ---- LOGO WALL (marcas, real logos) ---- */
#midia .logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 920px;
  margin: 52px auto 0;
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(10, 10, 10, 0.1);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  transition: background .3s ease;
}

.logo-cell img {
  height: 40px;
  width: auto;
  max-width: 124px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.72;
  transition: opacity .3s ease, transform .35s var(--ease-out);
}

.logo-cell:hover {
  background: rgba(10, 10, 10, 0.06);
}

.logo-cell:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.logo-cell:nth-child(4n) {
  border-right: none;
}

.logo-cell:nth-child(n+5) {
  border-bottom: none;
}

@media (max-width: 700px) {
  #midia .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-cell {
    padding: 30px 16px;
  }

  .logo-cell:nth-child(4n) {
    border-right: 1px solid rgba(10, 10, 10, 0.1);
  }

  .logo-cell:nth-child(2n) {
    border-right: none;
  }

  .logo-cell:nth-child(n+5) {
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  }

  .logo-cell:nth-child(n+7) {
    border-bottom: none;
  }
}

/* ---- VÍDEOS — featured + decorative word ---- */
#videos {
  position: relative;
  overflow: hidden;
}

.vid-bgword {
  position: absolute;
  top: 8%;
  right: -2%;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 320px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(10, 10, 10, 0.05);
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
}

#videos .container {
  position: relative;
  z-index: 1;
}

.vid-grid {
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: 1fr;
}

.vcard--feat {
  grid-row: span 2;
  aspect-ratio: auto;
}

.vcard-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 1;
}

.vcard--feat.vplaying .vcard-vid {
  opacity: 1;
}

.vcard--feat.vplaying .vcard-media img {
  opacity: 0;
}

@media (max-width: 900px) {
  .vid-grid {
    grid-template-columns: 1fr;
  }

  .vcard--feat {
    grid-row: auto;
  }
}

/* ════════════════════════════════════════════════════════════
   v8 — VIDEO RAIL · LOGO CAROUSEL · HEADER HIDE ON GAME
   ════════════════════════════════════════════════════════════ */

/* ---- VÍDEOS: horizontal rail that crosses screen on scroll ---- */
#videos {
  padding: 104px 0 120px;
  position: relative;
  overflow: hidden;
}

.vid-bgword {
  display: none;
}

.vid-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.vid-rail {
  width: 100%;
  overflow: visible;
}

.vid-track {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  width: max-content;
  padding: 40px clamp(20px, 4vw, 48px);
  will-change: transform;
}

.vid-track .vcard {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 25vw, 372px);
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  background: var(--ink);
  box-shadow: 0 24px 60px -34px rgba(0, 0, 0, 0.5);
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}

.vid-track .vcard--down {
  margin-top: 80px;
}

.vid-track .vcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.6);
}

.vcard-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.vcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.95);
  transition: transform .8s var(--ease-out), filter .5s;
}

.vid-track .vcard:hover .vcard-media img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.05);
}

.vcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 55%, transparent 100%);
}

.vcard-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.vcard-num {
  position: absolute;
  top: 20px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--yellow);
}

.vcard-meta {
  display: flex;
  flex-direction: column;
}

.vcard-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.vcard-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  color: #fff;
  line-height: 0.95;
  transition: transform .4s var(--ease-out);
}

.vid-track .vcard:hover .vcard-title {
  transform: translateX(5px);
}

.vcard-play {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: transform .45s var(--ease-out), opacity .4s, box-shadow .4s;
}

.vid-track .vcard:hover .vcard-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 0 10px rgba(255, 223, 0, 0.18);
}

@media (max-width: 768px) {
  .vid-track {
    gap: 16px;
    padding: 24px 20px;
  }

  .vid-track .vcard {
    width: 74vw;
  }

  .vid-track .vcard--down {
    margin-top: 40px;
  }
}

/* ---- MARCAS: auto carousel, no text ---- */
#midia {
  padding: 56px 0;
  background: var(--yellow);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: logo-marq 36s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.mlogo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mlogo img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.62;
  transition: opacity .3s ease, transform .35s var(--ease-out);
}

.mlogo:hover img {
  opacity: 1;
  transform: scale(1.12);
}

@keyframes logo-marq {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

/* ---- HEADER hides while game on screen ---- */
#main-header {
  transition: transform .45s var(--ease), opacity .4s ease, background .4s ease, border-color .4s ease, padding .3s ease;
}

body.game-active #main-header {
  transform: translateY(-130%);
  opacity: 0;
  pointer-events: none;
}

body.game-active .social-rail {
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

/* ════════════════════════════════════════════════════════════
   v9 — VÍDEOS STACKED CARDS + YOUTUBE MODAL
   ════════════════════════════════════════════════════════════ */
#videos {
  padding: 104px 0 40px;
}

.vstack-wrap {
  position: relative;
}

.vstack-pin {
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vstack-card {
  position: absolute;
  width: min(86vw, 880px);
  height: min(64vh, 540px);
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.7);
  will-change: transform;
}

.vstack-card:nth-child(1) {
  z-index: 1;
}

.vstack-card:nth-child(2) {
  z-index: 2;
}

.vstack-card:nth-child(3) {
  z-index: 3;
}

.vstack-media {
  position: absolute;
  inset: 0;
}

.vstack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.96);
  transition: transform .8s var(--ease-out), filter .5s;
}

.vstack-card:hover .vstack-media img {
  transform: scale(1.05);
  filter: brightness(0.92) saturate(1.05);
}

.vstack-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 55%, transparent 100%);
}

.vstack-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  text-align: left;
}

.vstack-num {
  position: absolute;
  top: 28px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--yellow);
}

.vstack-meta {
  display: flex;
  flex-direction: column;
}

.vstack-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.vstack-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  color: #fff;
  line-height: 0.92;
}

.vstack-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}

.vstack-card:hover .vstack-play {
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 0 14px rgba(255, 223, 0, 0.2);
}

/* mobile: simple stack, no pin */
@media (max-width: 768px) {
  .vstack-pin {
    height: auto;
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
  }

  .vstack-card {
    position: relative;
    width: 100%;
    height: 56vw;
    max-height: 320px;
    transform: none !important;
  }
}

/* YouTube modal */
#video-modal {
  position: fixed;
  inset: 0;
  z-index: 100002;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

#video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.vm-frame {
  width: min(92vw, 1100px);
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  background: #000;
}

.vm-embed,
.vm-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.vm-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.vm-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ════════════════════════════════════════════════════════════
   v10 — GALERIA native horizontal scroller
   ════════════════════════════════════════════════════════════ */
#galeria {
  background: var(--ink-2);
  padding-bottom: 20px;
}

.galeria-sticky {
  position: static;
  overflow: visible;
  height: auto;
}

.galeria-track.is-scroller {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  transform: none !important;
  /* kill any leftover GSAP x */
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-bottom: 24px;
}

.galeria-track.is-scroller::-webkit-scrollbar {
  display: none;
}

.galeria-track.is-scroller .galeria-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

/* ════════════════════════════════════════════════════════════
   v11 — textless video cards
   ════════════════════════════════════════════════════════════ */
.vstack-card::after {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.12) 40%, transparent 70%);
}

.vstack-info {
  justify-content: center;
  align-items: center;
  padding: 0;
}

.vstack-play {
  position: static;
  transform: scale(0.92);
}

.vstack-card:hover .vstack-play {
  transform: scale(1);
}

/* ════════════════════════════════════════════════════════════
   v12 — pinned gallery on desktop, native touch scroll on mobile
   ════════════════════════════════════════════════════════════ */
.galeria-sticky {
  position: relative;
  overflow: hidden;
  height: auto;
}

.galeria-track {
  overflow: visible !important;
  scroll-snap-type: none;
}

.galeria-item {
  scroll-snap-align: none;
}

/* Mobile: native horizontal scroll instead of GSAP pinned scroll */
@media (max-width: 768px) {
  .galeria-sticky {
    overflow: visible;
  }

  .galeria-track {
    overflow-x: auto !important;
    overflow-y: hidden;
    transform: none !important;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    cursor: default;
  }

  .galeria-track::-webkit-scrollbar {
    display: none;
  }

  .galeria-item {
    scroll-snap-align: start;
    cursor: default;
  }
}