/* ==========================================
   MÁRQUEZ WORKS — Hoja de estilos compartida
   ========================================== */

:root {
  --primary:   #1149e4;
  --primary-d: #1e3a8a;
  --accent:    #f97316;
  --accent-d:  #ea6c00;
  --bg:        #f8fafc;
  --dark:      #0f172a;
  --text:      #1e293b;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --white:     #ffffff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 62px; width: 62px; display: block; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.2; }
.logo-wordmark .lw-name { font-size: 1.25rem; font-weight: 800; color: var(--primary-d); letter-spacing: -0.3px; }
.logo-wordmark .lw-tag  { font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 3.5px; }
.nav-links { display: flex; gap: 32px; font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.nav-links a:hover  { color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 700; }
.nav-cta { background: var(--accent); color: white; padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; transition: background .2s; }
.nav-cta:hover { background: var(--accent-d); }

/* ── SECTION BASE ── */
section { padding: 80px 5%; }
.section-label { font-size: 0.82rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.section-sub   { font-size: 1.05rem; color: var(--muted); max-width: 580px; margin-bottom: 48px; }

/* ── BOTONES ── */
.btn-primary  { background: var(--primary); color: white; padding: 15px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem; transition: background .2s, transform .15s; display: inline-block; }
.btn-primary:hover  { background: var(--primary-d); transform: translateY(-2px); }
.btn-secondary { background: white; color: var(--text); padding: 15px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem; border: 2px solid var(--border); transition: border-color .2s, transform .15s; display: inline-block; }
.btn-secondary:hover { border-color: var(--primary); transform: translateY(-2px); }
.btn-orange { background: #f97316; color: white; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; transition: background .2s; display: inline-block; }
.btn-orange:hover { background: #ea6c00; }
.btn-ghost  { background: transparent; color: white; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.25); transition: border-color .2s; display: inline-block; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.8); }

/* ── PAGE HEADER (páginas internas) ── */
.page-header {
  background: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
  padding: 120px 5% 64px;
  border-bottom: 1px solid var(--border);
}
.ph-breadcrumb { font-size: 0.84rem; color: var(--muted); margin-bottom: 20px; }
.ph-breadcrumb a { color: var(--primary); }
.ph-breadcrumb a:hover { text-decoration: underline; }
.page-header h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; color: var(--dark); margin-bottom: 16px; line-height: 1.15; }
.page-header h1 em { color: var(--accent); font-style: normal; }
.page-header p { font-size: 1.1rem; color: var(--muted); max-width: 540px; }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 5% 60px;
  background: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,0.08) 0%, transparent 70%);
}
.hero-content { max-width: 700px; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: #dbeafe; color: var(--primary); padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; font-weight: 700; margin-bottom: 24px; letter-spacing: 0.5px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.3rem); font-weight: 900; line-height: 1.15; color: var(--dark); margin-bottom: 20px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p { font-size: 1.15rem; color: var(--muted); margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.hero-stat .num { font-size: 1.8rem; font-weight: 900; color: var(--primary-d); }
.hero-stat .lbl { font-size: 0.82rem; color: var(--muted); }


/* ── HERO FEED (resultados en directo) ── */
@keyframes livePulse { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,0.5)} 50%{box-shadow:0 0 0 7px rgba(34,197,94,0)} }
@keyframes feedIn {
  0%    { opacity:0; transform:translateY(22px) scale(0.96); }
  10%   { opacity:1; transform:translateY(0) scale(1); }
  72%   { opacity:1; transform:translateY(0) scale(1); }
  88%   { opacity:0; transform:translateY(-18px) scale(0.96); }
  100%  { opacity:0; transform:translateY(-18px) scale(0.96); }
}

.hero-feed { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }

.hfeed-header { display: flex; align-items: center; gap: 8px; }
.hfeed-live-dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; animation: livePulse 1.8s ease-in-out infinite; flex-shrink: 0; }
.hfeed-title { font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.45); letter-spacing: .1em; text-transform: uppercase; }

.hfeed-stream { position: relative; height: 130px; }
.hfeed-card { position: absolute; inset: 0; background: rgba(255,255,255,0.07); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 18px; padding: 20px 22px; box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); opacity: 0; display: flex; align-items: flex-start; gap: 14px; }
.hfeed-card:nth-child(1) { animation: feedIn 20s ease-in-out infinite 0s; }
.hfeed-card:nth-child(2) { animation: feedIn 20s ease-in-out infinite 4s; }
.hfeed-card:nth-child(3) { animation: feedIn 20s ease-in-out infinite 8s; }
.hfeed-card:nth-child(4) { animation: feedIn 20s ease-in-out infinite 12s; }
.hfeed-card:nth-child(5) { animation: feedIn 20s ease-in-out infinite 16s; }
.hfeed-emoji { font-size: 2rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.hfeed-body {}
.hfeed-result { font-size: 1rem; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 4px; }
.hfeed-result em { color: #f97316; font-style: normal; }
.hfeed-who { font-size: 0.78rem; color: rgba(255,255,255,0.48); }

.hfeed-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hfeed-stat { background: rgba(255,255,255,0.07); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 16px; padding: 18px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); }
.hfeed-stat-num { font-size: 1.65rem; font-weight: 900; color: white; line-height: 1; }
.hfeed-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 4px; line-height: 1.3; }

