
/* AGREGAR ESTAS REGLAS AL FINAL DE chatbot.css */

/* Ajustar posición del botón del chatbot */
.chatbot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #12B3E3 0%, #0393D5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(18, 179, 227, 0.4),
        0 0 0 0 rgba(18, 179, 227, 0.7);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
    border: 3px solid #FFFFFF;
}

/* Ajustar posición del círculo flotante (flecha) */
.floating-circle {
    position: fixed;
    bottom: 30px;
    right: 110px; /* Movido a la izquierda del chatbot */
    width: 65px;
    height: 65px;
    z-index: 1000;
}

/* RESPONSIVE: Cuando la pantalla es pequeña, colocarlos uno arriba del otro */
@media (max-width: 768px) {
    .chatbot-button {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .floating-circle {
        bottom: 95px; /* Arriba del chatbot */
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .chatbot-window {
        width: calc(100vw - 20px);
        height: calc(100vh - 150px);
        right: 10px;
        bottom: 100px;
    }
}