/* ================================================
   Bot Assistant Styles - Master PDV & Delivery
   ================================================ */

.bot-widget-container {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.bot-launcher {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #DC2626;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.bot-launcher:hover { transform: scale(1.1); }

/* ✅ ACESSIBILIDADE: Ajuste mobile para não cobrir botões do PDV */
@media (max-width: 768px) {
    .bot-widget-container {
        bottom: 5rem; 
        right: 0.625rem;
    }
    
    .bot-launcher {
        width: 3rem;
        height: 3rem;
    }
}
