/* ==========================================================================
   ZIPPY EMPRESAS PRO - CSS ULTRA RESPONSIVE FULL-SCREEN CON HOVER UNIFICADO
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES DE DISEÑO (ROOT)
   -------------------------------------------------------------------------- */
:root {
    /* Paleta de Colores Primarios */
    --zippy-blue: #3b82f6;
    --zippy-blue-hover: #2563eb;
    --zippy-blue-glow: rgba(59, 130, 246, 0.35);
    
    --zippy-orange: #ff9f43;
    --zippy-orange-hover: #f38b2b;
    --zippy-orange-glow: rgba(255, 159, 67, 0.35);
    
    --zippy-gold: #fbbf24;
    --zippy-gold-glow: rgba(251, 191, 36, 0.35);
    --zippy-emerald: #10b981;
    --zippy-emerald-glow: rgba(16, 185, 129, 0.35);
    
    /* Superficies y Fondos Dark Theme */
    --bg-dark: #07080a;
    --bg-dark-secondary: #0d0f14;
    --bg-card: #13161d;
    --bg-card-hover: #181d27;
    
    /* Textos y Bordes */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.22);
    --glass-sheen: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    
    /* Radios de Curvatura */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-full: 9999px;
    
    /* Transiciones Unificadas */
    --card-transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                      box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                      border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                      background 0.35s ease;
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET Y ESTRUCTURA FULL-SCREEN (PANTALLA COMPLETA FLUIDA)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Contenedor Fluido al 100% de la pantalla con margen dinámico */
.container-wide {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(16px, 4vw, 60px);
    padding-right: clamp(16px, 4vw, 60px);
    margin: 0 auto;
}

section[id] {
    scroll-margin-top: 90px;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { 
    background: #1e2430; 
    border-radius: var(--radius-full); 
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover { background: var(--zippy-blue); }

::selection {
    background: var(--zippy-blue);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   3. UTILIDADES DE TEXTO, BADGES Y TAGS
   -------------------------------------------------------------------------- */
.text-orange  { color: var(--zippy-orange); }
.text-blue    { color: var(--zippy-blue); }
.text-gold    { color: var(--zippy-gold); }
.text-emerald { color: var(--zippy-emerald); }
.text-white   { color: #ffffff; }

.badge-hot {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.35);
    margin-bottom: 14px;
}

.badge-live {
    background: rgba(16, 185, 129, 0.15);
    color: var(--zippy-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.badge-live::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--zippy-emerald);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--zippy-emerald);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

/* --------------------------------------------------------------------------
   4. BOTONES DEL SISTEMA
   -------------------------------------------------------------------------- */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    padding: 13px 26px; 
    border-radius: 12px; 
    font-weight: 700; 
    text-decoration: none; 
    transition: var(--transition-smooth); 
    cursor: pointer; 
    border: 1px solid transparent; 
    font-size: 13.5px; 
    text-align: center; 
}

.btn-blue { 
    background: linear-gradient(135deg, var(--zippy-blue), #2563eb); 
    color: #ffffff; 
    box-shadow: 0 4px 20px var(--zippy-blue-glow), var(--glass-sheen); 
}
.btn-blue:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.55); 
    filter: brightness(1.08);
}

.btn-orange { 
    background: linear-gradient(135deg, var(--zippy-orange), #f97316); 
    color: #07080a; 
    font-weight: 800;
    box-shadow: 0 4px 20px var(--zippy-orange-glow), var(--glass-sheen); 
}
.btn-orange:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 28px rgba(255, 159, 67, 0.55); 
    filter: brightness(1.08); 
}

.btn-outline { 
    background: rgba(255, 255, 255, 0.03); 
    color: #ffffff; 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    box-shadow: var(--glass-sheen);
}
.btn-outline:hover { 
    border-color: var(--zippy-orange); 
    color: var(--zippy-orange); 
    transform: translateY(-3px); 
    background: rgba(255, 159, 67, 0.06);
}

.btn-outline-dark { 
    background: rgba(255, 255, 255, 0.06); 
    color: #ffffff; 
    border: 1px solid var(--border-color); 
}
.btn-outline-dark:hover { 
    background: #ffffff; 
    color: var(--bg-dark); 
}

.btn-sm { padding: 8px 16px; font-size: 12px; border-radius: 9px; }
.btn-lg { padding: 16px 36px; font-size: 15px; border-radius: 14px; }

/* --------------------------------------------------------------------------
   5. HEADER Y NAVEGACIÓN COMPLETA
   -------------------------------------------------------------------------- */
header, .main-header {
    background: rgba(7, 8, 10, 0.92);
    padding: 14px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    background: rgba(7, 8, 10, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-links a.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    padding: 6px 2px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.nav-links a.nav-item:hover {
    color: #ffffff;
}

.nav-links a.nav-item.active {
    color: var(--zippy-orange) !important;
    font-weight: 700;
}

.nav-links a.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--zippy-orange);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--zippy-orange);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero { 
    padding: 170px 0 90px; 
    text-align: center; 
    background: 
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(59, 130, 246, 0.18) 0%, transparent 80%),
        radial-gradient(circle at 50% 25%, #141a24 0%, var(--bg-dark) 75%);
    position: relative;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.08);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.12);
}

