 :root {
            --primary: #00f5ff;
            --secondary: #9d00ff;
            --accent: #ff00d4;
            --success: #00ff88;
            --dark: #0a0a14;
            --darker: #05050a;
            --text: #ffffff;
            --text-secondary: #b8c2e0;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --neon-glow: 0 0 20px rgba(0, 245, 255, 0.6);
        }

        .robot-icon {
            width: 65px;
            height: 50px;
            background-image: url('../img/profiles/devcflores.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s;
        }

        .robot-icon-chat {
            width: 150px;
            height: 150px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s;
        }
        /* Chatbot Container */
        .chatbot-container {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 380px;
            height: 600px;
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 2px solid rgba(0, 245, 255, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--neon-glow);
            z-index: 9999;
            display: none;
            flex-direction: column;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition);
        }

        .chatbot-container.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
        }

        /* Chatbot Header */
        .chatbot-header {
            padding: 20px;
            background: linear-gradient(90deg, rgba(0, 245, 255, 0.1), rgba(157, 0, 255, 0.1));
            border-bottom: 1px solid rgba(0, 245, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-title {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chatbot-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            animation: avatarGlow 2s infinite alternate;
        }

        @keyframes avatarGlow {
            0% { box-shadow: 0 0 15px var(--primary); }
            100% { box-shadow: 0 0 25px var(--secondary); }
        }

        .chatbot-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 18px;
            color: var(--primary);
        }

        .chatbot-status {
            font-size: 12px;
            color: var(--success);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .chatbot-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: statusPulse 2s infinite;
        }

        @keyframes statusPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .chatbot-close {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .chatbot-close:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
        }

        /* Chatbot Messages */
        .chatbot-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) transparent;
        }

        .chatbot-messages::-webkit-scrollbar {
            width: 5px;
        }

        .chatbot-messages::-webkit-scrollbar-track {
            background: transparent;
        }

        .chatbot-messages::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .message {
            max-width: 80%;
            padding: 15px;
            border-radius: 18px;
            line-height: 1.4;
            position: relative;
            animation: messageSlide 0.3s ease-out;
        }

        @keyframes messageSlide {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bot-message {
            background: rgba(0, 245, 255, 0.1);
            border: 1px solid rgba(0, 245, 255, 0.2);
            border-radius: 18px 18px 18px 4px;
            align-self: flex-start;
            color: var(--text);
        }

        .user-message {
            background: linear-gradient(90deg, rgba(157, 0, 255, 0.2), rgba(0, 245, 255, 0.2));
            border: 1px solid rgba(157, 0, 255, 0.3);
            border-radius: 18px 18px 4px 18px;
            align-self: flex-end;
            color: var(--text);
        }

        /* Steps y Lists en mensajes */
        .message .steps,
        .message .search-steps,
        .message .history-steps {
            margin-top: 10px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(0, 245, 255, 0.1);
        }

        .message ul {
            list-style: none;
            padding-left: 0;
        }

        .message li {
            margin-bottom: 8px;
            padding-left: 24px;
            position: relative;
        }

        .message li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }

        .message strong {
            color: var(--primary);
            font-weight: 600;
        }

        /* Typing Indicator */
        .typing-indicator {
            display: flex;
            gap: 6px;
            padding: 15px;
            align-self: flex-start;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: typingBounce 1.4s infinite ease-in-out;
        }

        .typing-dot:nth-child(1) { animation-delay: -0.32s; }
        .typing-dot:nth-child(2) { animation-delay: -0.16s; }

        @keyframes typingBounce {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1); }
        }

        /* Quick Suggestions */
        .chatbot-suggestions {
            padding: 15px 20px;
            border-top: 1px solid rgba(0, 245, 255, 0.2);
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            max-height: 120px;
            overflow-y: auto;
        }

        .chatbot-suggestion {
            background: rgba(0, 245, 255, 0.1);
            border: 1px solid rgba(0, 245, 255, 0.3);
            color: var(--primary);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .chatbot-suggestion:hover {
            background: rgba(0, 245, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Input Area */
        .chatbot-input-area {
            padding: 20px;
            border-top: 1px solid rgba(0, 245, 255, 0.2);
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            gap: 10px;
        }

        .chatbot-input {
            flex: 1;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 245, 255, 0.2);
            border-radius: 25px;
            color: var(--text);
            font-family: inherit;
            font-size: 14px;
            transition: var(--transition);
        }

        .chatbot-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
        }

        .chatbot-input::placeholder {
            color: var(--text-secondary);
        }

        .chatbot-send {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            color: var(--dark);
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chatbot-send:hover {
            transform: scale(1.1);
            box-shadow: var(--neon-glow);
        }

        /* Chatbot Trigger Button */
        .chatbot-trigger {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--dark);
            box-shadow: var(--neon-glow);
            z-index: 9998;
            transition: var(--transition);
            animation: floatButton 3s ease-in-out infinite;
        }

        @keyframes floatButton {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .chatbot-trigger:hover {
            transform: scale(1.1) rotate(10deg);
        }

        /* Welcome Message */
        .welcome-message {
            text-align: center;
            padding: 20px;
            background: linear-gradient(90deg, rgba(0, 245, 255, 0.1), rgba(157, 0, 255, 0.1));
            border-radius: 15px;
            margin: 10px 20px;
            border: 1px solid rgba(0, 245, 255, 0.2);
        }

        .welcome-message h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-family: 'Orbitron', sans-serif;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .chatbot-container {
                width: 95%;
                height: 70vh;
                right: 2.5%;
                bottom: 80px;
            }
            
            .chatbot-trigger {
                width: 50px;
                height: 50px;
                font-size: 20px;
                bottom: 20px;
                right: 20px;
            }
        }