/* ==========================================================================
   Landing page (/landing) — parallax, scroll storytelling e micro-interações
   ========================================================================== */

:root {
  --lp-indigo: #667eea;
  --lp-violet: #764ba2;
  --lp-pink: #f5576c;
  --lp-cyan: #4facfe;
  --lp-mint: #43e97b;
  --lp-amber: #fbbf24;
  --lp-ink: #0b0a1a;
  --lp-surface: var(--bs-body-bg);
  --lp-border: var(--bs-border-color);
  --lp-muted: var(--bs-secondary-color);
  --lp-radius: 20px;
  --lp-shadow: 0 24px 60px rgba(17, 12, 46, 0.12);
  --lp-shadow-soft: 0 8px 28px rgba(17, 12, 46, 0.08);
}

[data-bs-theme="dark"] {
  --lp-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --lp-shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.lp-body {
  overflow-x: hidden;
}

.lp {
  --lp-gutter: clamp(16px, 4vw, 48px);
  position: relative;
}

.lp-wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--lp-gutter);
}

.lp-section {
  position: relative;
  padding-block: clamp(64px, 9vw, 128px);
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-indigo);
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.25);
}

.lp-heading {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0.6rem;
}

.lp-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--lp-muted);
  max-width: 62ch;
  margin: 0;
}

.lp-gradient-text {
  background: linear-gradient(100deg, var(--lp-indigo), var(--lp-pink) 45%, var(--lp-amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Barra de progresso de leitura ===== */
.lp-progress {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 3px;
  z-index: 1080;
  pointer-events: none;
  background: transparent;
}

.lp-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--lp-indigo), var(--lp-pink), var(--lp-amber));
}

/* ===== Reveal on scroll ===== */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal="left"]  { transform: translate3d(-32px, 0, 0); }
[data-reveal="right"] { transform: translate3d(32px, 0, 0); }
[data-reveal="zoom"]  { transform: scale(0.94); }

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(80px, 12vh, 140px) clamp(60px, 10vh, 120px);
  isolation: isolate;
}

.lp-hero-bg {
  position: absolute;
  inset: -10% -5%;
  z-index: -2;
  pointer-events: none;
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}

.lp-orb-1 { width: 46vw; height: 46vw; left: -8vw;  top: 2vh;  background: radial-gradient(circle, var(--lp-indigo), transparent 68%); }
.lp-orb-2 { width: 40vw; height: 40vw; right: -6vw; top: 8vh;  background: radial-gradient(circle, var(--lp-pink), transparent 68%); opacity: 0.42; }
.lp-orb-3 { width: 34vw; height: 34vw; left: 32vw;  bottom: -12vh; background: radial-gradient(circle, var(--lp-cyan), transparent 68%); opacity: 0.35; }

.lp-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(102, 126, 234, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(102, 126, 234, 0.16) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 78%);
  will-change: transform;
}

/* Pauta musical animada no fundo */
.lp-staff {
  position: absolute;
  inset-inline: -10%;
  top: 52%;
  height: 120px;
  opacity: 0.35;
  will-change: transform;
}

.lp-staff span {
  display: block;
  height: 1px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, transparent, var(--lp-indigo), transparent);
  opacity: 0.5;
}

/* Notas flutuantes (injetadas via JS) */
.lp-note {
  position: absolute;
  color: var(--lp-indigo);
  opacity: 0.28;
  will-change: transform;
  animation: lp-float 9s ease-in-out infinite;
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-22px) rotate(8deg); }
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: 100%;
}

.lp-hero-title {
  font-size: clamp(2.4rem, 6.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 1.1rem 0 1.1rem;
}

/* Reveal palavra a palavra */
.lp-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.lp-word > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

.lp-hero.is-ready .lp-word > span { transform: none; }

.lp-hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--lp-muted);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.75rem;
}

.lp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, background 0.25s, color 0.25s;
  will-change: transform;
  overflow: hidden;
}

.lp-btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--lp-indigo), var(--lp-violet));
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.38);
}

.lp-btn-primary:hover {
  color: #fff;
  box-shadow: 0 18px 44px rgba(102, 126, 234, 0.5);
}