.hero h1 { 
    font-size: clamp(32px, 4.8vw, 60px); 
    font-weight: 900; 
    letter-spacing: -1.2px;
    margin-bottom: 20px; 
    line-height: 1.15; 
    max-width: 1150px; 
    margin-left: auto; 
    margin-right: auto; 
}

.hero p { 
    font-size: clamp(15.5px, 1.3vw, 18.5px); 
    max-width: 860px; 
    margin: 0 auto 35px; 
    color: var(--text-muted); 
    line-height: 1.7;
}

.hero-buttons { 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin-bottom: 55px; 
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    width: 100%;
}

/* Tarjeta Stat Box (Hover Unificado) */
.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--glass-sheen);
    transition: var(--card-transition);
}

.stat-box:hover {
    transform: translateY(-6px);
    border-color: var(--zippy-orange);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px rgba(255, 159, 67, 0.15), var(--glass-sheen);
}

.stat-box h3 { 
    font-size: 34px; 
    font-weight: 900; 
    color: var(--zippy-orange); 
    margin: 0; 
}

.stat-box p { 
    font-size: 13.5px; 
    color: var(--text-muted); 
    margin: 4px 0 0; 
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   7. SECCIONES Y ENCABEZADOS
   -------------------------------------------------------------------------- */
.section-box { 
    padding: 85px 0; 
    width: 100%;
}

.section-title { 
    text-align: center; 
    margin-bottom: 50px; 
    width: 100%;
}

.section-title .tag { 
    font-size: 11.5px; 
    font-weight: 800; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--zippy-blue); 
    display: inline-block; 
    margin-bottom: 10px; 
}

.section-title .gold-tag { color: var(--zippy-gold); }

.section-title h2 { 
    font-size: clamp(25px, 3.2vw, 38px); 
    font-weight: 800; 
    letter-spacing: -0.8px;
    margin: 0 0 14px; 
}

.section-title p { 
    color: var(--text-muted); 
    font-size: 15.5px; 
    max-width: 820px; 
    margin: 0 auto; 
}

.icon-lg { 
    font-size: 42px; 
    margin-bottom: 16px; 
    display: inline-block;
}

.check-list, .styled-list { 
    list-style: none; 
    padding: 0; 
    margin: 22px 0 0; 
    font-size: 13.5px; 
    color: var(--text-muted); 
}

.check-list li, .styled-list li { 
    margin-bottom: 10px; 
    display: flex; 
    align-items: flex-start; 
    gap: 10px; 
}

.check-list li b, .styled-list li b {
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   8. PATRÓN DE TARJETAS PRO & HOVER UNIFICADO (TIENDA, LOGÍSTICA, FLOTA)
   -------------------------------------------------------------------------- */
.store-features-grid, 
.main-grid, 
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 26px;
    width: 100%;
}

