/**
 * JMPALPER.COM - Main Design System (Vanilla CSS)
 * Modern, Ultra-Fast, Glassmorphic & Responsive
 */

:root {
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-display: 'Outfit', var(--font-main);
    --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

    /* Color Palette */
    --bg-base: #070b14;
    --bg-surface: #0b1120;
    --bg-card: #0f172a;
    --bg-card-hover: #1e293b;
    --bg-alt: #161f33;

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(56, 189, 248, 0.35);
    --border-focus: #38bdf8;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;

    --primary: #38bdf8;
    --primary-dark: #0284c7;
    --volt: #9dff20;
    --emerald: #10b981;
    --amber: #f59e0b;
    --rose: #f43f5e;
    --purple: #a855f7;
    --indigo: #6366f1;
    --orange: #f97316;
    --teal: #14b8a6;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 12px 28px -4px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px -4px rgba(56, 189, 248, 0.25);

    --container-max: 1240px;
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at 50% 0%, #111a33 0%, #070b14 70%);
    background-attachment: fixed;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast), transform var(--transition-fast);
}
a:hover {
    color: #7dd3fc;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--primary);
    color: #000;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    z-index: 9999;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 1rem;
}

/* -------------------------------------------------------------------------- */
/* NAVBAR                                                                     */
/* -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 17, 32, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.brand-logo:hover {
    color: var(--text-main);
}
.brand-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--volt), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(157, 255, 32, 0.3);
}
.brand-logo-icon svg {
    width: 20px;
    height: 20px;
    fill: #0b1120;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.65rem 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.65rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-fast);
    list-style: none;
    z-index: 1010;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.dropdown-link:hover {
    color: var(--primary);
    background: rgba(56, 189, 248, 0.1);
    transform: translateX(3px);
}

.nav-cta {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #fff !important;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}
.nav-cta:hover {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    padding: 0.5rem;
    cursor: pointer;
}
.nav-toggle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}

/* -------------------------------------------------------------------------- */
/* HERO SECTION                                                               */
/* -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.22;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(157, 255, 32, 0.1);
    border: 1px solid rgba(157, 255, 32, 0.28);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--volt);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}
.hero-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--volt);
    box-shadow: 0 0 10px var(--volt);
    animation: jmpPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes jmpPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: #ffffff;
}
.text-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #a855f7 50%, #9dff20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* -------------------------------------------------------------------------- */
/* BUTTONS                                                                    */
/* -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 1.65rem;
    font-size: 0.96rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-decoration: none !important;
}
.btn-primary {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.55);
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main) !important;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--text-main) !important;
}

.btn-amazon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0b1120 !important;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}
.btn-amazon:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.55);
    transform: translateY(-2px);
    color: #0b1120 !important;
}

/* -------------------------------------------------------------------------- */
/* HUB DE APLICACIONES WEB (#herramientas-web)                                */
/* -------------------------------------------------------------------------- */
.jmp-apps-hub {
    margin: 3.5rem auto 2.5rem;
    padding: 3.5rem 2rem 2.5rem;
    max-width: 1220px;
    box-sizing: border-box;
    background: linear-gradient(145deg, #0b1120 0%, #0f172a 50%, #111827 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.05);
    color: #f8fafc;
    position: relative;
    overflow: hidden;
}
.jmp-apps-hub::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0) 70%);
    pointer-events: none;
    filter: blur(40px);
}
.jmp-apps-hub::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.14) 0%, rgba(168, 85, 247, 0) 70%);
    pointer-events: none;
    filter: blur(40px);
}
.jmp-apps-inner {
    position: relative;
    z-index: 2;
}

.jmp-apps-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
}
.jmp-apps-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}
.jmp-apps-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
    animation: jmpPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.jmp-apps-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: #ffffff;
    letter-spacing: -0.025em;
}
.jmp-apps-title-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.jmp-apps-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 auto;
}

.jmp-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.jmp-app-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    position: relative;
}
.jmp-app-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.jmp-app-card-top {
    margin-bottom: 1.5rem;
}
.jmp-app-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.jmp-app-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.jmp-card-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.jmp-badge-cyan    { background: rgba(56, 189, 248, 0.12); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.25); }
.jmp-badge-emerald { background: rgba(52, 211, 153, 0.12); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.25); }
.jmp-badge-amber   { background: rgba(251, 191, 36, 0.12); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.25); }
.jmp-badge-rose    { background: rgba(244, 63, 94, 0.12);  color: #f43f5e; border: 1px solid rgba(244, 63, 94, 0.25); }
.jmp-badge-indigo  { background: rgba(99, 102, 241, 0.12); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.25); }
.jmp-badge-purple  { background: rgba(168, 85, 247, 0.12); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.25); }
.jmp-badge-teal    { background: rgba(20, 184, 166, 0.12); color: #2dd4bf; border: 1px solid rgba(20, 184, 166, 0.25); }
.jmp-badge-orange  { background: rgba(249, 115, 22, 0.12); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.25); }

.jmp-app-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.85rem;
    color: #ffffff;
}
.jmp-app-card-title a {
    color: #ffffff;
    text-decoration: none;
}
.jmp-app-card-title a:hover {
    color: var(--primary);
}

.jmp-app-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
}

.jmp-app-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0 0 1.5rem;
}
.jmp-app-card-tags li {
    font-size: 0.78rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 3px 9px;
}

.jmp-app-card-bottom {
    margin-top: auto;
}