/* Brilho que atravessa o botão */
.lp-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  animation: lp-shine 4.5s ease-in-out infinite;
}

@keyframes lp-shine {
  0%, 65% { left: -60%; }
  100%    { left: 130%; }
}

.lp-btn-ghost {
  color: var(--bs-body-color);
  background: var(--bs-body-bg);
  border-color: var(--lp-border);
}

.lp-btn-ghost:hover {
  color: var(--lp-indigo);
  border-color: var(--lp-indigo);
  background: rgba(102, 126, 234, 0.08);
}

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  font-size: 0.86rem;
  color: var(--lp-muted);
}

.lp-trust i { color: var(--lp-mint); margin-right: 6px; }

/* ===== Mockup 3D do hero ===== */
.lp-hero-visual {
  position: relative;
  perspective: 1200px;
}

.lp-mock {
  position: relative;
  border-radius: var(--lp-radius);
  background: var(--bs-body-bg);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.lp-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--lp-border);
  background: rgba(127, 127, 160, 0.07);
}

.lp-mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-mock-dot:nth-child(1) { background: #ff5f57; }
.lp-mock-dot:nth-child(2) { background: #febc2e; }
.lp-mock-dot:nth-child(3) { background: #28c840; }
.lp-mock-file { margin-left: 8px; font-size: 0.78rem; color: var(--lp-muted); }

.lp-mock-body { padding: 20px 22px 34px; }

.lp-mock-song { font-weight: 800; font-size: 1.05rem; margin-bottom: 2px; }
.lp-mock-artist { font-size: 0.82rem; color: var(--lp-muted); margin-bottom: 16px; }

.lp-sheet {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.9;
  white-space: pre-wrap;
  margin: 0;
}

.lp-sheet b {
  color: var(--lp-indigo);
  font-weight: 700;
}

.lp-mock-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--bs-body-bg);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-soft);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  will-change: transform;
}

.lp-mock-float i { font-size: 1rem; }
.lp-float-a { top: -20px; right: -16px; }
.lp-float-b { bottom: -22px; left: -30px; }
.lp-float-c { bottom: -20px; right: 26px; }

.lp-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
  opacity: 0.6;
}

.lp-mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
  transform: translateX(-50%);
  animation: lp-wheel 1.8s ease-in-out infinite;
}

@keyframes lp-wheel {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.lp-marquee {
  position: relative;
  padding-block: 26px;
  border-block: 1px solid var(--lp-border);
  background: rgba(127, 127, 160, 0.04);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.lp-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: lp-scroll-x 42s linear infinite;
}

.lp-marquee-track + .lp-marquee-track {
  margin-top: 14px;
  animation-duration: 54s;
  animation-direction: reverse;
}

.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }

@keyframes lp-scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}

.lp-chip:hover {
  transform: translateY(-2px);
  border-color: var(--lp-indigo);
  color: var(--lp-indigo);
}

.lp-chip i { color: var(--lp-indigo); font-size: 0.8rem; }

/* ==========================================================================
   STATS
   ========================================================================== */
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lp-stat {
  position: relative;
  padding: 26px 20px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--bs-body-bg);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.lp-stat::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-indigo), var(--lp-pink));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-stat:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-soft); }
.lp-stat:hover::before { transform: none; }

.lp-stat-num {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--lp-indigo), var(--lp-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.lp-stat-label {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ==========================================================================
   STORY — coluna sticky + passos
   ========================================================================== */
.lp-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-top: 48px;
}

.lp-story-sticky {
  position: sticky;
  top: 96px;
  align-self: start;
}

.lp-story-stage {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(102, 126, 234, 0.16), transparent 60%),
    var(--bs-body-bg);
  box-shadow: var(--lp-shadow-soft);
  overflow: hidden;
}

.lp-story-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(20px, 3vw, 34px);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.lp-story-panel.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.lp-panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--lp-shadow-soft);
}

.lp-panel-title { font-weight: 800; font-size: 1.15rem; margin: 0; }
.lp-panel-text { color: var(--lp-muted); font-size: 0.92rem; margin: 0; }

.lp-panel-rows { display: grid; gap: 8px; margin-top: 4px; }