/* Base Tarjeta Pro */
.card-pro { 
    background: var(--bg-card); 
    padding: 34px 28px; 
    border-radius: var(--radius-md); 
    border: 1px solid var(--border-color); 
    box-shadow: var(--glass-sheen);
    transition: var(--card-transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-pro:hover { 
    background: var(--bg-card-hover); 
    transform: translateY(-6px); 
    border-color: var(--zippy-blue);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px var(--zippy-blue-glow), var(--glass-sheen);
}

.card-pro h3, .card-pro h4 {
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 10px;
}

.card-pro p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
}

/* Variantes con Glow */
.store-card-glow {
    background: linear-gradient(160deg, #141720 0%, #0e1017 100%);
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.store-card-glow:hover {
    border-color: var(--zippy-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--zippy-blue-glow), var(--glass-sheen);
}

.store-card-glow.orange-glow { 
    border-color: rgba(255, 159, 67, 0.25); 
}
.store-card-glow.orange-glow:hover { 
    border-color: var(--zippy-orange); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--zippy-orange-glow), var(--glass-sheen); 
}

.store-card-glow.green-glow { 
    border-color: rgba(16, 185, 129, 0.25); 
}
.store-card-glow.green-glow:hover { 
    border-color: var(--zippy-emerald); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--zippy-emerald-glow), var(--glass-sheen); 
}

.card-pro.highlight-card { 
    border-color: rgba(255, 159, 67, 0.3); 
    background: linear-gradient(150deg, #171b24 0%, #1a1614 100%); 
}
.card-pro.highlight-card:hover {
    border-color: var(--zippy-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--zippy-orange-glow), var(--glass-sheen);
}

.card-header-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pill-feature {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill-blue   { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.pill-orange { background: rgba(255, 159, 67, 0.12); color: var(--zippy-orange); border: 1px solid rgba(255, 159, 67, 0.3); }
.pill-green  { background: rgba(16, 185, 129, 0.12); color: var(--zippy-emerald); border: 1px solid rgba(16, 185, 129, 0.3); }
.pill-gold   { background: rgba(251, 191, 36, 0.12); color: var(--zippy-gold); border: 1px solid rgba(251, 191, 36, 0.3); }

.feature-highlight-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 14px;
    margin: 16px 0 14px;
}

.mini-tag {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--zippy-gold);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.highlight-text {
    font-size: 12.5px !important;
    color: #e2e8f0 !important;
    margin: 0 !important;
    line-height: 1.45;
}

/* --------------------------------------------------------------------------
   9. OPERACIÓN DUAL (MÓVIL VS PC)
   -------------------------------------------------------------------------- */
.dual-control-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 26px;
    width: 100%;
}

.dual-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--glass-sheen);
    transition: var(--card-transition);
}

.dual-box:hover {
    transform: translateY(-6px);
    border-color: var(--zippy-blue);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px var(--zippy-blue-glow), var(--glass-sheen);
}

.dual-box.highlight {
    border-color: rgba(255, 159, 67, 0.35);
    background: linear-gradient(150deg, #151922 0%, #1a1713 100%);
}

.dual-box.highlight:hover {
    border-color: var(--zippy-orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px var(--zippy-orange-glow), var(--glass-sheen);
}

.dual-box h3 {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   10. SINCRONIZACIÓN EN TIEMPO REAL
   -------------------------------------------------------------------------- */
.sync-interactive-container {
    width: 100%;
}

.sync-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 24px;
    width: 100%;
}

.sync-card-node {
    background: linear-gradient(160deg, #131722 0%, #0d0f15 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--glass-sheen);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--card-transition);
}

.sync-card-node:hover {
    transform: translateY(-6px);
    border-color: var(--zippy-blue);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--zippy-blue-glow), var(--glass-sheen);
}

.sync-node-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.node-number {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.sync-card-node h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 8px 0;
}

.sync-card-node p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 16px;
}

.sync-status {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.orange-pulse { background: var(--zippy-orange); box-shadow: 0 0 10px var(--zippy-orange); }
.blue-pulse   { background: var(--zippy-blue);   box-shadow: 0 0 10px var(--zippy-blue); }
.gold-pulse   { background: var(--zippy-gold);   box-shadow: 0 0 10px var(--zippy-gold); }
.green-pulse  { background: var(--zippy-emerald);box-shadow: 0 0 10px var(--zippy-emerald); }

.sync-guarantee-bar {
    margin-top: 28px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0%, rgba(255, 159, 67, 0.08) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    justify-content: space-around;
    gap: 18px;
    flex-wrap: wrap;
    width: 100%;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #e2e8f0;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: var(--zippy-emerald);
    color: #07080a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. BANNER DE AFILIACIÓN UNIVERSAL (FLUIDO FULL-WIDTH)
   -------------------------------------------------------------------------- */
.venta-banner { 
    background: linear-gradient(135deg, #101622 0%, #0d121c 100%); 
    padding: 65px clamp(20px, 4vw, 50px); 
    border-radius: var(--radius-lg); 
    margin: 55px 0; 
    text-align: center; 
    border: 1px solid rgba(59, 130, 246, 0.25); 
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06); 
    position: relative;
    overflow: hidden;
    width: 100%;
}

.venta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.badge-sub { 
    color: var(--zippy-blue); 
    font-weight: 800; 
    letter-spacing: 2.5px; 
    text-transform: uppercase; 
    font-size: 11px; 
    display: block; 
    margin-bottom: 12px; 
}

.venta-banner h2 { 
    font-size: clamp(23px, 3.2vw, 36px); 
    margin: 0 0 16px; 
    line-height: 1.25; 
}

.venta-banner p { 
    font-size: 16px; 
    color: var(--text-muted); 
    max-width: 860px; 
    margin: 0 auto 28px; 
}

.business-types-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 22px;
    width: 100%;
    margin: 30px auto 35px;
    text-align: left;
}

.business-type-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--glass-sheen);
    transition: var(--card-transition);
}