.jmp-app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all var(--transition-fast);
}
.jmp-btn-cyan {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}
.jmp-btn-cyan:hover {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
}

.jmp-btn-emerald {
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}
.jmp-btn-emerald:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.jmp-btn-amber {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}
.jmp-btn-amber:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

.jmp-btn-rose {
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}
.jmp-btn-rose:hover {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.5);
    transform: translateY(-2px);
}

.jmp-btn-indigo {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}
.jmp-btn-indigo:hover {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.jmp-btn-teal {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
.jmp-btn-teal:hover {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
    transform: translateY(-2px);
}

.jmp-btn-purple {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}
.jmp-btn-purple:hover {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.jmp-btn-orange {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}
.jmp-btn-orange:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

/* Featured Guide Banner */
.jmp-featured-guide-banner {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    margin-bottom: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.45);
}
.jmp-featured-guide-banner:hover {
    border-color: rgba(56, 189, 248, 0.55);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5), var(--shadow-glow);
    transform: translateY(-3px);
}
.jmp-guide-banner-content {
    flex: 1;
}
.jmp-guide-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 0.65rem;
}
.jmp-guide-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
}
.jmp-guide-banner-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #ffffff;
    line-height: 1.35;
}
.jmp-guide-banner-title a {
    color: #ffffff;
}
.jmp-guide-banner-title a:hover {
    color: #38bdf8;
}
.jmp-guide-banner-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0 0 1rem;
    max-width: 680px;
}
.jmp-guide-banner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.jmp-guide-banner-tags span {
    font-size: 0.75rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 6px;
}
.jmp-guide-banner-action {
    flex-shrink: 0;
}
.jmp-btn-guide {
    background: linear-gradient(135deg, #0284c7, #2563eb);
    color: #ffffff !important;
    padding: 13px 26px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    white-space: nowrap;
}
.jmp-btn-guide:hover {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    box-shadow: 0 6px 22px rgba(14, 165, 233, 0.55);
    transform: translateY(-2px);
}

/* Bloque GEO / IA Context */
.jmp-apps-geo-context {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
}
.jmp-apps-geo-context strong {
    color: #e2e8f0;
    display: inline-block;
    margin-bottom: 0.35rem;
}
.jmp-apps-geo-context a {
    color: #38bdf8;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.jmp-apps-geo-context a:hover {
    color: #7dd3fc;
}

/* -------------------------------------------------------------------------- */
/* BRAND & CATEGORY SECTIONS                                                 */
/* -------------------------------------------------------------------------- */
.section-title-wrap {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
}
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.brand-card {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.brand-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}
.brand-card-top {
    margin-bottom: 1.25rem;
}
.brand-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
}
.brand-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary);
    border: 1px solid rgba(56, 189, 248, 0.25);
    text-transform: uppercase;
}
.brand-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}
.brand-link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}
.brand-card:hover .brand-link-btn {
    background: var(--primary);
    color: #0b1120;
    border-color: var(--primary);
    font-weight: 700;
}

/* Category Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.category-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.8));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 255, 32, 0.4);
    box-shadow: var(--shadow-md), 0 0 25px -5px rgba(157, 255, 32, 0.2);
}
.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.category-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.65rem;
}
.category-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

/* Product Showcase Cards */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}
.product-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: center;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.product-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: var(--shadow-md);
}
.product-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border);
}
.product-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}
.product-info {
    display: flex;
    flex-direction: column;
}
.product-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(157, 255, 32, 0.12);
    color: var(--volt);
    border: 1px solid rgba(157, 255, 32, 0.3);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.product-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}
.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.specs-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
}
.spec-item {
    font-size: 0.85rem;
}
.spec-label {
    color: var(--text-subtle);
    font-weight: 600;
}
.spec-val {
    color: var(--text-main);
    font-weight: 700;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.pros-list, .cons-list {
    list-style: none;
    font-size: 0.88rem;
}
.pros-list li {
    color: #34d399;
    margin-bottom: 4px;
}
.cons-list li {
    color: #f87171;
    margin-bottom: 4px;
}

/* -------------------------------------------------------------------------- */
/* FAQ ACCORDION                                                              */
/* -------------------------------------------------------------------------- */
.faq-section {
    margin: 4rem auto;
    max-width: 900px;
}
.faq-item {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}
.faq-item:hover {
    border-color: rgba(56, 189, 248, 0.3);
}
.faq-question {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}
.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* BREADCRUMBS                                                                */
/* -------------------------------------------------------------------------- */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-subtle);
    padding: 1.25rem 0;
    list-style: none;
}
.breadcrumbs a {
    color: var(--text-muted);
}
.breadcrumbs a:hover {
    color: var(--primary);
}
.breadcrumbs span.separator {
    color: var(--border);
}
.breadcrumbs span.current {
    color: var(--text-main);
    font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* FOOTER                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer {
    margin-top: auto;
    background: #050811;
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    color: var(--text-muted);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}
.footer-col-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.65rem;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
    display: inline-block;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-subtle);
}

/* -------------------------------------------------------------------------- */
/* RESPONSIVE BREAKPOINTS                                                     */
/* -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .product-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1rem;
        overflow-y: auto;
        display: none;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.25);
        border: 1px solid var(--border);
        margin-top: 0.5rem;
        margin-left: 0.5rem;
        width: 100%;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        width: 100%;
        justify-content: space-between;
    }
    .jmp-featured-guide-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1.25rem;
    }
    .jmp-guide-banner-action, .jmp-btn-guide {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .specs-table {
        grid-template-columns: 1fr;
    }
}
