 :root {
            /* Paleta principal - Familia turquesa/cyan */
            --primary-50: #f0fdfd;
            --primary-100: #dcf8f8;
            --primary-200: #b4f0f0;
            --primary-300: #7ee4e4;
            --primary-400: #30cfd0;
            --primary-500: #26b6b7;
            --primary-600: #1d9495;
            --primary-700: #1a7879;
            --primary-800: #1a6061;
            --primary-900: #0c4a6e;
            
            /* Colores neutros */
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            
            /* Colores de estado */
            --success-500: #10b981;
            --error-500: #ef4444;
            --warning-500: #f59e0b;
            --accent-500: #f97316;
            
            /* Sombras profesionales */
            --shadow-sm: 0 1px 2px 0 rgba(48, 207, 208, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(48, 207, 208, 0.1), 0 2px 4px -2px rgba(48, 207, 208, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(48, 207, 208, 0.1), 0 4px 6px -4px rgba(48, 207, 208, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(48, 207, 208, 0.1), 0 8px 10px -6px rgba(48, 207, 208, 0.1);
            
            /* Bordes redondeados */
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
            --border-radius-lg: 16px;
            
            /* Transiciones */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, sans-serif;
            color: var(--gray-800);
            background-color: var(--gray-50);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-900);
        }
        
        .logo-icon {
            color: var(--primary-400);
            font-size: 1.8rem;
        }
        
        .logo span {
            font-weight: 400;
            color: var(--gray-600);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color var(--transition-fast);
        }
        
        .nav-link:hover {
            color: var(--primary-500);
        }
        
        .demo-btn {
            background: var(--primary-400);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: var(--border-radius-md);
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-md);
        }
        
        .demo-btn:hover {
            background-color: var(--primary-500);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Hero Section */
        .hero {
            padding: 8rem 0 5rem;
            text-align: center;
            background-color: white;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }
        
        .hero-highlight {
            color: var(--primary-400);
        }
        
        .hero p {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 900px;
            margin: 0 auto 3rem;
        }
        
        /* Perspectives Section */
        .perspectives {
            padding: 6rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .section-title p {
            color: var(--gray-600);
            font-size: 1.1rem;
        }
        
        .perspectives-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .perspective-card {
            background: white;
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            border-top: 6px solid transparent;
            transition: all var(--transition-normal);
        }
        
        .perspective-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }
        
        .executive-card {
            border-top-color: var(--primary-400);
        }
        
        .manager-card {
            border-top-color: var(--primary-500);
        }
        
        .operator-card {
            border-top-color: var(--primary-600);
        }
        
        .perspective-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-500);
        }
        
        .perspective-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .perspective-card p {
            color: var(--gray-600);
            margin-bottom: 2rem;
        }
        
        .perspective-features {
            list-style: none;
            margin-top: 1.5rem;
        }
        
        .perspective-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--gray-100);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-700);
        }
        
        /* Features Grid */
        .features {
            padding: 6rem 0;
            background-color: var(--gray-50);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-200);
            transition: all var(--transition-normal);
        }
        
        .feature-card:hover {
            border-color: var(--primary-300);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-100);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: var(--primary-500);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .feature-card p {
            color: var(--gray-600);
        }
        
        /* Logs Section */
        .logs-section {
            padding: 6rem 0;
            background-color: white;
        }
        
        .logs-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .logs-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .logs-content p {
            color: var(--gray-600);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .logs-visual {
            background-color: var(--gray-50);
            border-radius: var(--border-radius-lg);
            padding: 2rem;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-md);
        }
        
        .logs-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            color: var(--error-500);
        }
        
        .log-row {
            background-color: white;
            margin-bottom: 1rem;
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid var(--gray-200);
            transition: all var(--transition-fast);
        }
        
        .log-row:hover {
            border-color: var(--primary-300);
            box-shadow: var(--shadow-sm);
        }
        
        .log-time {
            font-weight: 600;
            width: 80px;
            color: var(--gray-700);
        }
        
        .log-details {
            flex: 1;
            margin: 0 1.5rem;
        }
        
        .log-source {
            font-weight: 700;
            color: var(--gray-800);
        }
        
        .log-badge {
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .badge-critical {
            background-color: rgba(239, 68, 68, 0.1);
            color: var(--error-500);
        }
        
        .badge-warning {
            background-color: rgba(245, 158, 11, 0.1);
            color: var(--warning-500);
        }
        
        .view-all-logs {
            text-align: center;
            margin-top: 1.5rem;
            color: var(--primary-500);
            font-weight: 600;
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        
        .view-all-logs:hover {
            color: var(--primary-600);
        }
        
        /* Integrations Section */
        .integrations {
            padding: 6rem 0;
            background-color: var(--gray-50);
        }
        
        .integrations-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .integration-tab {
            padding: 1rem 2rem;
            border-radius: var(--border-radius-md);
            background-color: white;
            border: 1px solid var(--gray-200);
            cursor: pointer;
            font-weight: 600;
            transition: all var(--transition-fast);
        }
        
        .integration-tab:hover {
            border-color: var(--primary-300);
            color: var(--primary-500);
        }
        
        .integration-tab.active {
            background-color: var(--primary-400);
            color: white;
            border-color: var(--primary-400);
        }
        
        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .integration-card {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            text-align: center;
            border: 1px solid var(--gray-200);
            transition: all var(--transition-normal);
        }
        
        .integration-card:hover {
            border-color: var(--primary-300);
            box-shadow: var(--shadow-lg);
        }
        
        .integration-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-100);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: var(--primary-500);
        }
        
        .integration-card h4 {
            margin-bottom: 1rem;
            color: var(--primary-700);
        }
        
        .integration-card p {
            color: var(--gray-600);
            font-size: 0.95rem;
        }
        
        /* Vendors Section */
        .vendors {
            padding: 6rem 0;
            background-color: white;
        }
        
        .vendors-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .vendors-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .vendors-content p {
            color: var(--gray-600);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .vendors-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 2rem;
        }
        
        .vendor-tag {
            padding: 0.5rem 1.2rem;
            background-color: var(--gray-100);
            border: 1px solid var(--gray-300);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gray-700);
        }
        
        .vendors-visual {
            background: linear-gradient(135deg, var(--primary-400), var(--primary-700));
            border-radius: var(--border-radius-lg);
            padding: 2rem;
            color: white;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        
        .vendors-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.3;
            z-index: 0;
        }
        
        .vendors-visual h3 {
            position: relative;
            z-index: 1;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .vendors-visual p {
            position: relative;
            z-index: 1;
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary-400), var(--primary-700));
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        
        .cta-primary {
            background-color: white;
            color: var(--primary-700);
        }
        
        .cta-secondary {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }
        
        /* Footer */
        footer {
            padding: 4rem 0;
            background-color: var(--gray-900);
            color: white;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
        }
        
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        
        .footer-link {
            color: var(--gray-400);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        
        .footer-link:hover {
            color: var(--primary-300);
        }
        
        .footer-copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-800);
            text-align: center;
            color: var(--gray-500);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .perspectives-grid,
            .features-grid,
            .integrations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .logs-container,
            .vendors-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .perspectives-grid,
            .features-grid,
            .integrations-grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
        }





        /* Estilos para las opciones mejoradas */

/* Opción 1 - Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-400);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

/* Opción 2 - Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(48, 207, 208, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-600);
    font-weight: 600;
}

.feature-highlight i {
    color: var(--primary-400);
}

/* Opción 3 - Recomendada */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(48, 207, 208, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-600);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--gray-700);
    max-width: 800px;
    margin: 2rem auto 3rem;
    line-height: 1.7;
}

.hero-value-prop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-500);
}

.value-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-700);
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.hero-action {
    text-align: center;
    margin-top: 3rem;
}

.primary-action {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 25px rgba(48, 207, 208, 0.3);
}

.primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(48, 207, 208, 0.4);
}

.action-note {
    margin-top: 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Animación de pulso */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-stats,
    .hero-features,
    .hero-value-prop {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
}