.lp-panel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  background: rgba(127, 127, 160, 0.05);
  font-size: 0.85rem;
}

.lp-panel-row .lp-tag {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(102, 126, 234, 0.14);
  color: var(--lp-indigo);
}

.lp-steps { display: grid; gap: 18px; }

.lp-step {
  position: relative;
  padding: 26px 26px 26px 30px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--bs-body-bg);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s, opacity 0.35s;
  opacity: 0.55;
}

.lp-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--lp-indigo), var(--lp-pink));
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-step.is-active {
  opacity: 1;
  border-color: rgba(102, 126, 234, 0.45);
  box-shadow: var(--lp-shadow-soft);
  transform: translateX(4px);
}

.lp-step.is-active::before { transform: none; }

.lp-step-num {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--lp-indigo);
  text-transform: uppercase;
}

.lp-step h3 { font-size: 1.22rem; font-weight: 800; margin: 8px 0 6px; }
.lp-step p { color: var(--lp-muted); margin: 0; font-size: 0.94rem; }

/* ==========================================================================
   DEMO de transposição
   ========================================================================== */
.lp-demo {
  position: relative;
  overflow: hidden;
}

.lp-demo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: calc(var(--lp-radius) + 8px);
  border: 1px solid var(--lp-border);
  background:
    radial-gradient(100% 140% at 100% 0%, rgba(245, 87, 108, 0.12), transparent 55%),
    radial-gradient(100% 140% at 0% 100%, rgba(102, 126, 234, 0.14), transparent 55%),
    var(--bs-body-bg);
  box-shadow: var(--lp-shadow);
}

.lp-key-display {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 20px;
}

.lp-key-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-size: 1rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, color 0.2s, background 0.2s;
}

.lp-key-btn:hover {
  transform: translateY(-2px);
  border-color: var(--lp-indigo);
  color: var(--lp-indigo);
  background: rgba(102, 126, 234, 0.08);
}

.lp-key-btn:active { transform: scale(0.94); }

.lp-key-value {
  min-width: 90px;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.lp-key-value small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-demo-sheet {
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: rgba(127, 127, 160, 0.05);
  padding: 22px 24px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.88rem;
  line-height: 2.1;
}

.lp-demo-line { display: block; }

.lp-demo-chord {
  display: inline-block;
  font-weight: 800;
  color: var(--lp-indigo);
  padding: 1px 7px;
  border-radius: 7px;
  background: rgba(102, 126, 234, 0.1);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s;
}

.lp-demo-chord.is-bump {
  transform: translateY(-4px) scale(1.06);
  background: rgba(245, 87, 108, 0.18);
}

.lp-demo-lyric { color: var(--lp-muted); }

/* ==========================================================================
   BENTO de recursos
   ========================================================================== */
.lp-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.lp-card {
  position: relative;
  padding: 26px 24px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--bs-body-bg);
  overflow: hidden;
  text-decoration: none;
  color: var(--bs-body-color);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
  transform-style: preserve-3d;
}

/* Spotlight que segue o mouse */
.lp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(102, 126, 234, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.lp-card:hover {
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: var(--lp-shadow-soft);
  color: var(--bs-body-color);
}

.lp-card:hover::before { opacity: 1; }

/* spans que sempre fecham as 6 colunas: 4+2 / 2+2+2 / 6 */
.lp-card-lg { grid-column: span 4; }
.lp-card-md { grid-column: span 2; }
.lp-card-sm { grid-column: span 2; }
.lp-card-wide {
  grid-column: span 6;
  display: flex;
  align-items: center;
  gap: 22px;
}

.lp-card-wide .lp-card-icon { margin-bottom: 0; flex-shrink: 0; }

.lp-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 16px;
  box-shadow: var(--lp-shadow-soft);
}

.lp-card h3 { font-size: 1.1rem; font-weight: 800; margin: 0 0 8px; }
.lp-card p { font-size: 0.9rem; color: var(--lp-muted); margin: 0; }

.lp-card-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--lp-muted);
}

.lp-card-list i { color: var(--lp-mint); margin-right: 8px; }

/* ==========================================================================
   FERRAMENTAS
   ========================================================================== */
