﻿
/* BOT FLOTANTE */
.bot-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0072b8, #004d8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9998;
    transition: transform 0.3s ease;
}

.bot-float:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #0088e0, #0066b3);
}

.bot-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 580px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

    .bot-panel iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* Responsive para móviles */
@media (max-width: 768px) {
    .bot-panel {
        width: 300px;
        height: 500px;
        right: 15px;
        bottom: 80px;
    }

    .bot-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}


