 /* ============================================
           VERSÃO COMPACTA - 2X MENOR EM ALTURA
           ============================================ */
        
        .premium-hero {
            background: linear-gradient(165deg, #e8f2ff 0%, #f0f7ff 50%, #e8f2ff 100%);
            border-radius: 20px;
            padding: 25px 20px;
            margin: 20px auto;
            max-width: 1400px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(59, 130, 246, 0.3);
            box-shadow: 
                0 0 0 1px rgba(59, 130, 246, 0.2),
                0 15px 30px -8px rgba(59, 130, 246, 0.15);
        }

        .premium-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(59, 130, 246, 0.12) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.12) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.5;
            z-index: 0;
        }

        .premium-hero::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
            animation: pulseGlowGold 4s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes pulseGlowGold {
            0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
        }

        .premium-header {
            text-align: center;
            position: relative;
            z-index: 2;
            margin-bottom: 20px;
        }

        .premium-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
            border: 1px solid rgba(251, 191, 36, 0.4);
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 700;
            color: #f59e0b;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 10px;
        }

        .premium-badge::before {
            content: '⚡';
            font-size: 12px;
        }

        .premium-title {
            color: #2b68cb;
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .premium-subtitle {
            color: #262626;
            font-size: 0.8rem;
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.85;
            line-height: 1.5;
        }

        .premium-visual-container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            padding: 20px 0;
        }

        .vs-label {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            font-size: 16px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 0 0 3px #e8f2ff,
                0 0 15px rgba(239, 68, 68, 0.4);
            z-index: 10;
        }

        .comparison-card {
            background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
            border: 1px solid rgba(59, 130, 246, 0.25);
            border-radius: 16px;
            padding: 20px 18px 18px;
            width: 100%;
            max-width: 380px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            box-shadow: 0 3px 8px rgba(59, 130, 246, 0.08);
        }

        .comparison-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            transition: all 0.5s ease;
        }

        #kvmCard {
            opacity: 0.9;
        }

        #kvmCard::before {
            background: linear-gradient(90deg, #6b7280, #9ca3af);
        }

        #kvmCard.overload {
            border-color: rgba(239, 68, 68, 0.5);
            background: linear-gradient(180deg, #fff5f5 0%, #ffe8e8 100%);
        }

        #kvmCard.overload::before {
            background: linear-gradient(90deg, #ef4444, #dc2626);
            height: 4px;
            animation: pulseRed 1s ease-in-out infinite;
        }

        @keyframes pulseRed {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        #premiumCard {
            transform: scale(1.02);
            border: 2px solid rgba(251, 191, 36, 0.4);
        }

        #premiumCard::before {
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            height: 4px;
        }

        #premiumCard::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.08), transparent 60%);
            pointer-events: none;
            animation: pulseGoldCard 3s ease-in-out infinite;
        }

        @keyframes pulseGoldCard {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .card-header {
            margin-bottom: 12px;
        }

        .card-label {
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #6b7280;
            margin-bottom: 5px;
        }

        #premiumCard .card-label {
            color: #f59e0b;
        }

        .card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .card-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #37d397;
            animation: pulseDot 2s ease-in-out infinite;
        }

        #kvmCard .status-dot {
            background: #ef4444;
        }

        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        .status-label {
            color: #475569;
            font-weight: 600;
        }

        .water-visual {
            margin: 14px 0 12px;
            min-height: 160px;
            position: relative;
        }

        .server-tank {
            position: relative;
            width: 100%;
            max-width: 160px;
            margin: 0 auto 18px;
        }

        .main-tank {
            width: 100%;
            height: 70px;
            border: 2px solid #64748b;
            border-radius: 6px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .water-level {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
            transition: height 0.8s ease-out;
            border-top: 2px solid #1e40af;
        }

        #kvmCard .water-level {
            background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
            border-top-color: #991b1b;
        }

        .tank-label {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.65rem;
            font-weight: 700;
            color: #1e293b;
            z-index: 2;
            text-align: center;
            white-space: nowrap;
        }

        .premium-server-container {
            max-width: 180px;
            margin: 0 auto 18px;
        }

        .premium-main-server {
            width: 100%;
            border: 2px solid #fbbf24;
            border-radius: 10px;
            padding: 6px;
            background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
            box-shadow: 0 3px 8px rgba(251, 191, 36, 0.3);
            position: relative;
        }

        .premium-main-server::before {
            content: 'Servidor Premium';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: white;
            font-size: 7px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .isolated-resources-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 5px;
        }

        .isolated-resource-box {
            width: 100%;
            height: 38px;
            border: 2px solid rgba(251, 191, 36, 0.6);
            border-radius: 5px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 243, 199, 0.7) 100%);
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
        }

        .isolated-resource-box::before {
            content: 'ISOLADO';
            position: absolute;
            top: 1px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 6px;
            font-weight: 700;
            color: rgba(251, 191, 36, 0.7);
            letter-spacing: 0.3px;
        }

        .isolated-water-level {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 85%;
            background: linear-gradient(180deg, rgba(251, 191, 36, 0.5) 0%, rgba(245, 158, 11, 0.6) 100%);
            border-top: 1px solid #d97706;
            transition: height 0.8s ease-out;
        }

        .clients-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 8px;
            padding: 0 8px;
        }

        .client {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: linear-gradient(135deg, #64748b, #475569);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 13px;
            position: relative;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            animation: clientPulse 2s ease-in-out infinite;
            overflow: hidden;
        }

        .client-water {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg, rgba(59, 130, 246, 0.6) 0%, rgba(37, 99, 235, 0.7) 100%);
            transition: height 0.8s ease-out;
            z-index: 0;
            border-top: 1px solid rgba(30, 64, 175, 0.5);
        }

        .client i {
            position: relative;
            z-index: 1;
        }

        @keyframes clientPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .client::before {
            content: '';
            position: absolute;
            top: -22px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 22px;
            background: linear-gradient(180deg, rgba(100, 116, 139, 0.6) 0%, rgba(100, 116, 139, 0.8) 100%);
            z-index: -1;
            border-radius: 2px;
        }

        #premiumCard .client {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            box-shadow: 0 2px 6px rgba(251, 191, 36, 0.3);
        }

        #premiumCard .client-water {
            background: linear-gradient(180deg, rgba(251, 191, 36, 0.6) 0%, rgba(245, 158, 11, 0.7) 100%);
            border-top-color: rgba(217, 119, 6, 0.5);
        }

        #premiumCard .client::before {
            background: linear-gradient(180deg, rgba(251, 191, 36, 0.6) 0%, rgba(251, 191, 36, 0.8) 100%);
        }

        .client.vampire {
            animation: vampirePulse 0.5s ease-in-out infinite;
            box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
            border: 2px solid #ef4444;
        }

        @keyframes vampirePulse {
            0%, 100% { transform: scale(1.1); }
            50% { transform: scale(1.15); }
        }

        .client.vampire .client-water {
            height: 95% !important;
            background: linear-gradient(180deg, rgba(239, 68, 68, 0.8) 0%, rgba(220, 38, 38, 0.9) 100%);
            border-top-color: #991b1b;
        }

        .client.empty .client-water {
            height: 5% !important;
            opacity: 0.3;
        }

        .client.overloaded {
            animation: clientShake 0.3s ease-in-out infinite;
        }

        @keyframes clientShake {
            0%, 100% { transform: translateX(0) rotate(0deg); }
            25% { transform: translateX(-2px) rotate(-2deg); }
            75% { transform: translateX(2px) rotate(2deg); }
        }

        .specs-bar {
            margin-top: 12px;
            padding-top: 10px;
            border-top: 1px solid rgba(59, 130, 246, 0.15);
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }

        .spec-label {
            font-size: 0.75rem;
            color: #64748b;
            font-weight: 600;
        }

        .spec-value {
            font-size: 0.75rem;
            color: #1e293b;
            font-weight: 700;
        }

        .premium-footer {
            position: relative;
            z-index: 2;
            margin-top: 25px;
            text-align: center;
        }

        .premium-features {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .premium-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #1e293b;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .premium-feature i {
            color: #fbbf24;
            font-size: 14px;
        }

        @media (max-width: 968px) {
            .premium-visual-container {
                flex-direction: column;
                gap: 30px;
            }

            .vs-label {
                top: 50%;
                left: 50%;
            }

            #premiumCard {
                transform: scale(1);
                order: -1;
            }

            .comparison-card {
                max-width: 100%;
            }
        }

        @media (max-width: 640px) {
            .premium-hero {
                padding: 20px 15px;
            }

            .premium-title {
                font-size: 1rem;
            }

            .premium-subtitle {
                font-size: 0.75rem;
            }

            .comparison-card {
                padding: 16px 14px;
            }

            .vs-label {
                width: 38px;
                height: 38px;
                font-size: 13px;
            }

            .premium-features {
                gap: 15px;
            }

            .premium-feature {
                font-size: 0.7rem;
            }
        }