.lp-tools {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.lp-tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 14px;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  background: var(--bs-body-bg);
  text-decoration: none;
  color: var(--bs-body-color);
  text-align: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s, border-color 0.28s;
  will-change: transform;
}

.lp-tool:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-soft);
  border-color: rgba(102, 126, 234, 0.4);
  color: var(--bs-body-color);
}

.lp-tool i { font-size: 1.5rem; }
.lp-tool span { font-weight: 700; font-size: 0.9rem; }
.lp-tool small { color: var(--lp-muted); font-size: 0.75rem; }

/* ==========================================================================
   COMUNIDADE
   ========================================================================== */
.lp-community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 40px;
}

.lp-list { display: grid; gap: 10px; }

.lp-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: var(--bs-body-bg);
  text-decoration: none;
  color: var(--bs-body-color);
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.lp-list-item:hover {
  transform: translateX(5px);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: var(--lp-shadow-soft);
  color: var(--bs-body-color);
}

.lp-list-rank {
  font-size: 1rem;
  font-weight: 900;
  color: var(--lp-muted);
  min-width: 26px;
  font-variant-numeric: tabular-nums;
}

.lp-list-item:nth-child(-n+3) .lp-list-rank { color: var(--lp-indigo); }

.lp-list-thumb {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  object-fit: cover;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet));
}

.lp-list-body { min-width: 0; }
.lp-list-title { font-weight: 700; font-size: 0.94rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-list-meta { font-size: 0.78rem; color: var(--lp-muted); }

/* ==========================================================================
   FAIXA PARALLAX
   ========================================================================== */
.lp-band {
  position: relative;
  min-height: 62vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #4c3a9c 0%, #6b3f9e 50%, #a8437a 100%);
}

.lp-band-layer {
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  will-change: transform;
}

.lp-band-layer-1 {
  background:
    radial-gradient(40% 50% at 20% 30%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(30% 40% at 80% 60%, rgba(255, 255, 255, 0.14), transparent 60%);
}

.lp-band-layer-2 {
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
}

.lp-band-content { padding: clamp(50px, 8vw, 90px) var(--lp-gutter); max-width: 820px; }

.lp-band h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.lp-band p { font-size: clamp(1rem, 1.5vw, 1.15rem); opacity: 0.9; margin-bottom: 26px; }

.lp-band .lp-btn-light {
  background: #fff;
  color: #4c3a9c;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.lp-band .lp-btn-light:hover { color: #3b2c7c; transform: translateY(-2px); }

.lp-band .lp-btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lp-band .lp-btn-outline:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.lp-faq { display: grid; gap: 12px; margin-top: 40px; max-width: 820px; margin-inline: auto; }

.lp-faq-item {
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: var(--bs-body-bg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.lp-faq-item[open] {
  border-color: rgba(102, 126, 234, 0.42);
  box-shadow: var(--lp-shadow-soft);
}

.lp-faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.lp-faq-item summary::-webkit-details-marker { display: none; }

.lp-faq-item summary::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--lp-indigo);
  transition: transform 0.3s;
}

.lp-faq-item[open] summary::after { transform: rotate(180deg); }

.lp-faq-answer {
  padding: 0 22px 20px;
  color: var(--lp-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ==========================================================================
   CTA final
   ========================================================================== */
.lp-final {
  position: relative;
  text-align: center;
  padding-block: clamp(70px, 10vw, 130px);
  overflow: hidden;
}

.lp-final-glow {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(102, 126, 234, 0.22), transparent 62%);
  filter: blur(40px);
  z-index: -1;
  will-change: transform;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 991.98px) {
  .lp-hero-inner { grid-template-columns: minmax(0, 1fr); }
  .lp-hero-visual { order: -1; max-width: 520px; margin-inline: auto; width: 100%; }
  .lp-story-grid { grid-template-columns: minmax(0, 1fr); }
  .lp-story-sticky { display: none; }
  .lp-demo-card { grid-template-columns: minmax(0, 1fr); }
  .lp-community-grid { grid-template-columns: minmax(0, 1fr); }
  .lp-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-card-lg, .lp-card-md, .lp-card-sm { grid-column: span 1; }
  .lp-card-wide { grid-column: span 2; }
}

@media (max-width: 767.98px) {
  .lp-hero { min-height: auto; padding-block: 60px 40px; }
  .lp-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-bento { grid-template-columns: minmax(0, 1fr); }
  .lp-card-lg, .lp-card-md, .lp-card-sm, .lp-card-wide { grid-column: span 1; }
  .lp-card-wide { display: block; }
  .lp-card-wide .lp-card-icon { margin-bottom: 16px; }
  .lp-scroll-hint { display: none; }
  .lp-float-b { left: -10px; bottom: 20px; }
  .lp-float-a { right: -6px; }
  .lp-float-c { display: none; }
  .lp-orb { filter: blur(50px); }
  .lp-key-value { font-size: 1.6rem; }
}

/* ==========================================================================
   MOVIMENTO REDUZIDO
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .lp-note,
  .lp-btn-primary::after,
  .lp-marquee-track,
  .lp-mouse::after {
    animation: none !important;
  }

  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .lp-word > span { transform: none !important; transition: none !important; }
  .lp-hero-bg [data-parallax], [data-parallax] { transform: none !important; }
  .lp-story-panel { transition: opacity 0.2s ease; }
}

/* ==========================================================================
   HOME (/) — mesma linguagem da landing, em versão enxuta
   ========================================================================== */

/* Hero mais baixo: a home não precisa ocupar a tela inteira antes do conteúdo */
.lp-hero-sm {
  min-height: 0;
  padding-block: clamp(48px, 8vh, 88px) clamp(40px, 6vh, 72px);
}

.lp-hero-sm .lp-hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin: 0.9rem 0 0.9rem;
}

.lp-hero-sm .lp-hero-sub { max-width: 46ch; }

/* Seções da home respiram menos que as da landing */
.lp-section-sm { padding-block: clamp(44px, 6vw, 76px); }

/* Cabeçalho de seção com atalho "ver todos" à direita */
.lp-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lp-head .lp-heading { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 0.35rem; }
.lp-head .lp-sub { font-size: 0.95rem; }

.lp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--lp-indigo);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.18s ease;
}
.lp-link:hover { color: var(--lp-indigo); gap: 12px; }

/* ---------- Músicos em destaque ---------- */
.lp-people {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.lp-person {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px 16px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.lp-person:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: var(--lp-shadow-soft);
  color: inherit;
}

.lp-person-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-indigo), var(--lp-violet));
}

