/* ============================================================
   LOJA – IKIGAI Escola de Artes Marciais
   ============================================================ */

.lj-hero {
  min-height: 38vh;
  background: url('../images/background_sections.jpeg?v=2') center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--navbar-h) + 48px) 24px 52px;
  position: relative;
}

.lj-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.60);
}

.lj-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent 0%, rgba(8, 7, 16, 0.85) 100%);
  pointer-events: none;
  z-index: 0;
}

.lj-hero__content {
  position: relative;
  z-index: 1;
}

.lj-hero__badge {
  display: inline-block;
  background: rgba(150, 120, 21, 0.25);
  border: 1px solid rgba(150, 120, 21, 0.55);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.lj-hero__title {
  color: var(--gold);
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: 5px;
  margin: 0 0 12px;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.lj-hero__sub {
  color: rgba(232, 224, 204, 0.75);
  font-size: clamp(13px, 1.8vw, 16px);
  font-style: italic;
  margin: 0;
}

.lj-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: 1px solid rgba(150, 120, 21, 0.5);
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}

.lj-hero__back:hover {
  background: rgba(150, 120, 21, 0.18);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
}

/* ---- Body ---- */

.lj-body {
  background: url('../images/background_sections.jpeg?v=2') center / cover no-repeat fixed;
  padding: 72px 24px 100px;
}

/* ---- Store image section ---- */

.lj-section {
  max-width: 750px;
  margin: 0 auto 56px;
}

.lj-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.lj-section__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(150, 120, 21, 0.6) 0%, transparent 100%);
}

.lj-section__title {
  color: var(--gold);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.8);
  margin: 0;
  background: rgba(10, 8, 20, 0.55);
  padding: 6px 14px;
  border-radius: 6px;
  border-left: 3px solid rgba(212, 175, 55, 0.6);
}

/* ---- Store image card ---- */

.lj-card {
  border: 1px solid rgba(150, 120, 21, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
  position: relative;
  transition: box-shadow 0.4s, border-color 0.4s, transform 0.4s;
}

.lj-card:hover {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 16px 72px rgba(212, 175, 55, 0.22), 0 4px 24px rgba(0, 0, 0, 0.6);
  transform: translateY(-4px);
}

.lj-card__img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.5s, transform 0.5s;
}

.lj-card:hover .lj-card__img {
  filter: brightness(1.06);
  transform: scale(1.012);
}

.lj-card__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lj-card__shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 50%;
  height: 200%;
  background: linear-gradient(115deg,
      transparent 20%,
      rgba(255, 255, 255, 0.28) 40%,
      rgba(245, 215, 110, 0.15) 50%,
      rgba(255, 255, 255, 0.28) 60%,
      transparent 80%);
  transform: skewX(-8deg);
  transition: none;
}

.lj-card:hover .lj-card__shine::after {
  left: 160%;
  transition: left 0.75s ease;
}

/* ---- Round WhatsApp buy button ---- */

.lj-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}

.lj-cta-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  border-radius: 50%;
  overflow: hidden;
  width: clamp(125px, 14vw, 185px);
  height: clamp(125px, 14vw, 185px);
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.35),
    0 0 32px rgba(212, 175, 55, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.55);
  transition: box-shadow 0.4s, transform 0.35s, filter 0.35s;
}

.lj-cta-btn:hover {
  transform: scale(1.07) translateY(-4px);
  box-shadow:
    0 0 0 4px rgba(212, 175, 55, 0.65),
    0 0 52px rgba(212, 175, 55, 0.5),
    0 12px 48px rgba(0, 0, 0, 0.6);
  filter: brightness(1.1) drop-shadow(0 0 18px rgba(212, 175, 55, 0.6));
}

.lj-cta-btn:active {
  transform: scale(0.97) translateY(0);
  transition-duration: 0.1s;
}

.lj-cta-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Pulse ring animation */
.lj-cta-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.45);
  animation: lj-ring-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes lj-ring-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(1.18);
  }
}

/* Helper label below button */
.lj-cta-label {
  text-align: center;
  margin-top: 16px;
  color: rgba(232, 224, 204, 0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .lj-body {
    padding: 48px 16px 80px;
  }

  .lj-cta-btn {
    width: clamp(155px, 45vw, 195px);
    height: clamp(155px, 45vw, 195px);
  }
}