.business-type-box:hover {
    transform: translateY(-6px);
    border-color: var(--zippy-blue);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px var(--zippy-blue-glow), var(--glass-sheen);
}

.business-type-box.highlight-border {
    border-color: rgba(255, 159, 67, 0.35);
    background: linear-gradient(150deg, rgba(255, 159, 67, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.business-type-box.highlight-border:hover {
    border-color: var(--zippy-orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px var(--zippy-orange-glow), var(--glass-sheen);
}

.type-icon {
    font-size: 30px;
    margin-bottom: 8px;
}

.business-type-box h4 {
    color: #ffffff;
    font-size: 16.5px;
    margin: 0 0 6px;
    font-weight: 700;
}

.business-type-box p {
    color: var(--text-muted);
    font-size: 13.5px !important;
    line-height: 1.5;
    margin: 0 !important;
}

.niche-tags-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto 30px;
}

.niche-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--glass-sheen);
    transition: var(--transition-fast);
}

.niche-pill:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--zippy-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.banner-cta { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 12px; 
}

.gift-text { 
    color: var(--zippy-orange); 
    font-weight: 700; 
    font-size: 14px; 
}

/* --------------------------------------------------------------------------
   12. ECOSISTEMA INTEGRAL (MATRIX)
   -------------------------------------------------------------------------- */
.matrix-section { 
    background: linear-gradient(150deg, #13161e 0%, #08090d 100%); 
    padding: 60px clamp(20px, 4vw, 45px); 
    border: 1px solid rgba(251, 191, 36, 0.3); 
    border-radius: var(--radius-lg); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), inset 0 1px 0 rgba(251, 191, 36, 0.15); 
    width: 100%;
}

.matrix-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); 
    gap: 20px; 
    margin-top: 35px; 
    width: 100%;
}

.matrix-item { 
    background: rgba(255, 255, 255, 0.02); 
    padding: 26px 22px; 
    border-radius: 14px; 
    border-top: 2px solid var(--zippy-gold); 
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--glass-sheen);
    transition: var(--card-transition); 
}

.matrix-item:hover { 
    transform: translateY(-6px); 
    background: var(--bg-card-hover);
    border-color: var(--zippy-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px var(--zippy-gold-glow), var(--glass-sheen);
}

.matrix-item b { 
    color: var(--zippy-gold); 
    font-size: 14px; 
    display: block; 
    margin-bottom: 8px; 
}

.matrix-item p { 
    font-size: 12.5px; 
    color: var(--text-muted); 
    margin: 0; 
    line-height: 1.55; 
}

/* --------------------------------------------------------------------------
   13. DASHBOARD DE CONTABILIDAD
   -------------------------------------------------------------------------- */
.accounting-dashboard-mockup {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), var(--glass-sheen);
    width: 100%;
}

