/**
 * 2025 Mario Machado. Todos os direitos reservados
 */

.tawk-chat-circle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #03a84e; 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tawk-chat-circle:hover {
    background-color: #039146; 
    transform: translateY(-5px);
}

.tawk-chat-circle i {
    font-size: 1.5rem;
}

/* para mobile */
@media (max-width: 576px) {
    .tawk-chat-circle {
        width: 45px;
        height: 45px;
        right: 1.5rem;
        bottom: 1.5rem;
    }
} 