@charset "UTF-8";
/**
 * @file
 * Gamification section styles — mobile-first.
 * Figma: Aprende jugando (desktop 26:2802, no mobile design).
 *
 * Mobile: padding 48px 16px, gradient bg.
 * Desktop (>=992px): 1223px height, iframe container with dashed border.
 */
/* ==========================================================================
   Mobile base (xs)
   ========================================================================== */
.vel-gamification {
  background: var(--vel-gradient-section);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vel-gamification .vel-container {
  width: 100%;
}

.velantis-juego-wrapper {
  aspect-ratio: 16/10;
  border-radius: 24px;
  background: var(--vel-bg-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed var(--vel-secondary);
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.unity-desktop {
  width: 100%;
  height: 100%;
  position: relative;
}

.vel-gamification__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vel-space-lg);
}

.vel-gamification__placeholder-text {
  font-family: var(--vel-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 133, 172, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.vel-gamification__placeholder-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  background: var(--vel-primary);
  opacity: 0.4;
  border-radius: 12px;
  font-family: var(--vel-font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--vel-bg-white);
}

/* ==========================================================================
   md (768px)
   ========================================================================== */
@media (min-width: 768px) {
  .vel-gamification .vel-container {
    border-radius: 32px;
  }
  .velantis-juego-wrapper {
    border-radius: 28px;
  }
  .vel-gamification__placeholder-text {
    font-size: 24px;
    letter-spacing: 2.5px;
  }
}
/* ==========================================================================
   lg (992px) — Desktop
   ========================================================================== */
@media (min-width: 992px) {
  .vel-gamification .vel-container {
    border-radius: 40px;
  }
  .velantis-juego-wrapper {
    border-radius: 36px;
  }
  .vel-gamification__placeholder-text {
    font-size: var(--vel-text-3xl);
    letter-spacing: 3px;
  }
  .vel-gamification__placeholder-btn {
    height: 56px;
    width: 185px;
    font-size: 16px;
  }
}
/*# sourceMappingURL=gamification-section.css.map */