.mockup-header {
    background: #0b0c10;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.dots { display: flex; gap: 7px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dots span:nth-child(1) { background: #ef4444; }
.dots span:nth-child(2) { background: #f59e0b; }
.dots span:nth-child(3) { background: #10b981; }

.mockup-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mockup-title { font-size: 12.5px; color: var(--text-muted); font-weight: 600; }

.mockup-body { 
    padding: clamp(20px, 3.5vw, 45px); 
    display: grid; 
    grid-template-columns: 1fr 1.15fr; 
    gap: 35px; 
    align-items: center; 
}

.chart-container {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--card-transition);
}

.chart-container:hover {
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}

.chart-subtitle {
    font-size: 11.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.chart-amount {
    font-size: 25px;
    font-weight: 900;
    color: #ffffff;
    margin: 4px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.growth-text {
    font-size: 11.5px;
    color: var(--zippy-emerald);
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
}

.chart-legend {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-income {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--zippy-blue);
    box-shadow: 0 0 8px var(--zippy-blue);
}

.dot-expense {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--zippy-orange);
    box-shadow: 0 0 8px var(--zippy-orange);
}

.chart-fake-months {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 190px;
    gap: 6px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.bar-group {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 100%;
    position: relative;
}

.bar-group::after {
    content: attr(data-month);
    position: absolute;
    bottom: -22px;
    font-size: 10.5px;
    color: var(--text-dim);
    font-weight: 600;
}

.bar-group.active::after {
    color: var(--zippy-orange);
    font-weight: 800;
}

.bar-income {
    width: 8px;
    background: linear-gradient(to top, #1d4ed8, var(--zippy-blue));
    border-radius: 4px 4px 0 0;
    transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-expense {
    width: 8px;
    background: linear-gradient(to top, #c2410c, var(--zippy-orange));
    border-radius: 4px 4px 0 0;
    transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.85;
}

.bar-group.active .bar-income {
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.6);
    background: linear-gradient(to top, var(--zippy-blue), #93c5fd);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--glass-sheen);
    transition: var(--card-transition);
}

.kpi-card:hover {
    transform: translateY(-4px);
    border-color: var(--zippy-blue);
    background: var(--bg-card-hover);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), var(--glass-sheen);
}

.kpi-label {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.kpi-value {
    font-size: 20px;
    font-weight: 800;
    display: block;
}

.kpi-sub {
    font-size: 11px;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   14. MANUAL DE USUARIO & SOPORTE WHATSAPP
   -------------------------------------------------------------------------- */
.manual-accordion-container {
    width: 100%;
    margin: 0 auto 35px;
}

details { 
    background: var(--bg-card); 
    margin-bottom: 16px; 
    border-radius: var(--radius-md); 
    border: 1px solid var(--border-color); 
    overflow: hidden; 
    box-shadow: var(--glass-sheen);
    transition: var(--card-transition); 
}

details:hover {
    border-color: var(--zippy-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), var(--glass-sheen);
}

details[open] { 
    border-color: rgba(59, 130, 246, 0.4); 
    background: #151821;
}

summary { 
    padding: 20px 24px; 
    font-weight: 700; 
    cursor: pointer; 
    list-style: none; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-size: 16px; 
    color: #ffffff; 
}

summary::-webkit-details-marker { display: none; }

summary::after { 
    content: '+'; 
    color: var(--zippy-orange); 
    font-size: 24px; 
    line-height: 1;
    transition: transform 0.3s ease; 
}

details[open] summary::after { transform: rotate(45deg); }

.content { 
    padding: 16px 24px 24px; 
    border-top: 1px solid var(--border-color); 
    color: var(--text-muted); 
    font-size: 14px;
}

.whatsapp-support-box {
    background: linear-gradient(135deg, #0d1713 0%, #08100d 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-lg);
    padding: 35px clamp(20px, 3.5vw, 40px);
    margin: 45px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(16, 185, 129, 0.15);
    width: 100%;
    transition: var(--card-transition);
}

.whatsapp-support-box:hover {
    transform: translateY(-6px);
    border-color: var(--zippy-emerald);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--zippy-emerald-glow), inset 0 1px 0 rgba(16, 185, 129, 0.2);
}

.support-info h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 8px 0 4px;
    font-weight: 800;
}

.support-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.support-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--zippy-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-whatsapp {
    background: #25d366;
    color: #07080a;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14.5px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* --------------------------------------------------------------------------
   15. PLANES & PRECIOS (TARJETAS HOVER UNIFICADO)
   -------------------------------------------------------------------------- */
.plans-unlock-banner {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #f8fafc;
    padding: 15px 24px;
    border-radius: var(--radius-md);
    margin: 0 auto 35px;
    text-align: center;
    font-size: 13.5px;
    box-shadow: var(--glass-sheen);
    width: 100%;
}

.plans-unlock-banner b { color: var(--zippy-gold); }

.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); 
    gap: 26px; 
    align-items: stretch; 
    width: 100%;
}

.price-card { 
    background: #11141b; 
    color: #ffffff; 
    padding: 45px 30px; 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--border-color);
    text-align: center; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), var(--glass-sheen); 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    transition: var(--card-transition);
}

.price-card:hover { 
    transform: translateY(-6px); 
    border-color: var(--zippy-blue);
    background: #141822;
    box-shadow: 0 20px 45px rgba(0,0,0,0.55), 0 0 30px var(--zippy-blue-glow), var(--glass-sheen);
}

.price-card.popular { 
    background: linear-gradient(180deg, #161c28 0%, #11141b 100%);
    border: 2px solid var(--zippy-blue); 
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.18), var(--glass-sheen);
}

.price-card.popular:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.35), var(--glass-sheen);
}

.price-card.dark-plan:hover {
    border-color: var(--zippy-orange);
    box-shadow: 0 20px 45px rgba(0,0,0,0.55), 0 0 30px var(--zippy-orange-glow), var(--glass-sheen);
}

.popular-badge, .save-badge { 
    position: absolute; 
    top: -13px; 
    left: 50%; 
    transform: translateX(-50%); 
    padding: 5px 16px; 
    border-radius: var(--radius-full); 
    font-size: 10.5px; 
    font-weight: 800; 
    letter-spacing: 1px; 
    white-space: nowrap;
}

.popular-badge { background: var(--zippy-blue); color: #ffffff; box-shadow: 0 4px 15px var(--zippy-blue-glow); }
.save-badge    { background: var(--zippy-orange); color: #07080a; box-shadow: 0 4px 15px var(--zippy-orange-glow); }

.plan-tag { 
    text-transform: uppercase; 
    font-size: 11px; 
    font-weight: 800; 
    color: var(--text-dim); 
    letter-spacing: 1.2px; 
    display: block; 
    margin-bottom: 8px; 
}

.price-card h4 { font-size: 22px; margin: 0 0 8px; font-weight: 800; }
.price { font-size: 44px; font-weight: 900; margin: 10px 0 4px; color: #ffffff; letter-spacing: -1px; }
.price small { font-size: 14px; color: var(--text-dim); font-weight: 500; }
.price-note { color: var(--zippy-emerald); font-weight: 700; font-size: 13px; margin: 0 0 15px; }

.plan-features { 
    text-align: left; 
    list-style: none; 
    padding: 0; 
    font-size: 13.5px; 
    color: #cbd5e1; 
    line-height: 1.8; 
    margin: 15px 0 25px; 
}

.plan-features li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* --------------------------------------------------------------------------
   16. DESCARGAS Y PLATAFORMA PC
   -------------------------------------------------------------------------- */
.downloads-section { 
    padding: 85px 0 60px; 
    background: #050608; 
    border-radius: 36px 36px 0 0; 
    border-top: 1px solid var(--border-color);
    margin-top: 80px; 
    width: 100%;
}

.download-card { text-align: center; }
.emoji-icon { font-size: 45px; display: block; margin-bottom: 14px; }

.web-platforms-box { margin-bottom: 35px; text-align: center; width: 100%; }
.web-platforms-box h3 { color: #ffffff; text-transform: uppercase; letter-spacing: 2px; font-size: 18px; margin-bottom: 25px; }

.platform-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; width: 100%; }

.platform-card { 
    flex: 1; 
    min-width: min(100%, 320px); 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    border-radius: var(--radius-md); 
    padding: 35px 25px; 
    box-shadow: var(--glass-sheen);
    transition: var(--card-transition);
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: var(--zippy-orange);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px var(--zippy-orange-glow), var(--glass-sheen);
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
footer { 
    padding: 45px 0; 
    text-align: center; 
    color: var(--text-dim); 
    border-top: 1px solid var(--border-color); 
    font-size: 13.5px; 
    background: #040405;
    width: 100%;
}

.footer-content { display: flex; flex-direction: column; gap: 8px; align-items: center; }

/* --------------------------------------------------------------------------
   18. ANIMACIONES SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal { 
    opacity: 0; 
    transform: translateY(28px); 
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); 
}

.reveal.visible, .reveal.active { 
    opacity: 1 !important; 
    transform: translateY(0) !important; 
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE / MEDIA QUERIES (COMPUTADOR, TABLET Y MÓVIL)
   -------------------------------------------------------------------------- */

/* Laptops y Pantallas Medianas */
@media (max-width: 1200px) {
    .nav-links { gap: 12px; }
    .nav-links a.nav-item { font-size: 12.5px; }
}

/* Tablets y Dispositivos Móviles */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(10, 12, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a.nav-item {
        font-size: 15px;
        padding: 6px 0;
    }

    .mockup-body {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .price-card.popular:hover {
        transform: translateY(-6px);
    }

    .whatsapp-support-box {
        flex-direction: column;
        text-align: center;
    }

    .support-action, .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Celulares */
@media (max-width: 600px) {
    .hero {
        padding: 130px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .chart-fake-months {
        gap: 3px;
        height: 160px;
    }

    .bar-income, .bar-expense {
        width: 5px;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .sync-guarantee-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}