/* ============================================================
   JVL Ventas — Página de producto
   ============================================================ */

/* ── HERO ── */
.jv-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.jv-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.jv-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.10;
}
.jv-orb--1 { width: 600px; height: 600px; background: #4a6fa5; top: -100px; left: -100px; }
.jv-orb--2 { width: 400px; height: 400px; background: #6366f1; bottom: -50px; right: -50px; }

.jv-hero-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

.jv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,111,165,0.12);
  border: 1px solid rgba(74,111,165,0.25);
  border-radius: 20px; padding: 6px 16px;
  font-size: 13px; color: #7a9acc;
  margin-bottom: 24px;
}

.jv-hero-title {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
}
.jv-highlight { color: #5a82c0; }

.jv-hero-desc {
  font-size: 17px; color: var(--text-secondary);
  max-width: 580px; margin: 0 auto 36px; line-height: 1.7;
}

.jv-hero-btns {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 52px;
}

.jv-hero-stats {
  display: flex; gap: 0; justify-content: center;
  flex-wrap: wrap;
  background: var(--glass, rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 32px;
  max-width: 560px; margin: 0 auto;
}
.jv-stat { text-align: center; padding: 0 24px; }
.jv-stat-num { display: block; font-size: 28px; font-weight: 800; color: #5a82c0; }
.jv-stat-label { display: block; font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.jv-stat-sep { width: 1px; background: var(--border); margin: 8px 0; }

/* ── DESCARGA ── */
.jv-download-box {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 48px;
}

@media (max-width: 768px) {
  .jv-download-box { grid-template-columns: 1fr; gap: 32px; }
}

.jv-download-icon { font-size: 52px; margin-bottom: 16px; }
.jv-download-title { font-size: 28px; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.jv-download-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.jv-download-desc strong { color: #5a82c0; }

.jv-download-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.jv-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
  font-size: 12px; color: var(--text-secondary);
}

.jv-download-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(74,111,165,0.3);
  border-radius: 16px; padding: 28px;
  text-align: center;
}

.jv-free-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 20px; padding: 6px 14px;
  font-size: 12px; color: #10b981; font-weight: 600;
  margin-bottom: 16px;
}

.jv-download-price { font-size: 52px; font-weight: 900; color: #5a82c0; line-height: 1; }
.jv-download-price span { font-size: 20px; color: var(--text-secondary); }
.jv-download-price-sub { font-size: 12px; color: var(--text-secondary); margin-bottom: 4px; }

.jv-download-meta {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; color: var(--text-secondary);
}

/* ── FEATURES ── */
.jv-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.jv-feature { display: flex; flex-direction: column; gap: 12px; }

.jv-feature-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(74,111,165,0.12);
  border: 1px solid rgba(74,111,165,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #5a82c0;
}

.jv-feature h3 { font-size: 16px; font-weight: 700; }
.jv-feature p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── PASOS ── */
.jv-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  max-width: 1024px; margin: 0 auto;
}

.jv-step {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 14px;
  padding: 28px;
}

.jv-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: #4a6fa5; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; flex-shrink: 0;
}

.jv-step-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.jv-step-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── PRECIO ── */
.jv-pricing {
  max-width: 480px; margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 44px 36px;
  border-color: rgba(74,111,165,0.35) !important;
}

.jv-pricing-badge {
  display: inline-block;
  background: #4a6fa5; color: #fff;
  padding: 4px 18px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 16px;
}

.jv-pricing-icon { font-size: 40px; margin-bottom: 10px; }
.jv-pricing-name { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.jv-pricing-price { font-size: 56px; font-weight: 900; color: #5a82c0; line-height: 1; margin-bottom: 4px; }
.jv-pricing-price span { font-size: 22px; color: var(--text-secondary); }
.jv-pricing-period { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }

.jv-pricing-trial {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px; padding: 8px 16px;
  font-size: 13px; color: #10b981; font-weight: 600;
  margin-bottom: 24px;
}

.jv-pricing-feats { text-align: left; margin-bottom: 28px; }
.jv-pricing-feat {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.jv-pricing-feat:last-child { border-bottom: none; }
.jv-pricing-note { font-size: 13px; color: var(--text-secondary); margin-top: 16px; }

/* ── ACTUALIZACIONES ── */
.jv-updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.jv-update { display: flex; flex-direction: column; gap: 12px; padding: 28px; }
.jv-update-icon { font-size: 32px; }
.jv-update h3 { font-size: 16px; font-weight: 700; }
.jv-update p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── FAQ ── */
.jv-faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.jv-faq-item { padding: 0; overflow: hidden; }

.jv-faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  background: none; border: none; color: var(--text-primary);
  font-size: 15px; font-weight: 600;
  padding: 18px 24px; cursor: pointer; text-align: left;
  transition: color 0.2s;
}
.jv-faq-q:hover { color: #5a82c0; }
.jv-faq-q.active { color: #5a82c0; }
.jv-faq-q i { flex-shrink: 0; transition: transform 0.25s; }
.jv-faq-q.active i { transform: rotate(180deg); }

.jv-faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 24px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.jv-faq-a.open {
  max-height: 200px;
  padding: 0 24px 18px;
}

/* ── CTA BANNER ── */
.jv-cta-banner {
  background: linear-gradient(135deg, rgba(74,111,165,0.15), rgba(99,102,241,0.08));
  border-top: 1px solid rgba(74,111,165,0.2);
  border-bottom: 1px solid rgba(74,111,165,0.2);
  padding: 60px 20px;
}

.jv-cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

.jv-cta-inner h2 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.jv-cta-inner p { font-size: 15px; color: var(--text-secondary); }

.jv-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }


/* ── Descarga dos versiones ── */
.jv-download-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 28px;
}

@media (max-width: 600px) {
  .jv-download-cards { grid-template-columns: 1fr; }
}

.jv-download-card-box {
  text-align: center;
  padding: 36px 28px;
  position: relative;
}

.jv-dc-badge {
  display: inline-block;
  background: #4a6fa5; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 14px; border-radius: 20px;
  margin-bottom: 16px;
}

.jv-dc-badge--alt {
  background: rgba(74,111,165,0.15);
  color: #7a9acc;
}

.jv-dc-icon  { font-size: 44px; margin-bottom: 12px; }
.jv-dc-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.jv-dc-desc  { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }

.jv-dc-specs {
  display: flex; justify-content: center; gap: 14px;
  font-size: 12px; color: var(--text-secondary);
}
.jv-dc-specs span { display: flex; align-items: center; gap: 4px; }

.jv-dc-note {
  font-size: 12px; color: var(--text-secondary);
  margin-top: 12px;
}

.jv-download-footer {
  text-align: center;
  font-size: 13px; color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}


