/* ── PRODUCTOS.CSS — Estilos de productos.html y producto-gestion-clubs.html ── */

/* ── VARIABLES LOCALES (alias blue = green en estos archivos) ── */
:root {
  --blue: #037c46;
  --blue-bright: #32cd87;
  --blue-dark: #245f37;
  --green-dark: #024d2e;
  --s2: #1c1c1c;
  --s3: #232323;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --text: #f0f0f0;
  --muted: #888;
  --dim: #555;
}

/* ── NAV variante rectangular (productos comparte misma variante que index) ── */
/* Se usa el nav de base.css sin cambios */
.nav-hamburger { cursor: pointer; }

/* ── HERO PRODUCTOS ── */
.prod-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prod-hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(3,124,70,0.2) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.prod-hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-bright); background: rgba(3,124,70,0.1); border: 1px solid rgba(3,124,70,0.25);
  border-radius: 100px; padding: 0.35rem 1rem; margin-bottom: 1.5rem;
}
.prod-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: #fff; margin-bottom: 1rem;
}
.prod-hero p { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.75; }

/* ── FILTROS ── */
.prod-filters { display: flex; align-items: center; gap: 0.6rem; padding: 0 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.4rem 1rem; border-radius: 100px;
  border: 1px solid var(--border2); background: transparent;
  color: var(--muted); font-size: 0.8rem; font-weight: 500;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── GRID PRODUCTOS ── */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 1.5rem; padding-bottom: 6rem; }
