.new-donut-widget {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 25px;
            margin: 20px;
            max-width: 500px;
        }

        .new-donut-title {
            text-align: center;
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .new-donut-title i {
            color: #007bff;
            font-size: 22px;
        }

        .new-donut-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .new-bar-item {
            position: relative;
            height: 35px;
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #e9ecef;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .new-bar-fill {
            height: 100%;
            width: 0%;
            border-radius: 6px;
            transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding-left: 12px;
            box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.1);
        }

        .new-bar-label {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            z-index: 10;
            pointer-events: none;
        }

        .new-bar-percentage {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 13px;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            z-index: 10;
            pointer-events: none;
        }

        /* Cores específicas para cada bebida */
        .new-bar-cerveja .new-bar-fill {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8A50 50%, #FFA366 100%);
        }

        .new-bar-vodka .new-bar-fill {
            background: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 50%, #38BDF8 100%);
        }

        .new-bar-drinks .new-bar-fill {
            background: linear-gradient(135deg, #A855F7 0%, #C084FC 50%, #DDD6FE 100%);
        }

        .new-bar-whisky .new-bar-fill {
            background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #FDE68A 100%);
        }

        .new-bar-rum .new-bar-fill {
            background: linear-gradient(135deg, #10B981 0%, #34D399 50%, #6EE7B7 100%);
        }

        /* Efeitos hover */
        .new-bar-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .new-bar-item:hover .new-bar-fill {
            filter: brightness(1.1);
        }

        /* Animação de entrada */
        .new-bar-item {
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.6s ease;
        }

        .new-bar-item.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .new-donut-widget {
                margin: 10px;
                padding: 20px;
            }

            .new-bar-item {
                height: 30px;
            }

            .new-bar-label, .new-bar-percentage {
                font-size: 12px;
            }
        }