/* Ajustes editoriais: a abertura apresenta o próprio Jorge. */
.hero-image {
  background-color: #090908;
  background-image: url("assets/jorge.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 62% auto;
}

@media (max-width: 560px) {
  .hero-image {
    background-image: url("assets/logo-oficial.jpg");
    background-position: center;
    background-size: cover;
    filter: brightness(.42) saturate(.75);
  }
}

.vip-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 22px;
  align-items: center;
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(240, 210, 34, .55);
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 210, 34, .22), transparent 34%),
    linear-gradient(135deg, #111 0%, #090908 48%, #1c1604 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .06) inset,
    0 0 28px rgba(240, 210, 34, .28),
    0 18px 45px rgba(0, 0, 0, .42);
}

.vip-card:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(240, 210, 34, .32);
  box-shadow: 0 0 24px rgba(240, 210, 34, .2);
  pointer-events: none;
  animation: vip-neon 2.6s ease-in-out infinite alternate;
}

.vip-card > div {
  position: relative;
  z-index: 2;
  inset: auto;
  padding: 0;
  background: none;
}

.vip-copy {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: center;
}

.vip-copy h3 {
  text-shadow: 0 0 22px rgba(240, 210, 34, .28);
}

.vip-player {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 9 / 16;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #050505;
  box-shadow:
    0 0 30px rgba(240, 210, 34, .24),
    0 12px 35px rgba(0, 0, 0, .5);
}

.vip-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-signature {
  gap: 10px;
  max-width: 360px;
}

.brand-signature img {
  width: min(310px, 100%);
  height: auto;
  object-fit: contain;
  filter: contrast(1.08);
}

.mascot-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 0 26px;
  padding: 16px;
  border: 1px solid rgba(240, 210, 34, .28);
  background: rgba(255, 255, 255, .05);
}

.mascot-card img {
  width: 82px;
  height: 112px;
  object-fit: cover;
  object-position: top center;
  border-radius: 999px;
  background: #050505;
  border: 1px solid rgba(240, 210, 34, .45);
}

.mascot-card strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.15;
}

.mascot-card span {
  display: block;
  color: #bdb7aa;
  margin-top: 6px;
  font-size: .78rem;
  line-height: 1.55;
}

.visit-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.brand-term {
  font-style: normal;
  font-weight: 600;
  letter-spacing: -.055em;
}

@keyframes vip-neon {
  from {
    opacity: .58;
    box-shadow: 0 0 14px rgba(240, 210, 34, .14);
  }

  to {
    opacity: 1;
    box-shadow: 0 0 34px rgba(240, 210, 34, .34), 0 0 72px rgba(240, 210, 34, .12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vip-card:before {
    animation: none;
  }
}

@media (max-width: 560px) {
  .vip-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .vip-copy {
    min-height: 0;
  }

  .vip-player {
    justify-self: center;
  }

  .brand-signature {
    max-width: 280px;
  }

  .mascot-card {
    grid-template-columns: 68px 1fr;
    gap: 14px;
    padding: 13px;
  }

  .mascot-card img {
    width: 68px;
    height: 92px;
  }

  .visit-image {
    height: min(92vw, 560px);
    padding: 10px;
  }

  .visit-image img {
    object-fit: contain;
  }
}
