        .paginas {
            color: #626897;
            font-weight: 1;
        }
        .pagina {
            color: #626897;
            font-weight: 1;
        }

        .botones-flotantes {
            position: fixed;
            bottom: 18px;
            right: 18px;
            display: flex;
            gap: 14px;
            z-index: 10000;
        }

        .btn-whatsapp,
        .chatbot-fab-modern {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 54px;
            height: 54px;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            z-index: 1;
            box-shadow: 0 3.6px 10.8px rgba(0,0,0,0.2);
            font-size: 1.62rem;
            border: none;
            outline: none;
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
            position: static;
        }

        .btn-whatsapp {
            background: #25d366;
            text-decoration: none;
        }
        .btn-whatsapp:hover {
            background: #062240;
            transform: scale(1.07);
            color: #fff;
            text-decoration: none;
        }
        .btn-whatsapp img {
            width: 63%;
            height: 63%;
        }

        .chatbot-fab-modern {
            background: linear-gradient(135deg, #062240 60%, #00c6ff 100%);
            color: #fff;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            box-shadow: 0 4px 16px rgba(33,150,243,0.18);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2em;
            transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
            cursor: pointer;
            position: static;
            outline: none;
            z-index: 999;
        }
        .chatbot-fab-modern:hover {
            background: linear-gradient(135deg, #062240 70%, #00c6ff 100%);
            transform: scale(1.09) rotate(-4deg);
            box-shadow: 0 8px 24px rgba(33,150,243,0.22);
        }
        .chatbot-fab-icon {
            animation: chatbounce 1.2s infinite alternate;
        }
        @keyframes chatbounce {
            0% { transform: translateY(0); }
            100% { transform: translateY(-6px); }
        }

        .chatbot-container-modern {
            position: fixed;
            bottom: 87px;
            right: 24px;
            width: 355px;
            max-width: 94vw;
            height: 450px;
            max-height: 85vh;
            background: linear-gradient(135deg, #062240 80%, #e3f0ff 100%);
            border-radius: 1.3rem;
            box-shadow: 0 8px 32px rgba(0, 51, 153, 0.30);
            display: flex;
            flex-direction: column;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(24px) scale(0.95);
            transition: all 0.33s cubic-bezier(0.4,0,0.2,1);
            overflow: hidden;
        }
        .chatbot-container-modern.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .chatbot-header-modern {
            background: linear-gradient(90deg, #062240 60%, #00c6ff 100%);
            color: #fff;
            padding: 1rem 1.2rem;
            border-top-left-radius: 1.3rem;
            border-top-right-radius: 1.3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.09em;
            letter-spacing: 1px;
            box-shadow: 0 2px 10px rgba(0, 123, 255, 0.07);
        }
        .chatbot-close-modern {
            background: none;
            border: none;
            color: #fff;
            font-size: 1.7rem;
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1;
            padding-left: 12px;
        }
        .chatbot-close-modern:hover {
            color: #d0e7ff;
        }

        .chatbot-messages-modern {
            flex-grow: 1;
            padding: 1.1rem;
            overflow-y: auto;
            scroll-behavior: smooth;
            background: #f4f8fc;
            display: flex;
            flex-direction: column;
        }
        .message-bubble-modern {
            max-width: 78%;
            margin-bottom: 0.7em;
            border-radius: 1.6em;
            padding: 0.8em 1.1em;
            font-size: 1.01em;
            line-height: 1.4;
            word-break: break-word;
            box-shadow: 0 2px 8px rgba(0,123,255,0.07);
        }
        .bot-message-modern {
            background: linear-gradient(90deg, #e3f0ff 80%, #eafffb 100%);
            color: #1a2a3a;
            align-self: flex-start;
            border-bottom-left-radius: 0.4em;
        }
        .user-message-modern {
            background: linear-gradient(90deg, #007bff 60%, #43e97b 100%);
            color: #fff;
            align-self: flex-end;
            border-bottom-right-radius: 0.4em;
            margin-left: auto;
        }

        .chatbot-input-area-modern {
            display: flex;
            align-items: center;
            gap: 0.6em;
            padding: 0.75em 1em;
            border-top: 1.5px solid #e3f0ff;
            background: #f9fafd;
        }
        .chatbot-input-modern {
            flex: 1;
            border: none;
            border-radius: 2em;
            padding: 0.7em 1.1em;
            font-size: 1em;
            background: #e3f0ff;
            outline: none;
            transition: background 0.18s;
        }
        .chatbot-input-modern:focus {
            background: #fff;
            box-shadow: 0 0 0 2px #b6e0ff;
        }
        .chatbot-send-modern {
            background: linear-gradient(135deg, #007bff 60%, #43e97b 100%);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            font-size: 1.14em;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.19s, transform 0.18s;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,123,255,0.08);
        }
        .chatbot-send-modern:hover {
            background: linear-gradient(135deg, #0056b3 70%, #43e97b 100%);
            transform: scale(1.08);
        }

        @media (max-width: 768px) {
            .botones-flotantes {
                right: 0;
                left: 0;
                justify-content: center;
                bottom: 13.5px;
                gap: 10.8px;
            }
            .btn-whatsapp,
            .chatbot-fab-modern {
                width: 49.5px;
                height: 49.5px;
                font-size: 1.35rem;
            }
            .btn-whatsapp img {
                width: 60%;
                height: 60%;
            }
            .chatbot-container-modern {
                width: 98vw;
                max-width: 98vw;
                height: 76vh;
                right: 0.5vw;
                bottom: 70px;
            }
        }

        @media (max-width: 600px) {
            .chatbot-fab-modern {
                width: 49px;
                height: 49px;
                font-size: 1.5em;
            }
            .chatbot-container-modern {
                width: 98vw;
                max-width: 98vw;
                height: 76vh;
                right: 0.5vw;
                bottom: 70px;
            }
        }