.lp-person-name {
  font-weight: 700;
  font-size: 0.88rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-person-score { font-size: 0.75rem; color: var(--lp-muted); }

.lp-person-medal {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #3b2c00;
  background: var(--lp-amber);
}
.lp-person-medal.is-silver { background: #cbd5e1; color: #1e293b; }
.lp-person-medal.is-bronze { background: #d8a06a; color: #3b2405; }

/* ---------- Cursos e posts ---------- */
.lp-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.lp-media {
  display: flex;
  flex-direction: column;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.lp-media:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: var(--lp-shadow-soft);
  color: inherit;
}

.lp-media-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.16), rgba(118, 75, 162, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-indigo);
  font-size: 1.6rem;
}
.lp-media-thumb img { width: 100%; height: 100%; object-fit: cover; }

.lp-media-body { padding: 14px 16px 16px; display: grid; gap: 6px; }

.lp-media-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-media-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-media-meta { font-size: 0.78rem; color: var(--lp-muted); }
.lp-media-free { color: var(--lp-mint); font-weight: 700; }

/* ---------- Faixa do plano Pro ---------- */
.lp-pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border-radius: var(--lp-radius);
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: linear-gradient(120deg, rgba(251, 191, 36, 0.10), rgba(245, 87, 108, 0.08));
}

.lp-pro-info { display: flex; align-items: center; gap: 14px; min-width: 0; }

.lp-pro-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #3b2c00;
  background: var(--lp-amber);
}

.lp-pro-title { font-weight: 700; font-size: 0.95rem; margin: 0; }
.lp-pro-text { font-size: 0.85rem; color: var(--lp-muted); margin: 0; }

@media (max-width: 991.98px) {
  .lp-people { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .lp-people { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lp-pro { flex-direction: column; align-items: flex-start; }
}
