/* Evolution Chat Styles */
#fwt-evolution-chat {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

#fwt-open-chat {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 20px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

#fwt-open-chat:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
}

#fwt-chat-pulse {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #25D366;
    border-radius: 50%;
    animation: fwt-pulse 2s infinite;
}

@keyframes fwt-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

#fwt-chat-modal {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

#fwt-evolution-form input,
#fwt-evolution-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

#fwt-evolution-form input:focus,
#fwt-evolution-form textarea:focus {
    outline: none;
    border-color: #25D366 !important;
}

#fwt-evolution-submit {
    width: 100%;
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

#fwt-evolution-submit:hover {
    background: #128C7E !important;
}

#fwt-evolution-submit:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
}

#fwt-success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

#fwt-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    border: 1px solid #f5c6cb;
}

/* Responsivo */
@media (max-width: 768px) {
    #fwt-evolution-chat {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    #fwt-chat-modal {
        width: 90vw !important;
        right: -10px !important;
    }
    
    #fwt-open-chat {
        padding: 12px 16px !important;
        font-size: 13px !important;
    }
    
    #fwt-open-chat svg {
        width: 20px;
        height: 20px;
    }
}