.hfeed-rating { background: rgba(255,255,255,0.07); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 16px; padding: 18px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 14px; }
.hfeed-rating-stars { font-size: 0.95rem; color: #f59e0b; letter-spacing: 1px; }
.hfeed-rating-score { font-size: 1.4rem; font-weight: 900; color: white; line-height: 1; }
.hfeed-rating-sub { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── ÁREAS (home) ── */
.areas { background: white; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.area-card {
  border-radius: 20px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.area-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.area-card.marketing { background: linear-gradient(135deg, #eff6ff, #dbeafe); border: 1px solid #bfdbfe; }
.area-card.fitness-c  { background: linear-gradient(135deg, #fff7ed, #ffedd5); border: 1px solid #fed7aa; }
.area-card.cursos-c   { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 1px solid #bbf7d0; }
.area-icon { font-size: 2.8rem; }
.area-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.area-card p  { font-size: 0.92rem; color: var(--muted); line-height: 1.7; flex: 1; }
.area-cta { font-size: 0.9rem; font-weight: 700; }
.area-card.marketing .area-cta { color: var(--primary); }
.area-card.fitness-c  .area-cta { color: #ea580c; }
.area-card.cursos-c   .area-cta { color: #16a34a; }

/* ── PROBLEMAS ── */
.problemas { background: #f8fafc; }
.prob-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.prob-card { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 26px; display: flex; gap: 16px; align-items: flex-start; box-shadow: 0 2px 12px rgba(0,0,0,.04); transition: box-shadow .2s, transform .2s; }
.prob-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.prob-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.prob-card h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.prob-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.58; }

/* ── SERVICIOS ── */
.servicios { background: white; }
.servicios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; margin-bottom: 32px; }
.servicio-card { border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: box-shadow .2s, transform .2s; position: relative; overflow: hidden; }
.servicio-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.servicio-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
.serv-icon   { font-size: 2rem; margin-bottom: 14px; }
.servicio-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.servicio-card p  { font-size: 0.875rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.serv-precio { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.serv-precio span { font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.serv-items { list-style: none; margin-top: 14px; }
.serv-items li { font-size: 0.82rem; color: var(--muted); padding: 4px 0; }
.serv-items li::before { content: '✓ '; color: #22c55e; font-weight: 700; }
.mas-servicios { background: linear-gradient(135deg, #eff6ff, #fff7ed); border: 2px dashed #bfdbfe; border-radius: 14px; padding: 32px; text-align: center; }
.mas-servicios .ms-icon { font-size: 2.2rem; margin-bottom: 12px; }
.mas-servicios h3 { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.mas-servicios p  { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }
.mas-servicios .tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.ms-tag { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 6px 16px; font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.mas-servicios a { display: inline-block; background: var(--primary); color: white; padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; transition: background .2s; }
.mas-servicios a:hover { background: var(--primary-d); }

/* ── PROCESO ── */
.proceso { background: #f1f5f9; }
.proceso-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.step { background: white; border-radius: 14px; padding: 28px 24px; box-shadow: 0 2px 8px rgba(0,0,0,.06); text-align: center; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; font-weight: 900; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.step p  { font-size: 0.85rem; color: var(--muted); }

/* ── SECTORES ── */
.sectores { background: white; }
.sectores-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.sector-tag { display: flex; align-items: center; gap: 8px; background: #eff6ff; color: var(--primary); border: 1px solid #bfdbfe; border-radius: 30px; padding: 10px 20px; font-size: 0.88rem; font-weight: 600; }

/* ── POR QUÉ ── */
.porque { background: white; }
.porque-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.porque-item { background: #f8fafc; border: 1px solid var(--border); border-radius: 18px; text-align: center; padding: 32px 24px; transition: box-shadow .2s, transform .2s; }
.porque-item:hover { box-shadow: 0 8px 28px rgba(17,73,228,.08); transform: translateY(-3px); }
.porque-item .icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.porque-item h4 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.porque-item p  { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIOS ── */
.testimonios { background: var(--bg); }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.test-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px; position: relative; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.test-card::before { content: '"'; position: absolute; top: 16px; left: 24px; font-size: 5rem; color: var(--primary); opacity: 0.1; font-family: Georgia, serif; line-height: 1; }
.test-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.test-card p { font-size: 0.92rem; color: var(--muted); font-style: italic; margin-bottom: 20px; line-height: 1.7; position: relative; z-index: 1; }
.test-autor  { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 0.95rem; }
.test-info strong { display: block; font-size: 0.9rem; color: var(--dark); }
.test-info span   { font-size: 0.78rem; color: var(--muted); }

/* ── FAQ ── */
.faq { background: white; }
.faq-list { max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; text-align: left; font-size: 1rem; font-weight: 700; color: var(--dark); font-family: inherit; gap: 16px; }
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.4rem; color: var(--accent); flex-shrink: 0; transition: transform .25s; font-weight: 400; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 20px; font-size: 0.92rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ── CURSOS ── */
.cursos { padding: 80px 5%; background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); }
.cursos .section-label { color: rgba(255,255,255,0.55); }
.cursos .section-title { color: white; }
.cursos .section-sub   { color: rgba(255,255,255,0.65); }
.cursos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 48px 0; }
.curso-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; transition: transform .2s, border-color .2s; display: flex; flex-direction: column; }
.curso-card:hover { transform: translateY(-5px); border-color: rgba(249,115,22,0.5); }
.curso-cover { height: 150px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.cc-1 { background: linear-gradient(135deg,#1e40af,#3b82f6); }
.cc-2 { background: linear-gradient(135deg,#065f46,#10b981); }
.cc-3 { background: linear-gradient(135deg,#7c2d12,#f97316); }
.cc-4 { background: linear-gradient(135deg,#4c1d95,#8b5cf6); }
.curso-badge { position: absolute; top: 12px; right: 12px; background: #f97316; color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px; }
.curso-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.curso-cat  { font-size: 0.72rem; font-weight: 700; color: #f97316; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.curso-body h3 { font-size: 1.05rem; font-weight: 800; color: white; margin-bottom: 10px; line-height: 1.3; }
.curso-body p  { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; line-height: 1.6; }
.curso-temario { list-style: none; margin-bottom: 20px; flex: 1; }
.curso-temario li { font-size: 0.82rem; color: rgba(255,255,255,0.75); padding: 3px 0; }
.curso-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.curso-precio { font-size: 1.3rem; font-weight: 900; color: white; }
.curso-precio span { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.45); display: block; }
.curso-btn { background: var(--accent); color: white; border: none; padding: 10px 18px; border-radius: 8px; font-weight: 700; font-size: 0.83rem; cursor: pointer; transition: background .2s; text-decoration: none; display: inline-block; }
.curso-btn:hover { background: var(--accent-d); }
.cursos-waitlist { background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.3); border-radius: 16px; padding: 44px; text-align: center; }
.cursos-waitlist h3 { font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 10px; }
.cursos-waitlist p  { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.waitlist-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.waitlist-form input { flex: 1; padding: 14px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: white; font-size: 0.95rem; outline: none; }
.waitlist-form input::placeholder { color: rgba(255,255,255,0.35); }
.waitlist-form input:focus { border-color: #f97316; }
.waitlist-form button { background: #f97316; color: white; border: none; padding: 14px 22px; border-radius: 10px; font-weight: 700; font-size: 0.92rem; cursor: pointer; white-space: nowrap; transition: background .2s; }
.waitlist-form button:hover { background: #ea6c00; }
.cursos-proof { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 20px 32px; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.cp-item { text-align: center; }
.cp-num { font-size: 1.8rem; font-weight: 900; color: #f97316; line-height: 1; }
.cp-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.curso-stats { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.cs-item { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.curso-modulos { margin-bottom: 14px; }
.curso-modulos-title { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.curso-modulo { border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; margin-bottom: 5px; overflow: hidden; }
.cm-header { width: 100%; background: rgba(255,255,255,0.03); border: none; cursor: pointer; display: flex; align-items: center; padding: 10px 12px; text-align: left; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.75); font-family: inherit; gap: 6px; transition: background .15s; }
.cm-header:hover { background: rgba(255,255,255,0.07); color: white; }
.cm-badge { background: rgba(249,115,22,0.2); color: #f97316; font-size: 0.67rem; font-weight: 700; padding: 2px 8px; border-radius: 12px; flex-shrink: 0; margin-left: auto; }
.cm-arrow { width: 16px; height: 16px; color: rgba(255,255,255,0.3); transition: transform .2s; flex-shrink: 0; }
.curso-modulo.open .cm-arrow { transform: rotate(180deg); color: #f97316; }
.cm-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.curso-modulo.open .cm-body { max-height: 240px; }
.cm-lessons { padding: 8px 12px 12px; }
.cm-lesson { font-size: 0.77rem; color: rgba(255,255,255,0.5); padding: 3px 0; display: flex; align-items: flex-start; gap: 7px; line-height: 1.4; }
.cm-lesson::before { content: '▸'; color: #f97316; font-size: 0.65rem; flex-shrink: 0; margin-top: 2px; }
.cm-lesson.locked { color: rgba(255,255,255,0.22); filter: blur(2px); }
.cm-lesson.locked::before { content: '🔒'; filter: none; font-size: 0.7rem; }
.curso-outcomes { list-style: none; margin: 0 0 14px; }
.curso-outcomes li { font-size: 0.82rem; color: rgba(255,255,255,0.75); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.curso-outcomes li::before { content: '✓'; color: #22c55e; font-weight: 900; flex-shrink: 0; }
.curso-bonus-alert { background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25); border-radius: 8px; padding: 10px 14px; font-size: 0.8rem; color: rgba(249,115,22,0.9); margin-bottom: 14px; line-height: 1.4; }
.cursos-garantia { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.18); border-radius: 16px; padding: 32px 36px; display: flex; gap: 22px; align-items: center; margin: 40px 0; }
.cg-icon { font-size: 2.8rem; flex-shrink: 0; }
.cg-text h3 { font-size: 1.05rem; font-weight: 800; color: white; margin-bottom: 8px; }
.cg-text p { font-size: 0.87rem; color: rgba(255,255,255,0.58); line-height: 1.65; }
.cursos-tema { margin: 56px 0 0; }
.cursos-tema-header { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cursos-tema-icon { font-size: 1.8rem; line-height: 1; }
.cursos-tema-info { flex: 1; }
.cursos-tema-title { font-size: 1.35rem; font-weight: 800; color: white; margin: 0; letter-spacing: -0.3px; }
.cursos-tema-sub { font-size: 0.83rem; color: rgba(255,255,255,0.42); margin: 3px 0 0; }
.curso-cert { margin-top: 10px; text-align: center; }
.curso-cert a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
.curso-cert a:hover { color: #f97316; }

/* ── FITNESS ── */
.fitness { background: #060d1a; padding: 80px 5%; position: relative; overflow: hidden; }
.fitness::before { content: ''; position: absolute; top: -180px; right: -180px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 70%); pointer-events: none; }
.fitness .section-label { color: #f97316; }
.fitness .section-title { color: white; }
.fitness .section-sub   { color: rgba(255,255,255,0.6); }
.fitness-intro { display: flex; gap: 48px; align-items: flex-start; margin-bottom: 64px; flex-wrap: wrap; }
.fitness-intro-text { flex: 1; min-width: 280px; }
.fitness-intro-text p { font-size: 0.97rem; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 14px; }
.fitness-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.fitness-badge { background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.28); color: #f97316; border-radius: 20px; padding: 6px 14px; font-size: 0.82rem; font-weight: 600; }
.fitness-stats { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 4px; }
.fitness-stat { text-align: center; }
.fitness-stat .fn { font-size: 2rem; font-weight: 900; color: #f97316; }
.fitness-stat .fl { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 4px; line-height: 1.4; }
.fitness-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 48px; }
.fitness-plan { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px; position: relative; transition: transform .2s, border-color .2s; display: flex; flex-direction: column; }
.fitness-plan:hover { transform: translateY(-4px); border-color: rgba(249,115,22,0.35); }
.fitness-plan.featured { border-color: #f97316; background: rgba(249,115,22,0.07); }
.plan-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: #f97316; color: white; font-size: 0.7rem; font-weight: 700; padding: 5px 18px; border-radius: 0 0 12px 12px; letter-spacing: 0.5px; white-space: nowrap; }
.plan-icon  { font-size: 2rem; margin-bottom: 16px; }
.plan-name  { font-size: 0.78rem; font-weight: 700; color: #f97316; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.plan-title { font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 10px; }
.plan-desc  { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 20px; }
.plan-features { list-style: none; margin-bottom: 28px; flex: 1; }
.plan-features li { font-size: 0.84rem; color: rgba(255,255,255,0.72); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: flex-start; gap: 9px; }
.plan-features li::before { content: '✓'; color: #f97316; font-weight: 700; flex-shrink: 0; }
.plan-footer  { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.plan-precio  { font-size: 1.55rem; font-weight: 900; color: white; }
.plan-precio span { display: block; font-size: 0.73rem; font-weight: 400; color: rgba(255,255,255,0.38); }
.plan-btn { background: rgba(255,255,255,0.09); color: white; border: 1px solid rgba(255,255,255,0.18); padding: 11px 20px; border-radius: 10px; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: all .2s; text-decoration: none; white-space: nowrap; display: inline-block; }
.plan-btn:hover { background: rgba(255,255,255,0.18); }
.fitness-plan.featured .plan-btn { background: #f97316; border-color: #f97316; }
.fitness-plan.featured .plan-btn:hover { background: #ea6c00; }
.fitness-cta { background: rgba(249,115,22,0.09); border: 1px solid rgba(249,115,22,0.22); border-radius: 20px; padding: 48px; text-align: center; }
.fitness-cta h3 { font-size: 1.45rem; font-weight: 800; color: white; margin-bottom: 12px; }
.fitness-cta p  { color: rgba(255,255,255,0.58); max-width: 500px; margin: 0 auto 28px; }
.fitness-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── ZONA ── */
.zona { background: var(--bg); }
.zona-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.zona-text h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.zona-text p   { color: var(--muted); margin-bottom: 20px; }
.zona-badges   { display: flex; flex-wrap: wrap; gap: 10px; }
.zona-badge { background: white; border: 1px solid var(--border); border-radius: 30px; padding: 8px 18px; font-size: 0.85rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 6px; }
.zona-badge.primary { background: var(--primary); color: white; border-color: var(--primary); }
.zona-map { background: linear-gradient(135deg, #dbeafe, #fef3c7); border-radius: 16px; padding: 40px; text-align: center; border: 1px solid var(--border); }
.zona-map .map-icon { font-size: 4rem; margin-bottom: 16px; }
.zona-map h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.zona-map p  { font-size: 0.9rem; color: var(--muted); }

/* ── CONTACTO ── */
.contacto { background: white; }
.contacto-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contacto-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.contacto-info p  { color: var(--muted); margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-item .ci-icon { width: 46px; height: 46px; border-radius: 12px; background: #eff6ff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-item .ci-text strong { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 2px; }
.contact-item .ci-text a, .contact-item .ci-text span { font-weight: 700; color: var(--dark); font-size: 1rem; }
.contact-item .ci-text a:hover { color: var(--primary); }
.contacto-form { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.contacto-form h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; color: var(--dark); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.9rem; color: var(--text); transition: border-color .2s; background: white; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 14px; background: var(--accent); color: white; border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.form-submit:hover { background: var(--accent-d); }

/* ── MINI CTA CONTACTO (páginas internas) ── */
.mini-cta { background: var(--dark); padding: 72px 5%; text-align: center; }
.mini-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: white; margin-bottom: 14px; }
.mini-cta p  { font-size: 1rem; color: #94a3b8; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.mini-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.mini-cta-info { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.mini-cta-info a { font-size: 0.9rem; color: #94a3b8; font-weight: 600; transition: color .2s; }
.mini-cta-info a:hover { color: white; }

/* ── FOOTER ── */
footer { background: var(--dark); color: #94a3b8; padding: 40px 5%; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
footer .logo img { height: 52px; width: 52px; }
footer p { font-size: 0.85rem; }
.footer-links { display: flex; gap: 24px; font-size: 0.85rem; }
.footer-links a:hover { color: white; }

/* ── WHATSAPP FLOTANTE ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ── SOBRE JULIO ── */
.sobre-julio { background: #060d1a; padding: 80px 5%; }
.sj-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto; }
.sj-avatar { background: rgba(249,115,22,0.06); border: 1px solid rgba(249,115,22,0.18); border-radius: 24px; padding: 48px; text-align: center; }
.sj-avatar-icon { font-size: 5rem; margin-bottom: 16px; }
.sj-avatar-name { font-size: 1.3rem; font-weight: 800; color: white; }
.sj-avatar-sub { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 6px; }
.sj-certs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; justify-content: center; }
.sj-cert { background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); color: #f97316; border-radius: 20px; padding: 5px 12px; font-size: 0.75rem; font-weight: 600; }
.sj-text h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; color: white; margin-bottom: 20px; line-height: 1.25; }
.sj-text p  { font-size: 0.97rem; color: rgba(255,255,255,0.62); line-height: 1.85; margin-bottom: 14px; }
.sj-valores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.sj-valor { font-size: 0.87rem; color: rgba(255,255,255,0.75); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.sj-valor::before { content: '→'; color: #f97316; font-weight: 700; }

/* ── NÚMEROS FITNESS ── */
.fit-numeros { background: linear-gradient(135deg, #f97316, #ea6c00); padding: 56px 5%; }
.fit-numeros-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; text-align: center; }
.fit-num-item .fn { font-size: 2.8rem; font-weight: 900; color: white; line-height: 1; }
.fit-num-item .fl { font-size: 0.85rem; color: rgba(255,255,255,0.78); margin-top: 8px; }

/* ── COMPARATIVA ── */
.comparativa { background: #060d1a; padding: 80px 5%; overflow-x: auto; }
.comparativa .section-label { color: #f97316; }
.comparativa .section-title { color: white; }
.comparativa .section-sub   { color: rgba(255,255,255,0.6); }
.comp-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); }
.comp-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.comp-table th { padding: 22px 16px; font-size: 0.88rem; background: rgba(255,255,255,0.03); }
.comp-table th.col-feat { text-align: left; color: rgba(255,255,255,0.4); font-weight: 600; }
.comp-plan-name { display: block; font-size: 1rem; font-weight: 800; color: white; margin-bottom: 4px; }
.comp-plan-price { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.comp-highlight { background: rgba(249,115,22,0.07); }
.comp-highlight .comp-plan-name { color: #f97316; }
.comp-table td { padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.comp-table td.col-feat { color: rgba(255,255,255,0.62); }
.comp-table td.col-val { text-align: center; }
.comp-yes { color: #22c55e; font-size: 1rem; font-weight: 700; }
.comp-no  { color: #475569; }
.comp-cta-row td { padding: 20px 16px; border-bottom: none; }
.comp-cta-row td:first-child { color: rgba(255,255,255,0.3); font-size: 0.82rem; }

/* ── EXTRAS FITNESS (consulta + trimestral) ── */
.extras-fitness { background: #0a1428; padding: 80px 5%; }
.extras-fitness .section-label { color: #f97316; }
.extras-fitness .section-title { color: white; }
.extras-fitness .section-sub   { color: rgba(255,255,255,0.6); }
.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.extra-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; position: relative; transition: transform .2s, border-color .2s; }
.extra-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,0.35); }
.extra-card.destacado { border-color: rgba(249,115,22,0.45); background: rgba(249,115,22,0.06); }
.extra-badge { position: absolute; top: -1px; right: 24px; background: #f97316; color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 14px; border-radius: 0 0 10px 10px; letter-spacing: 0.5px; }
.extra-icon { font-size: 2rem; margin-bottom: 14px; }
.extra-cat  { font-size: 0.72rem; font-weight: 700; color: #f97316; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.extra-card h3 { font-size: 1.15rem; font-weight: 800; color: white; margin-bottom: 10px; }
.extra-card p  { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.extra-features { list-style: none; margin-bottom: 24px; }
.extra-features li { font-size: 0.83rem; color: rgba(255,255,255,0.68); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: flex-start; gap: 8px; }
.extra-features li:last-child { border-bottom: none; }
.extra-features li::before { content: '✓'; color: #f97316; font-weight: 700; flex-shrink: 0; }
.extra-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.extra-precio { font-size: 1.45rem; font-weight: 900; color: white; }
.extra-precio span { display: block; font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.38); }
.extra-precio .tachado { text-decoration: line-through; font-size: 0.85rem; color: rgba(255,255,255,0.28); font-weight: 400; display: inline; }
.extra-btn { background: rgba(255,255,255,0.09); color: white; border: 1px solid rgba(255,255,255,0.18); padding: 11px 20px; border-radius: 10px; font-weight: 700; font-size: 0.85rem; transition: all .2s; text-decoration: none; white-space: nowrap; display: inline-block; }
.extra-btn:hover { background: rgba(255,255,255,0.18); }
.extra-card.destacado .extra-btn { background: #f97316; border-color: #f97316; }
.extra-card.destacado .extra-btn:hover { background: #ea6c00; }

/* ── PRODUCTOS DIGITALES ── */
.digitales { background: #060d1a; padding: 80px 5%; }
.digitales .section-label { color: #f97316; }
.digitales .section-title { color: white; }
.digitales .section-sub   { color: rgba(255,255,255,0.6); }
.digitales-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.digitales-list { display: flex; flex-direction: column; gap: 14px; max-width: 800px; }
.digital-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; overflow: hidden; transition: transform .2s, border-color .2s; display: flex; flex-direction: column; }
.digital-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,0.3); }
.digital-cover { height: 110px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.dc-1 { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.dc-2 { background: linear-gradient(135deg, #1a3a1f, #16a34a); }
.dc-3 { background: linear-gradient(135deg, #3a1a0a, #f97316); }
.digital-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.digital-cat { font-size: 0.7rem; font-weight: 700; color: #f97316; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.digital-card h3 { font-size: 1rem; font-weight: 800; color: white; margin-bottom: 8px; line-height: 1.35; }
.digital-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.52); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.digital-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.digital-tag { background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.18); color: rgba(255,255,255,0.6); border-radius: 20px; padding: 3px 10px; font-size: 0.72rem; font-weight: 600; }
.digital-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.digital-precio { font-size: 1.4rem; font-weight: 900; color: white; }
.digital-precio span { font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.38); display: block; }
.digital-btn { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.15); padding: 10px 18px; border-radius: 9px; font-weight: 700; font-size: 0.83rem; transition: all .2s; text-decoration: none; display: inline-block; white-space: nowrap; }
.digital-btn:hover { background: #f97316; border-color: #f97316; }

/* ── TRANSFORMACIONES ── */
.transformaciones { background: #0a1428; padding: 80px 5%; }
.transformaciones .section-label { color: #f97316; }
.transformaciones .section-title { color: white; }
.transformaciones .section-sub   { color: rgba(255,255,255,0.6); }
.trans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.trans-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 28px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.trans-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #f97316, #ea6c00); }
.trans-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.trans-resultado { background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.18); border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; display: flex; gap: 14px; align-items: center; }
.trans-flecha { font-size: 1.6rem; color: #f97316; flex-shrink: 0; font-weight: 900; }
.trans-antes  { font-size: 0.72rem; color: rgba(255,255,255,0.38); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.trans-cambio { font-size: 1.1rem; font-weight: 800; color: white; }
.trans-tiempo { font-size: 0.75rem; color: #f97316; margin-top: 3px; }
.trans-quote  { font-size: 0.88rem; color: rgba(255,255,255,0.58); font-style: italic; line-height: 1.75; margin-bottom: 18px; flex: 1; }
.trans-autor  { display: flex; align-items: center; gap: 10px; }
.trans-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #f97316, #ea6c00); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.trans-info strong { display: block; font-size: 0.88rem; color: white; }
.trans-info span   { font-size: 0.75rem; color: rgba(255,255,255,0.38); }

/* ── CÓMO FUNCIONA ── */
.como-funciona { background: #060d1a; padding: 80px 5%; }
.como-funciona .section-label { color: #f97316; }
.como-funciona .section-title { color: white; }
.como-funciona .section-sub   { color: rgba(255,255,255,0.6); }
.cf-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; }
.cf-step { padding: 32px 20px; text-align: center; position: relative; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; }
.cf-num { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, #f97316, #ea6c00); color: white; font-weight: 900; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.cf-step h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.cf-step p  { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── PARA QUIÉN ES ── */
.para-quien { background: #0a1428; padding: 80px 5%; }
.para-quien .section-label { color: #f97316; }
.para-quien .section-title { color: white; }
.para-quien .section-sub   { color: rgba(255,255,255,0.6); }
.pq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pq-col { border-radius: 20px; padding: 36px; }
.pq-col.si { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.18); }
.pq-col.no { background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.14); }
.pq-col h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 22px; }
.pq-col.si h3 { color: #22c55e; }
.pq-col.no h3 { color: #f87171; }
.pq-list { list-style: none; }
.pq-list li { font-size: 0.91rem; color: rgba(255,255,255,0.68); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
.pq-list li:last-child { border-bottom: none; }
.pq-col.si .pq-list li::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pq-col.no .pq-list li::before { content: '✗'; color: #f87171; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── GARANTÍA ── */
.garantia { background: #060d1a; padding: 60px 5%; }
.garantia-box { background: rgba(249,115,22,0.07); border: 1px solid rgba(249,115,22,0.22); border-radius: 24px; padding: 52px 48px; display: flex; gap: 36px; align-items: center; max-width: 860px; margin: 0 auto; }
.garantia-icon { font-size: 4.5rem; flex-shrink: 0; }
.garantia-text h2 { font-size: 1.55rem; font-weight: 800; color: white; margin-bottom: 14px; }
.garantia-text p  { font-size: 0.97rem; color: rgba(255,255,255,0.62); line-height: 1.82; }

/* ── WAVE DIVIDERS ── */
.wave-divider { display: block; height: 70px; pointer-events: none; }

/* ── FOOTER SOCIAL ── */
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.footer-social a:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.75); }

/* ── ACORDEÓN PRODUCTOS DIGITALES ── */
.digital-accordion { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: white; transition: box-shadow .2s; }
.digital-accordion:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); }
.da-header { display: flex; align-items: center; gap: 16px; padding: 22px 24px; cursor: pointer; user-select: none; }
.da-cover { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.da-info { flex: 1; min-width: 0; }
.da-cat { font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px; }
.da-title { font-size: 1rem; font-weight: 800; color: var(--dark); line-height: 1.25; }
.da-price { font-size: 1rem; font-weight: 800; color: var(--primary); flex-shrink: 0; text-align: right; }
.da-price small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--muted); }
.da-arrow { flex-shrink: 0; width: 28px; height: 28px; background: #f1f5f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s, background .2s; margin-left: 8px; }
.da-arrow svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; transition: stroke .2s; }
.digital-accordion.open .da-arrow { transform: rotate(180deg); background: var(--primary); }
.digital-accordion.open .da-arrow svg { stroke: white; }
.da-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.digital-accordion.open .da-body { max-height: 600px; }
.da-content { padding: 0 24px 24px; border-top: 1px solid var(--border); padding-top: 20px; }
.da-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.da-includes { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.da-includes li { font-size: 0.82rem; color: var(--text); display: flex; align-items: flex-start; gap: 8px; }
.da-includes li::before { content: '✓'; color: #22c55e; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.da-buy { display: inline-block; background: var(--primary); color: white; padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 0.9rem; transition: background .2s, transform .15s; }
.da-buy:hover { background: var(--primary-d); transform: translateY(-2px); }

/* ── ZONA ── */
.zona { background: #f8fafc; }

/* ── MINI CTA ── */
.mini-cta { background: linear-gradient(135deg, var(--primary-d) 0%, var(--primary) 100%); color: white; text-align: center; }
.mini-cta h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 900; color: white; margin-bottom: 14px; }
.mini-cta p  { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.mini-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.mini-cta-info { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.mini-cta-info a { font-size: 0.88rem; color: rgba(255,255,255,.65); transition: color .2s; }
.mini-cta-info a:hover { color: white; }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,.55); text-align: center; padding: 48px 5% 36px; }
footer .logo { justify-content: center; margin-bottom: 20px; display: inline-flex; }
footer .logo img { height: 52px; width: 52px; }
footer p { font-size: 0.82rem; margin-bottom: 16px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: white; }

/* ── NÚMEROS SERVICIOS ── */
.serv-numeros { background: #060d1a; padding: 52px 5% 36px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.serv-quicklinks { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; max-width: 860px; margin: 28px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }
.sql-label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-right: 4px; white-space: nowrap; }
.sql-item { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 8px 16px 8px 10px; text-decoration: none; transition: background .2s, border-color .2s; }
.sql-item:hover { background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.35); }
.sql-item-icon { font-size: 1rem; line-height: 1; }
.sql-item-name { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.sql-item-price { font-size: 0.78rem; font-weight: 700; color: #f97316; margin-left: 4px; }
.sn-item { text-align: center; }
.sn-num { font-size: 2.6rem; font-weight: 900; color: #f97316; line-height: 1; }
.sn-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 6px; letter-spacing: .03em; }

/* ── SERVICIO CARD DESTACADO ── */
.servicio-card.destacado { border-color: var(--primary); background: linear-gradient(180deg,#eff6ff 0%,#fff 100%); }
.servicio-card.destacado::before { background: linear-gradient(90deg, var(--primary), #f97316); height: 5px; }
.serv-badge { display: inline-block; background: var(--primary); color: white; font-size: 0.68rem; font-weight: 800; letter-spacing: .08em; padding: 4px 12px; border-radius: 99px; margin-bottom: 12px; }

/* ── PACKS / COMBOS ── */
.packs { background: #060d1a; padding: 80px 5%; }
.packs .section-label { color: #f97316; }
.packs .section-title { color: white; }
.packs .section-sub   { color: rgba(255,255,255,0.6); }
.packs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pack-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 40px 32px; display: flex; flex-direction: column; position: relative; transition: transform .2s, border-color .2s; }
.pack-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.22); }
.pack-card.pack-destacado { background: rgba(249,115,22,0.05); border-color: rgba(249,115,22,0.35); }
.pack-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #f97316; color: white; font-size: 0.68rem; font-weight: 800; letter-spacing: .08em; padding: 4px 16px; border-radius: 99px; white-space: nowrap; }
.pack-icon { font-size: 2.2rem; margin-bottom: 16px; }
.pack-name { font-size: 1.25rem; font-weight: 800; color: white; margin-bottom: 8px; }
.pack-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 24px; }
.pack-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.pack-tag { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 99px; padding: 4px 10px; }
.pack-includes { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pack-includes li { font-size: 0.875rem; color: rgba(255,255,255,0.78); display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.pack-includes li::before { content: '✓'; color: #f97316; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.pack-separator { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0 0 24px; }
.pack-precio-wrap { margin-bottom: 28px; }
.pack-precio { font-size: 2.2rem; font-weight: 900; color: white; line-height: 1; }
.pack-precio-periodo { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.pack-ahorro { display: inline-block; font-size: 0.75rem; font-weight: 700; color: #4ade80; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.22); padding: 3px 10px; border-radius: 99px; margin-top: 8px; }
.pack-btn { display: block; text-align: center; padding: 15px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 11px; color: white; text-decoration: none; font-weight: 700; font-size: 0.9rem; margin-top: auto; transition: background .2s, border-color .2s; }
.pack-card.pack-destacado .pack-btn { background: #f97316; border-color: #f97316; }
.pack-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }
.pack-card.pack-destacado .pack-btn:hover { background: #e8621a; }

/* ── DIGITAL COVERS adicionales (marketing) ── */
.dc-4 { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
.dc-5 { background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); }
.dc-6 { background: linear-gradient(135deg, #065f46 0%, #10b981 100%); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .contacto-wrap, .zona-wrap { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .cursos-grid { grid-template-columns: 1fr; }
  .cursos-garantia { flex-direction: column; padding: 24px 20px; }
  .waitlist-form { flex-direction: column; }
  .cursos-waitlist { padding: 28px 20px; }
  .fitness-intro { flex-direction: column; gap: 32px; }
  .fitness-cta { padding: 28px 20px; }
  .fitness-cta-btns { flex-direction: column; align-items: center; }
  .mini-cta-btns { flex-direction: column; align-items: center; }
  .sj-wrap { grid-template-columns: 1fr; gap: 32px; }
  .fit-numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .pq-grid { grid-template-columns: 1fr; }
  .garantia-box { flex-direction: column; text-align: center; padding: 36px 24px; }
  .cf-steps { grid-template-columns: 1fr 1fr; }
  .sn-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .packs-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

/* ══════════════════════════════════════
   AÑADIDOS v2 — mejoras globales
   ══════════════════════════════════════ */

/* ── Fade-in al scroll ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Volver arriba ── */
#back-to-top {
  position: fixed; bottom: 90px; right: 28px; z-index: 200;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary-d); color: white; border: none;
  font-size: 1.1rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(30,58,138,.35);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { transform: translateY(-3px); }

/* ── Banner de cookies ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0f172a; color: rgba(255,255,255,.88);
  padding: 14px 5%; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -2px 20px rgba(0,0,0,.3);
  font-size: 0.84rem; line-height: 1.5;
  transform: translateY(100%); transition: transform .4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { flex: 1; min-width: 240px; }
#cookie-banner a { color: #f97316; text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-accept { background: #f97316; color: white; border: none; padding: 9px 20px; border-radius: 7px; font-weight: 700; font-size: 0.84rem; cursor: pointer; font-family: inherit; }
.cookie-btn-accept:hover { background: #ea6c00; }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); padding: 9px 16px; border-radius: 7px; font-weight: 600; font-size: 0.84rem; cursor: pointer; font-family: inherit; }
.cookie-btn-reject:hover { border-color: rgba(255,255,255,.45); color: white; }

/* ── Links legales en el footer ── */
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-legal a { font-size: 0.77rem; color: rgba(255,255,255,.38); }
.footer-legal a:hover { color: rgba(255,255,255,.72); }

/* ── FAQ Home ── */
.faq-index { background: var(--bg); }
.faq-index-grid { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-index-item { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-index-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; background: none; border: none; font-family: inherit; font-size: 0.98rem; font-weight: 700; color: var(--dark); cursor: pointer; text-align: left; gap: 16px; }
.faq-index-q .faq-arrow { font-size: 1rem; transition: transform .3s; flex-shrink: 0; color: var(--accent); }
.faq-index-item.open .faq-arrow { transform: rotate(180deg); }
.faq-index-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-index-a p { padding: 0 24px 20px; color: var(--muted); font-size: 0.93rem; line-height: 1.7; }
.faq-index-item.open .faq-index-a { max-height: 280px; }

/* ── Nav hamburger ── */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--text); line-height: 1; }
.nav-hamburger svg { display: block; }

/* ── Páginas legales / utilidad ── */
.legal-wrap { max-width: 800px; margin: 100px auto 64px; padding: 0 5%; }
.legal-wrap h1 { font-size: 2rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.legal-wrap .legal-fecha { color: var(--muted); margin-bottom: 44px; font-size: 0.9rem; }
.legal-wrap h2 { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin: 36px 0 12px; border-bottom: 2px solid var(--border); padding-bottom: 8px; }
.legal-wrap p, .legal-wrap li { color: var(--text); line-height: 1.8; margin-bottom: 12px; font-size: 0.95rem; }
.legal-wrap ul { padding-left: 22px; margin-bottom: 12px; }
.legal-wrap a { color: var(--primary); text-decoration: underline; }

/* ── Mobile: hamburger + nav desplegable ── */
@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
    background: white; flex-direction: column; gap: 0; padding: 8px 0;
    border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 5%; font-size: 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
  .nav-links a:last-child { border-bottom: none; }
  .cookie-btns { width: 100%; }
}

/* ═══════════════════════════════════════════
   NUEVAS SECCIONES — añadidas en sesión 2
   ═══════════════════════════════════════════ */

/* ── Hero visual background subtle decoration ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Timeline visual (Cómo funciona) ── */
.cf-timeline { position: relative; }
.cf-timeline::after {
  content: '';
  position: absolute;
  top: 59px;
  left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.4) 20%, rgba(17,73,228,0.4) 80%, transparent);
  z-index: 0;
  pointer-events: none;
}
.cf-timeline .cf-num { position: relative; z-index: 1; }

/* ── Herramientas / Tools section ── */
.herramientas { background: var(--bg); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.tool-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.tool-item:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(17,73,228,0.08); }
.tool-logo { font-size: 2rem; margin-bottom: 10px; }
.tool-name { font-size: 0.78rem; font-weight: 700; color: var(--dark); line-height: 1.3; }

/* ── Course Bundles ── */
.bundles { background: #060d1a; padding: 80px 5%; }
.bundles .section-label { color: #f97316; }
.bundles .section-title { color: white; }
.bundles .section-sub   { color: rgba(255,255,255,0.6); }
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.bundle-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.bundle-card:hover { border-color: rgba(249,115,22,0.5); transform: translateY(-3px); }
.bundle-emprendedor {
  border-color: rgba(249,115,22,0.4);
  background: rgba(249,115,22,0.06);
}
.bundle-badge {
  position: absolute;
  top: -12px; left: 24px;
  background: linear-gradient(135deg, #f97316, #ea6c00);
  color: white; font-size: 0.75rem; font-weight: 800;
  padding: 4px 14px; border-radius: 20px; letter-spacing: 0.5px;
}
.bundle-icon { font-size: 2.4rem; margin-bottom: 14px; }
.bundle-name { font-size: 1.25rem; font-weight: 800; color: white; margin-bottom: 10px; }
.bundle-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }
.bundle-includes { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.bundle-includes li { font-size: 0.84rem; color: rgba(255,255,255,0.7); }
.bundle-footer {}
.bundle-precio { font-size: 2rem; font-weight: 900; color: white; margin-bottom: 4px; }
.bundle-tachado { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.35); text-decoration: line-through; margin-left: 8px; }
.bundle-ahorro { font-size: 0.82rem; color: #4ade80; font-weight: 700; margin-bottom: 16px; }
.bundle-btn {
  display: block; width: 100%;
  background: linear-gradient(135deg, #f97316, #ea6c00);
  color: white; padding: 14px 20px;
  border-radius: 10px; font-weight: 800; font-size: 0.92rem;
  text-align: center; transition: opacity .2s, transform .15s;
}
.bundle-btn:hover { opacity: .9; transform: translateY(-1px); }

/* ── Lead Magnet section ── */
.lead-magnet { background: linear-gradient(135deg, #1e3a8a 0%, #1149e4 100%); padding: 80px 5%; }
.lm-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.lm-badge {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  color: #f97316; border: 1px solid rgba(249,115,22,0.4);
  padding: 5px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 20px;
}
.lm-content h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.25; }
.lm-content p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.lm-points { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.lm-points li { font-size: 0.9rem; color: rgba(255,255,255,0.85); padding-left: 20px; position: relative; }
.lm-points li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 700; }
.lm-visual { flex-shrink: 0; }
.lm-cover {
  width: 200px;
  background: white;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.lm-cover-icon { font-size: 3rem; margin-bottom: 14px; }
.lm-cover-title { font-size: 0.82rem; font-weight: 800; color: var(--dark); line-height: 1.4; margin-bottom: 12px; }
.lm-cover-brand { font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; }
@media (max-width: 680px) {
  .lm-wrap { grid-template-columns: 1fr; }
  .lm-visual { display: none; }
}

/* ── Referidos section ── */
.referidos { background: #060d1a; padding: 80px 5%; }
.referidos .section-label { color: #f97316; }
.referidos .section-title { color: white; }
.referidos .section-sub   { color: rgba(255,255,255,0.6); }
.referidos-grid {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin: 48px auto;
  max-width: 760px;
  flex-wrap: wrap;
}
.ref-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 32px 28px;
  flex: 1; min-width: 240px;
  text-align: center;
}
.ref-icon { font-size: 2.4rem; margin-bottom: 14px; }
.ref-card h3 { font-size: 1rem; font-weight: 800; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.ref-benefit { font-size: 1.15rem; font-weight: 800; color: white; margin-bottom: 12px; line-height: 1.3; }
.ref-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.ref-plus { font-size: 2.5rem; font-weight: 900; color: rgba(249,115,22,0.6); flex-shrink: 0; }
.ref-cta { text-align: center; }
.ref-cta > p { color: rgba(255,255,255,0.5); margin-bottom: 16px; font-size: 0.9rem; }

/* ── Google Maps (zona) ── */
.zona-map { overflow: hidden; border-radius: 12px; }
.zona-map iframe { display: block; border-radius: 12px; }

/* ── Blog page ── */
.blog-header { background: linear-gradient(135deg, #1e3a8a 0%, #1149e4 100%); padding: 120px 5% 80px; text-align: center; }
.blog-header h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: white; margin-bottom: 14px; }
.blog-header p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 5%;
}
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.blog-card-cover {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.blog-card-body { padding: 24px 24px 28px; }
.blog-card-cat { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card h2 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.blog-card-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 16px; }
.blog-card-link { font-size: 0.88rem; font-weight: 700; color: var(--primary); }
.blog-card-link:hover { text-decoration: underline; }

/* ── Blog article page ── */
.blog-article-header { background: var(--dark); padding: 120px 5% 60px; }
.blog-article-header .ba-cat { font-size: 0.8rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.blog-article-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.2; }
.blog-article-header .ba-meta { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.blog-article-body { max-width: 760px; margin: 0 auto; padding: 60px 5% 80px; }
.blog-article-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin: 44px 0 16px; }
.blog-article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin: 32px 0 12px; }
.blog-article-body p { font-size: 1rem; color: var(--text); line-height: 1.85; margin-bottom: 20px; }
.blog-article-body ul, .blog-article-body ol { padding-left: 24px; margin-bottom: 20px; }
.blog-article-body li { font-size: 0.97rem; color: var(--text); line-height: 1.8; margin-bottom: 8px; }
.blog-article-body strong { color: var(--dark); font-weight: 700; }
.blog-article-body .highlight-box { background: #eff6ff; border-left: 4px solid var(--primary); padding: 20px 24px; border-radius: 0 10px 10px 0; margin: 32px 0; }
.blog-article-body .highlight-box p { margin: 0; color: var(--primary-d); }
.blog-cta-box { background: linear-gradient(135deg, #1e3a8a, #1149e4); border-radius: 18px; padding: 40px; text-align: center; margin: 48px 0; }
.blog-cta-box h3 { font-size: 1.4rem; font-weight: 900; color: white; margin-bottom: 12px; }
.blog-cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

/* ── New blog article format ── */
.blog-article .blog-header { background: var(--dark); padding: 120px 5% 60px; text-align: center; }
.blog-article .blog-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: white; line-height: 1.2; margin-bottom: 20px; }
.blog-article .blog-header h1 em { color: var(--accent); font-style: italic; }
.blog-meta { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.blog-meta span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.blog-cat { background: var(--accent); color: white !important; padding: 3px 12px; border-radius: 20px; font-size: 0.75rem !important; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-article .blog-header .blog-intro { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 680px; margin: 0 auto 32px; line-height: 1.7; }
.blog-author { display: flex; align-items: center; justify-content: center; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.blog-author div { text-align: left; }
.blog-author strong { display: block; font-size: 0.9rem; color: white; font-weight: 700; }
.blog-author span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.blog-content { max-width: 760px; margin: 0 auto; padding: 60px 5% 80px; }
.blog-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin: 44px 0 16px; }
.blog-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin: 32px 0 12px; }
.blog-content p { font-size: 1rem; color: var(--text); line-height: 1.85; margin-bottom: 20px; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 20px; }
.blog-content li { font-size: 0.97rem; color: var(--text); line-height: 1.8; margin-bottom: 8px; }
.blog-content strong { color: var(--dark); font-weight: 700; }
.blog-highlight { background: #eff6ff; border-left: 4px solid var(--primary); padding: 20px 24px; border-radius: 0 10px 10px 0; margin: 32px 0; font-size: 0.97rem; color: var(--text); line-height: 1.7; }

/* ── Nav dropdowns ── */
.nav-item { position: relative; }
.nav-has-dropdown > a::after { content: ' ▾'; font-size: 0.65em; opacity: 0.7; }
.nav-submenu { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: white; border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); min-width: 200px; padding: 6px 0; z-index: 200; list-style: none; margin: 0; }
.nav-item:hover .nav-submenu { display: block; }
.nav-submenu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-submenu li a { display: block; padding: 10px 18px; font-size: 0.875rem; font-weight: 500; color: var(--muted); white-space: nowrap; border-bottom: none !important; }
.nav-submenu li a:hover { background: #f0f7ff; color: var(--primary); }
@media (max-width: 768px) {
  .nav-submenu { display: none !important; }
  .nav-has-dropdown > a::after { display: none; }
}

@media (max-width: 768px) {
  .bundles-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .referidos-grid { flex-direction: column; }
  .ref-plus { transform: rotate(90deg); }
}

/* ============================================
   VISUAL EFFECTS — V2
   ============================================ */



/* ── Nav glassmorphism on scroll ── */
nav.scrolled {
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Dark nav pages (hero dark) — scrolled stays dark */
body.dark-nav nav.scrolled {
  background: rgba(6,13,26,0.75) !important;
}

/* ── Gradient em text in headings ── */
h1 em, h2 em {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* ── Reading progress bar ── */
#reading-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  width: 0%; z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── Sticky CTA bar ── */
#sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(6,13,26,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 990;
}
#sticky-cta.visible { transform: translateY(0); }
#sticky-cta .scta-text { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
#sticky-cta .scta-text strong { color: white; }
#sticky-cta .scta-btn {
  background: var(--accent); color: white;
  padding: 10px 22px; border-radius: 8px;
  font-weight: 700; font-size: 0.88rem; white-space: nowrap;
  transition: background 0.2s;
}
#sticky-cta .scta-btn:hover { background: var(--accent-d); }
#sticky-cta .scta-close {
  background: none; border: none; color: rgba(255,255,255,0.4);
  cursor: pointer; font-size: 1.1rem; padding: 4px 6px; line-height: 1;
  flex-shrink: 0;
}
#sticky-cta .scta-close:hover { color: white; }
@media (max-width: 600px) {
  #sticky-cta .scta-text { display: none; }
  #sticky-cta { justify-content: flex-end; gap: 10px; padding: 10px 4%; }
}

/* ── Enhanced card hovers ── */
.servicio-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.servicio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(17,73,228,0.18);
  border-color: var(--primary) !important;
}
.curso-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.curso-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(17,73,228,0.15);
}
.blog-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.12);
}
.area-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(17,73,228,0.15);
}

/* ── Particles canvas ── */
#hero-particles {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.45;
}

/* ── Clip-path section reveals (replaces simple fade) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ── FAQ page ── */
.faq-page-header { background: linear-gradient(135deg, #eff6ff, #fff7ed); padding: 120px 5% 60px; }
.faq-page-header h1 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: var(--dark); margin-bottom: 12px; }
.faq-page-header p { color: var(--muted); font-size: 1.05rem; max-width: 560px; }
.faq-categories { display: flex; gap: 10px; flex-wrap: wrap; padding: 32px 5% 0; }
.faq-cat-btn {
  padding: 8px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 700;
  border: 2px solid var(--border); background: white; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.faq-body { max-width: 820px; margin: 0 auto; padding: 40px 5% 80px; }
.faq-group { margin-bottom: 48px; }
.faq-group-title { font-size: 1rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.faq-item { border: 1.5px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 20px;
  background: white; border: none; cursor: pointer;
  font-size: 0.97rem; font-weight: 700; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background 0.15s;
}
.faq-q:hover { background: #f8fafc; }
.faq-q .faq-chevron { font-size: 0.8rem; color: var(--muted); transition: transform 0.25s; flex-shrink: 0; }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 0.93rem; color: var(--muted); line-height: 1.75; }
.faq-a.open { display: block; }
.faq-a a { color: var(--primary); font-weight: 600; }

/* ── Calculadora ── */
.calc-hero { background: linear-gradient(135deg, #1e3a8a, #1149e4); padding: 120px 5% 80px; text-align: center; }
.calc-hero h1 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 900; color: white; margin-bottom: 16px; }
.calc-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.calc-body { max-width: 720px; margin: 0 auto; padding: 60px 5% 80px; }
.calc-card { background: white; border: 2px solid var(--border); border-radius: 18px; padding: 36px; margin-bottom: 32px; }
.calc-card h2 { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.calc-field { margin-bottom: 22px; }
.calc-field label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.calc-field input, .calc-field select {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: 10px;
  font-size: 1rem; font-family: inherit; color: var(--dark);
  transition: border-color 0.2s;
}
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--primary); }
.calc-btn {
  width: 100%; padding: 16px; background: var(--primary); color: white;
  border: none; border-radius: 12px; font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.calc-btn:hover { background: var(--primary-d); transform: translateY(-2px); }
.calc-result { display: none; background: linear-gradient(135deg, #1e3a8a, #1149e4); border-radius: 18px; padding: 36px; text-align: center; color: white; }
.calc-result.show { display: block; }
.calc-result-num { font-size: 3.5rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.calc-result-label { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.calc-result-breakdown { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; text-align: left; margin-bottom: 24px; }
.calc-result-breakdown div { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.calc-result-breakdown div:last-child { border: none; font-weight: 700; color: var(--accent); }

/* ── Partners page ── */
.partners-hero { background: var(--dark); padding: 120px 5% 80px; }
.partners-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.2; }
.partners-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; margin-top: 40px; }
.partner-card { background: white; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; }
.partner-card .pc-icon { font-size: 2rem; margin-bottom: 14px; }
.partner-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.partner-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.partners-steps { background: #f8fafc; padding: 80px 5%; }
.partners-steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 32px; margin-top: 40px; }
.ps-step { text-align: center; }
.ps-num { width: 48px; height: 48px; background: var(--primary); color: white; border-radius: 50%; font-weight: 900; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.ps-step h4 { font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.ps-step p { font-size: 0.88rem; color: var(--muted); }
.partners-earn { background: var(--dark); padding: 80px 5%; }
.earn-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; margin-top: 40px; }
.earn-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 24px; text-align: center; }
.earn-card .earn-num { font-size: 2rem; font-weight: 900; color: var(--accent); margin-bottom: 6px; }
.earn-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── Challenge fitness card ── */
.challenge-card {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 18px; padding: 36px; color: white; margin: 32px 0;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
@media (max-width: 600px) { .challenge-card { grid-template-columns: 1fr; } }
.challenge-card h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 10px; }
.challenge-card p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-bottom: 16px; }
.challenge-card ul { padding-left: 18px; margin-bottom: 16px; }
.challenge-card ul li { font-size: 0.88rem; color: rgba(255,255,255,0.85); margin-bottom: 5px; }
.challenge-price { font-size: 2rem; font-weight: 900; white-space: nowrap; }
.challenge-price span { font-size: 0.9rem; font-weight: 500; opacity: 0.75; display: block; }

/* ── Nuevos productos digitales en servicios ── */
.prod-nuevo { border: 2px solid var(--accent) !important; position: relative; }
.prod-nuevo-badge {
  position: absolute; top: -10px; left: 20px;
  background: var(--accent); color: white;
  font-size: 0.7rem; font-weight: 800; padding: 3px 10px; border-radius: 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── Taller / mentoría cards ── */
.taller-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; margin-top: 40px; }
.taller-card { background: white; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.taller-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(17,73,228,0.12); }
.taller-card .tc-badge { display: inline-block; padding: 3px 10px; border-radius: 10px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.tc-badge-live { background: #fef3c7; color: #92400e; }
.tc-badge-group { background: #ede9fe; color: #5b21b6; }
.taller-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.taller-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.taller-precio { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: 16px; }
.taller-precio span { font-size: 0.85rem; font-weight: 500; color: var(--muted); }

@media (max-width: 768px) {
  #sticky-cta { padding: 10px 4%; }
  .serv-layout { display: block; }
  .taller-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
}