.prod-card { background: var(--s1); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; cursor: pointer; display: flex; flex-direction: column; }
.prod-card:hover { border-color: rgba(3,124,70,0.4); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.prod-card-thumb { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #0a1628 0%, #037c46 100%); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.prod-card-thumb .thumb-logo { opacity: 0.15; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.prod-card-thumb .thumb-logo svg { width: 70%; height: 70%; }

/* mini dashboard preview inside thumb */
.thumb-preview { position: relative; z-index: 1; background: #f0f4f8; border-radius: 10px; width: 78%; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.5); font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
.tp-bar { background: #0d2d3e; padding: 0.4rem 0.6rem; display: flex; align-items: center; gap: 0.3rem; }
.tp-dot { width: 5px; height: 5px; border-radius: 50%; }
.tp-title { font-size: 0.45rem; color: rgba(255,255,255,0.7); margin-left: 0.3rem; font-weight: 600; }
.tp-body { padding: 0.5rem 0.6rem; }
.tp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.3rem; margin-bottom: 0.4rem; }
.tp-stat { background: #fff; border-radius: 5px; padding: 0.3rem; border: 1px solid #e2e8f0; }
.tp-num { font-size: 0.65rem; font-weight: 800; color: #16a34a; }
.tp-num.o { color: #f97316; }
.tp-lbl { font-size: 0.32rem; color: #64748b; }
.tp-row { display: flex; justify-content: space-between; align-items: center; padding: 0.18rem 0; border-bottom: 1px solid #f1f5f9; font-size: 0.35rem; color: #374151; }
.tp-badge { padding: 1px 4px; border-radius: 3px; font-size: 0.3rem; font-weight: 600; }
.tp-badge.g { background:#f0fdf4; color:#16a34a; }
.tp-badge.o { background:#fff7ed; color:#f97316; }

/* badges sobre imagen */
.prod-card-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--blue); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; z-index: 2; letter-spacing: .05em; }
.prod-card-new { position: absolute; top: 0.75rem; right: 0.75rem; background: var(--green); color: #fff; font-size: 0.62rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; z-index: 2; }

/* Card body */
.prod-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.prod-card-cat { font-size: 0.68rem; font-weight: 600; color: var(--blue-bright); text-transform: uppercase; letter-spacing: .08em; }
.prod-card-title { font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.3; }
.prod-card-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; flex: 1; }
.prod-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.prod-tag { font-size: 0.65rem; color: var(--muted); background: var(--s3); border: 1px solid var(--border); border-radius: 100px; padding: 0.2rem 0.65rem; }
.prod-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: auto; }
.prod-price { font-size: 1.5rem; font-weight: 800; color: #fff; }
.prod-price sup { font-size: 0.85rem; vertical-align: super; color: var(--blue-bright); }
.prod-price-note { font-size: 0.68rem; color: var(--muted); margin-top: 0.1rem; }
.btn-prod { background: var(--blue); color: #fff; border: none; border-radius: var(--radius-sm); padding: 0.6rem 1.2rem; font-size: 0.8rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.2s; text-decoration: none; display: inline-block; }
.btn-prod:hover { background: #245f37; }
.prod-card.coming-soon { opacity: 0.5; pointer-events: none; }
.prod-card.coming-soon .prod-card-thumb { filter: grayscale(1); }

/* ── PRODUCTO-GESTION-CLUBS: HERO ── */
.hero {
  padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #171f0f 0%, #000 60%);
}
.hero::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(3,124,70,0.25) 0%, transparent 65%);
  filter: blur(80px); pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-left { display: flex; flex-direction: column; gap: 1.4rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-bright); background: rgba(3,124,70,0.12); border: 1px solid rgba(3,124,70,0.3);
  border-radius: 100px; padding: 0.35rem 1rem; width: fit-content;
}
.hero-badge::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--blue-bright); }
.hero-title { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; color: #fff; }
.hero-title span { color: var(--blue-bright); }
.hero-desc { font-size: 1rem; color: var(--muted); line-height: 1.8; }
.hero-price-row { display: flex; align-items: baseline; gap: 0.75rem; }
.hero-price { font-size: 3.2rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-price sup { font-size: 1.3rem; vertical-align: super; color: var(--blue-bright); }
.hero-price-note { font-size: 0.85rem; color: var(--muted); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-blue { background: var(--blue); color: #fff; border: none; border-radius: var(--radius-sm); padding: 0.85rem 2rem; font-size: 0.95rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 0.85rem 2rem; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.btn-ghost:hover { border-color: #fff; color: #fff; }

/* Hero mockup */
.hero-right { position: relative; }
.hero-mockup { background: #f0f4f8; border-radius: 16px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05); transform: perspective(1200px) rotateY(-6deg) rotateX(3deg); font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
.m-bar { background: #0d2d3e; padding: 0.6rem 1rem; display: flex; align-items: center; gap: 0.4rem; }
.m-dot { width: 7px; height: 7px; border-radius: 50%; }
.m-title { font-size: 0.6rem; color: rgba(255,255,255,0.6); margin-left: 0.4rem; font-weight: 600; }
.m-layout { display: flex; }
.m-sidebar { width: 130px; flex-shrink: 0; background: #0d2d3e; padding: 0.5rem 0; }
.m-sidebar-logo { padding: 0.4rem 0.7rem 0.6rem; font-size: 0.55rem; font-weight: 700; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.08); }
.m-sidebar-logo small { color: #f97316; display: block; font-size: 0.45rem; }
.m-nav { padding: 0.3rem 0.7rem; font-size: 0.5rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.3rem; }
.m-nav.active { background: #f97316; color: #fff; border-radius: 5px; margin: 0.1rem 0.4rem; }
.m-nav-d { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.6; }
.m-main { flex: 1; padding: 0.8rem; }
.m-h { font-size: 0.7rem; font-weight: 700; color: #1e293b; }
.m-sub { font-size: 0.45rem; color: #64748b; margin-bottom: 0.6rem; }
.m-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.4rem; margin-bottom: 0.6rem; }
.m-stat { background: #fff; border-radius: 7px; padding: 0.45rem; border: 1px solid #e2e8f0; }
.m-num { font-size: 0.9rem; font-weight: 800; line-height:1; }
.m-num.g { color: #16a34a; } .m-num.o { color: #f97316; } .m-num.b { color: #037c46; }
.m-lbl { font-size: 0.38rem; color: #64748b; margin-top: 0.1rem; }
.m-table { background:#fff; border-radius:7px; overflow:hidden; border:1px solid #e2e8f0; }
.m-thead { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr 1.2fr; padding:0.3rem 0.5rem; font-size:0.38rem; font-weight:600; color:#64748b; background:#f8fafc; border-bottom:1px solid #e2e8f0; }
.m-trow { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr 1.2fr; padding:0.28rem 0.5rem; font-size:0.4rem; color:#1e293b; border-bottom:1px solid #f1f5f9; align-items:center; }
.m-badge { display:inline-flex; padding:1px 5px; border-radius:4px; font-size:0.35rem; font-weight:600; }
.m-badge.g { background:#f0fdf4; color:#16a34a; border:1px solid #bbf7d0; }
.m-badge.o { background:#fff7ed; color:#f97316; border:1px solid #fed7aa; }
.m-btn { background:#16a34a; color:#fff; font-size:0.35rem; padding:2px 5px; border-radius:3px; font-weight:600; }

/* ── FEATURES ── */
.features { padding: 6rem 0; }
.feat-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-bright); background: rgba(3,124,70,0.1); border: 1px solid rgba(3,124,70,0.2); border-radius: 100px; padding: 0.3rem 0.9rem; margin-bottom: 1rem; }
.feat-header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; }
.feat-header p { font-size: 1rem; color: var(--muted); margin-top: 0.75rem; }
.feat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.feat-card { background: var(--s1); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: border-color 0.3s, transform 0.3s; }
.feat-card:hover { border-color: rgba(3,124,70,0.35); transform: translateY(-4px); }
.feat-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(3,124,70,0.15); border: 1px solid rgba(3,124,70,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feat-icon svg { width: 22px; height: 22px; stroke: var(--blue-bright); }
.feat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feat-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── SCREENS ── */
.screens { padding: 5rem 0; background: var(--s1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.screens-header { text-align: center; margin-bottom: 3rem; }
.screens-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.screen-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: .06em; }

/* ── PORTAL SECTION ── */
.portal-section { padding: 6rem 0; }
.portal-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.portal-text { display: flex; flex-direction: column; gap: 1.25rem; }
.portal-text h2 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; letter-spacing: -0.02em; }
.portal-text p { color: var(--muted); line-height: 1.8; }
.portal-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.portal-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.portal-list li::before { content:'✓'; width:20px; height:20px; border-radius:50%; background:rgba(3,124,70,0.2); border:1px solid rgba(50,205,135,0.3); color:var(--green-bright); font-size:0.7rem; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:0.1rem; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; }
.phone-frame { width: 280px; background: #1a1a1a; border-radius: 36px; padding: 12px; box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06); position: relative; }
.phone-notch { width: 80px; height: 22px; background: #000; border-radius: 0 0 14px 14px; margin: 0 auto 8px; }
.phone-screen { background: linear-gradient(170deg, #0a4a6e 0%, #0d7ab0 40%, #1e99cc 80%, #a8d8ea 100%); border-radius: 26px; overflow: hidden; height: 500px; overflow-y: auto; scrollbar-width: none; }
.phone-screen::-webkit-scrollbar { display: none; }
.ps-header { padding: 1rem 1rem 0.5rem; }
.ps-club { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.ps-avatar { width: 28px; height: 28px; border-radius: 50%; background: #f97316; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.ps-club-name { font-size: 0.7rem; font-weight: 700; color: #fff; }
.ps-club-exit { margin-left: auto; font-size: 0.55rem; color: rgba(255,255,255,0.6); }
.ps-welcome { font-size: 0.55rem; color: rgba(255,255,255,0.7); }
.ps-name { font-size: 0.9rem; font-weight: 800; color: #fff; line-height: 1.2; }
.ps-ci { font-size: 0.5rem; color: rgba(255,255,255,0.6); margin-top: 0.1rem; margin-bottom: 0.75rem; }
.ps-body { padding: 0 0.75rem 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.ps-card { background: #fff; border-radius: 12px; padding: 0.7rem; }
.ps-card-title { font-size: 0.45rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 0.4rem; }
.ps-month { font-size: 0.65rem; font-weight: 700; color: #1e293b; }
.ps-amount { font-size: 0.95rem; font-weight: 900; color: #1e293b; line-height: 1; }
.ps-paid-badge { display: inline-flex; align-items: center; gap: 0.2rem; background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; font-size: 0.42rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 100px; }
.ps-next { font-size: 0.4rem; color: #64748b; margin-top: 0.3rem; }
.ps-next span { font-weight: 600; color: #1e293b; }
.ps-debt-card { background: #fff5f5; border: 1px solid #fecaca; border-radius: 12px; padding: 0.7rem; display: flex; justify-content: space-between; align-items: center; }
.ps-debt-label { font-size: 0.45rem; font-weight: 700; color: #dc2626; text-transform: uppercase; letter-spacing: .06em; }
.ps-debt-amount { font-size: 0.85rem; font-weight: 900; color: #dc2626; }
.ps-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.ps-mini-card { background: #fff; border-radius: 10px; padding: 0.55rem; text-align: center; }
.ps-mini-num { font-size: 0.75rem; font-weight: 800; }
.ps-mini-num.g { color: #16a34a; } .ps-mini-num.o { color: #f97316; }
.ps-mini-lbl { font-size: 0.38rem; color: #64748b; }
.ps-mini-sub { font-size: 0.38rem; font-weight: 600; }
.ps-mini-sub.g { color: #16a34a; } .ps-mini-sub.o { color: #f97316; }
.ps-history-card { background: #fff; border-radius: 12px; padding: 0.7rem; }
.ps-history-title { font-size: 0.5rem; font-weight: 700; color: #1e293b; margin-bottom: 0.4rem; }
.ps-h-row { display: flex; justify-content: space-between; align-items: center; padding: 0.28rem 0; border-bottom: 1px solid #f1f5f9; }
.ps-h-month { font-size: 0.45rem; font-weight: 600; color: #1e293b; }
.ps-h-date { font-size: 0.38rem; color: #94a3b8; }
.ps-h-amount { font-size: 0.48rem; font-weight: 700; color: #1e293b; }
.ps-h-badge { font-size: 0.35rem; font-weight: 700; padding: 1px 5px; border-radius: 4px; }
.ps-h-badge.g { background:#f0fdf4; color:#16a34a; border:1px solid #bbf7d0; }
.ps-h-badge.o { background:#fff7ed; color:#f97316; border:1px solid #fed7aa; }
.ps-indum-card { background: #fff; border-radius: 12px; padding: 0.7rem; }
.ps-indum-row { display: flex; justify-content: space-between; align-items: center; padding: 0.22rem 0; }
.ps-indum-name { font-size: 0.45rem; color: #374151; display: flex; align-items: center; gap: 0.2rem; }
.ps-indum-amount { font-size: 0.45rem; font-weight: 700; color: #1e293b; }
.ps-footer-card { background: rgba(255,255,255,0.15); border-radius: 12px; padding: 0.6rem; text-align: center; }
.ps-footer-text { font-size: 0.4rem; color: rgba(255,255,255,0.7); }

/* Full dashboard mockup */
.full-mockup { background: #f0f4f8; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.4); font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
.fm-bar { background: #0d2d3e; padding: 0.6rem 1rem; display: flex; align-items: center; gap: 0.4rem; }
.fm-dot { width: 8px; height: 8px; border-radius: 50%; }
.fm-layout { display: flex; min-height: 280px; }
.fm-sidebar { width: 150px; flex-shrink: 0; background: #0d2d3e; padding: 0.6rem 0; }
.fm-logo { padding: 0.5rem 0.8rem 0.7rem; font-size: 0.6rem; font-weight: 700; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.08); }
.fm-logo small { color: #f97316; display: block; font-size: 0.48rem; }
.fm-nav { padding: 0.35rem 0.8rem; font-size: 0.52rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.35rem; }
.fm-nav.active { background: #f97316; color: #fff; border-radius: 6px; margin: 0.15rem 0.5rem; }
.fm-nav-d { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.6; flex-shrink: 0; }
.fm-main { flex: 1; padding: 1rem; }
.fm-title { font-size: 0.8rem; font-weight: 700; color: #1e293b; }
.fm-sub { font-size: 0.5rem; color: #64748b; margin-bottom: 0.75rem; }
.excel-btn { display:inline-flex; align-items:center; gap:0.2rem; background:#16a34a; color:#fff; font-size:0.38rem; padding:2px 7px; border-radius:4px; font-weight:700; }
.new-btn { display:inline-flex; align-items:center; gap:0.2rem; background:#f97316; color:#fff; font-size:0.38rem; padding:2px 7px; border-radius:4px; font-weight:700; }
.fm-filter-row { display:flex; gap:0.3rem; margin-bottom:0.4rem; flex-wrap:wrap; }
.fm-filter { background:#e2e8f0; color:#374151; font-size:0.35rem; padding:1px 5px; border-radius:3px; font-weight:500; }
.fm-filter.active { background:#0d2d3e; color:#fff; }
.fm-indum-thead { display:grid; grid-template-columns:2fr 1.2fr 0.7fr 1fr 1.2fr 1fr 1fr 1.4fr; padding:0.3rem 0.5rem; font-size:0.38rem; font-weight:600; color:#64748b; background:#f8fafc; border-bottom:1px solid #e2e8f0; }
.fm-indum-row { display:grid; grid-template-columns:2fr 1.2fr 0.7fr 1fr 1.2fr 1fr 1fr 1.4fr; padding:0.28rem 0.5rem; font-size:0.4rem; color:#1e293b; border-bottom:1px solid #f1f5f9; align-items:center; }
.fm-deudas-thead { display:grid; grid-template-columns:2fr 1fr 1.2fr 1.5fr 1.2fr; padding:0.3rem 0.5rem; font-size:0.38rem; font-weight:600; color:#64748b; background:#f8fafc; border-bottom:1px solid #e2e8f0; }
.fm-deudas-row { display:grid; grid-template-columns:2fr 1fr 1.2fr 1.5fr 1.2fr; padding:0.28rem 0.5rem; font-size:0.4rem; color:#1e293b; border-bottom:1px solid #f1f5f9; align-items:center; }
.fm-red { color:#dc2626; font-weight:700; }
.fm-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; margin-bottom: 0.75rem; }
.fm-stat { background: #fff; border-radius: 8px; padding: 0.6rem; border: 1px solid #e2e8f0; }
.fm-num { font-size: 1.1rem; font-weight: 800; line-height: 1; }
.fm-num.g { color: #16a34a; } .fm-num.o { color: #f97316; } .fm-num.d { color: #1e293b; }
.fm-lbl { font-size: 0.42rem; color: #64748b; margin-top: 0.15rem; }
.fm-sub2 { font-size: 0.42rem; font-weight: 600; }
.fm-sub2.g { color:#16a34a; } .fm-sub2.o { color:#f97316; }
.fm-table { background:#fff; border-radius:8px; overflow:hidden; border:1px solid #e2e8f0; }
.fm-thead { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1.4fr 1.4fr; padding:0.35rem 0.6rem; font-size:0.42rem; font-weight:600; color:#64748b; background:#f8fafc; border-bottom:1px solid #e2e8f0; }
.fm-trow { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1.4fr 1.4fr; padding:0.32rem 0.6rem; font-size:0.44rem; color:#1e293b; border-bottom:1px solid #f1f5f9; align-items:center; }
.fm-badge { display:inline-flex; padding:2px 6px; border-radius:4px; font-size:0.38rem; font-weight:600; }
.fm-badge.g { background:#f0fdf4; color:#16a34a; border:1px solid #bbf7d0; }
.fm-badge.o { background:#fff7ed; color:#f97316; border:1px solid #fed7aa; }
.fm-mark { background:#16a34a; color:#fff; font-size:0.38rem; padding:2px 7px; border-radius:4px; font-weight:600; }
.fm-sgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.5rem; margin-bottom: 0.75rem; }
.fm-scard { background:#fff; border-radius:8px; padding:0.55rem; border:1px solid #e2e8f0; }
.fm-sicon { font-size:0.85rem; margin-bottom:0.15rem; }
.fm-snum { font-size:0.9rem; font-weight:800; }
.fm-snum.g { color:#16a34a; } .fm-snum.o { color:#f97316; } .fm-snum.b { color:#037c46; } .fm-snum.d { color:#1e293b; }
.fm-slbl { font-size:0.4rem; color:#64748b; }
.fm-bottom { display:grid; grid-template-columns:1fr 1fr; gap:0.5rem; }
.fm-panel { background:#fff; border-radius:8px; padding:0.6rem; border:1px solid #e2e8f0; }
.fm-ptitle { font-size:0.52rem; font-weight:700; color:#1e293b; margin-bottom:0.4rem; }
.fm-prow { display:flex; justify-content:space-between; font-size:0.44rem; color:#374151; padding:0.2rem 0; border-bottom:1px solid #f1f5f9; }
.fm-prow span { color:#16a34a; font-weight:600; }
.fm-abtn { display:block; text-align:center; padding:0.32rem; border-radius:6px; font-size:0.44rem; font-weight:600; margin-bottom:0.3rem; }
.fm-abtn.dk { background:#0d2d3e; color:#fff; }
.fm-abtn.or { background:#f97316; color:#fff; }
.fm-abtn.lt { background:#e2e8f0; color:#374151; }

/* ── PRICING PRODUCTO ── */
.pricing { padding: 6rem 0; }
.pricing-inner { background: linear-gradient(135deg, #171f0f 0%, #024d2e 100%); border: 1px solid rgba(3,124,70,0.3); border-radius: 24px; padding: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; overflow: hidden; }
.pricing-inner::before { content:''; position:absolute; right:-100px; top:-100px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle, rgba(3,124,70,0.25) 0%, transparent 65%); filter:blur(60px); pointer-events:none; }
.pricing-left h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; }
.pricing-left p { color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.pricing-includes { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-includes li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.pricing-includes li::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: rgba(3,124,70,0.2); border: 1px solid rgba(3,124,70,0.4); color: var(--blue-bright); font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pricing-right { text-align: center; position: relative; z-index: 1; }
.price-big { font-size: 5rem; font-weight: 900; color: #fff; line-height: 1; }
.price-big sup { font-size: 2rem; vertical-align: super; color: var(--blue-bright); }
.price-note { font-size: 0.9rem; color: var(--muted); margin: 0.5rem 0 2rem; }
.price-divider { width: 60px; height: 2px; background: rgba(3,124,70,0.4); margin: 1.5rem auto; }
.price-tag { font-size: 0.75rem; color: var(--blue-bright); font-weight: 600; letter-spacing: .05em; }

/* ── FAQ PRODUCTO ── */
.prod-faq { padding: 5rem 0; }
.prod-faq h2 { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 2.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 720px; margin: 0 auto; }
.faq-item { background: var(--s1); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.faq-q { width: 100%; text-align: left; padding: 1.1rem 1.5rem; background: none; border: none; color: #fff; font-family: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--muted); transition: transform 0.2s; }
.faq-q.open::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.1rem; font-size: 0.875rem; color: var(--muted); line-height: 1.75; }
.faq-a.open { display: block; }

/* ── CTA FINAL PRODUCTO ── */
.prod-cta { padding: 5rem 0 6rem; text-align: center; background: linear-gradient(180deg, #000 0%, #171f0f 100%); }
.prod-cta h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.prod-cta p { color: var(--muted); max-width: 500px; margin: 0 auto 2rem; line-height: 1.75; }

/* ── RESPONSIVE PRODUCTOS ── */
@media(max-width:1100px) { .feat-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mockup { transform: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .screens-grid { grid-template-columns: 1fr; }
  .pricing-inner { grid-template-columns: 1fr; padding: 2.5rem; gap: 2rem; }
  .portal-inner { grid-template-columns: 1fr; }
  .fm-sidebar { display: none; }
}
@media(max-width:600px) {
  .feat-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
