       /* ====================================================================== */
        /* ESTILOS OVH - RÉPLICA EXATA */
        /* ====================================================================== */

        :root {
            --ovh-blue: #003087;
            --ovh-blue-light: #0053b3;
            --ovh-gray-dark: #1d1d1d;
            --ovh-gray-medium: #4d4d4d;
            --ovh-gray-light: #f2f2f2;
            --ovh-border: #ddd;
            --ovh-green: #00a88f;
            --ovh-orange: #ff7900;
        }

        

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            color: var(--ovh-gray-dark);
            background-color: white;
            line-height: 1.4;
            font-size: 14px;
        }

        .ovh-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* ====================================================================== */
        /* HEADER E TÍTULO */
        /* ====================================================================== */

        .page-header {
            background: white;
            padding: 30px 0 20px;
            border-bottom: 1px solid var(--ovh-border);
        }

        .page-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--ovh-blue);
            margin-bottom: 10px;
        }

        .page-subtitle {
            font-size: 16px;
            color: var(--ovh-gray-medium);
            margin-bottom: 20px;
        }

        /* ====================================================================== */
        /* FILTROS COMPACTOS OVH */
        /* ====================================================================== */

        .ovh-filters {
            background: white;
            border: 1px solid var(--ovh-border);
            border-radius: 3px;
            margin-bottom: 20px;
        }

        .filters-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            border-bottom: 1px solid var(--ovh-border);
        }

        .filters-title {
            font-weight: 600;
            color: var(--ovh-gray-dark);
        }

        .filters-count {
            background: var(--ovh-blue);
            color: white;
            border-radius: 10px;
            padding: 2px 8px;
            font-size: 12px;
            margin-left: 8px;
        }

        .filters-toggle {
            background: none;
            border: none;
            color: var(--ovh-blue);
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .filters-content {
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            border-bottom: 1px solid var(--ovh-border);
        }

        .filter-group {
            margin-bottom: 0;
        }

        .filter-label {
            display: block;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--ovh-gray-dark);
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .filter-option input {
            margin: 0;
        }

        .filter-option label {
            cursor: pointer;
            font-size: 13px;
        }

        .active-filters {
            padding: 12px 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            background: var(--ovh-gray-light);
        }

        .active-filter {
            background: white;
            border: 1px solid var(--ovh-border);
            border-radius: 3px;
            padding: 4px 8px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .active-filter button {
            background: none;
            border: none;
            color: var(--ovh-gray-medium);
            cursor: pointer;
            font-size: 12px;
        }

        /* ====================================================================== */
        /* TABELA DE SERVIDORES - ESTILO OVH COMPACTO */
        /* ====================================================================== */

        .servers-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border: 1px solid var(--ovh-border);
            border-radius: 3px;
            margin-bottom: 30px;
        }

        .servers-table th {
            background: var(--ovh-gray-light);
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 13px;
            color: var(--ovh-gray-dark);
            border-bottom: 1px solid var(--ovh-border);
        }

        .servers-table td {
            padding: 15px;
            border-bottom: 1px solid var(--ovh-border);
            vertical-align: top;
        }

        .servers-table tr:last-child td {
            border-bottom: none;
        }

        /* Coluna SERVIDOR */
        .server-name {
            font-weight: 600;
            color: var(--ovh-blue);
            margin-bottom: 5px;
        }

        .server-specs {
            font-size: 12px;
            color: var(--ovh-gray-medium);
            line-height: 1.4;
        }

        .server-specs strong {
            color: var(--ovh-gray-dark);
        }

        /* Coluna PROCESSADOR */
        .cpu-info {
            font-size: 13px;
        }

        /* Coluna MEMÓRIA */
        .ram-info {
            font-size: 13px;
        }

        /* Coluna ARMAZENAMENTO */
        .storage-info {
            font-size: 13px;
        }

        /* Coluna GPU */
        .gpu-info {
            font-size: 13px;
        }

        /* Coluna TRÁFEGO */
        .traffic-info {
            font-size: 13px;
        }

        /* Coluna LOCALIZAÇÃO */
        .location-select {
            position: relative;
            display: inline-block;
        }

        .location-btn {
            background: white;
            border: 1px solid var(--ovh-border);
            border-radius: 3px;
            padding: 6px 10px;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            min-width: 120px;
        }

        .location-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border: 1px solid var(--ovh-border);
            border-radius: 3px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            z-index: 10;
            display: none;
        }

        .location-dropdown.show {
            display: block;
        }

        .location-option {
            padding: 8px 10px;
            cursor: pointer;
            font-size: 13px;
            border-bottom: 1px solid var(--ovh-gray-light);
        }

        .location-option:last-child {
            border-bottom: none;
        }

        .location-option:hover {
            background: var(--ovh-gray-light);
        }

        .location-option.active {
            background: var(--ovh-blue);
            color: white;
        }

        /* Coluna PREÇO */
        .price-info {
            text-align: center;
        }

        .price-amount {
            font-size: 18px;
            font-weight: 700;
            color: var(--ovh-blue);
        }

        .price-period {
            font-size: 12px;
            color: var(--ovh-gray-medium);
        }

        /* Coluna AÇÃO */
        .action-cell {
            text-align: center;
        }

        .btn-order {
            background: var(--ovh-blue);
            color: white;
            border: none;
            border-radius: 3px;
            padding: 8px 15px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-order:hover {
            background: var(--ovh-blue-light);
        }

        /* ====================================================================== */
        /* VERSÃO MOBILE - CARDS COMPACTOS */
        /* ====================================================================== */

        .servers-cards {
            display: none;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .server-card {
            background: white;
            border: 1px solid var(--ovh-border);
            border-radius: 3px;
            padding: 15px;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--ovh-gray-light);
        }

        .card-name {
            font-weight: 600;
            color: var(--ovh-blue);
            font-size: 16px;
        }

        .card-price {
            text-align: right;
        }

        .card-price-amount {
            font-size: 18px;
            font-weight: 700;
            color: var(--ovh-blue);
        }

        .card-price-period {
            font-size: 12px;
            color: var(--ovh-gray-medium);
        }

        .card-specs {
            margin-bottom: 15px;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 5px 0;
            border-bottom: 1px solid var(--ovh-gray-light);
            font-size: 13px;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-label {
            color: var(--ovh-gray-medium);
        }

        .spec-value {
            font-weight: 600;
        }

        .card-location {
            margin-bottom: 15px;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* ====================================================================== */
        /* GRUPOS DE PROCESSADOR */
        /* ====================================================================== */

        .cpu-group {
            margin-bottom: 30px;
        }

        .cpu-group-header {
            background: var(--ovh-gray-light);
            padding: 15px 20px;
            border: 1px solid var(--ovh-border);
            border-bottom: none;
            border-radius: 3px 3px 0 0;
        }

        .cpu-group-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--ovh-blue);
            margin: 0;
        }

        .cpu-group-description {
            font-size: 14px;
            color: var(--ovh-gray-medium);
            margin: 5px 0 0 0;
        }

        /* ====================================================================== */
        /* RESPONSIVIDADE */
        /* ====================================================================== */

        @media (max-width: 992px) {
            .servers-table {
                display: none;
            }
            
            .servers-cards {
                display: grid;
            }
            
            .filters-content {
                grid-template-columns: 1fr;
            }

            .cpu-group-header {
                padding: 12px 15px;
            }

            .cpu-group-title {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 24px;
            }
            
            .page-subtitle {
                font-size: 14px;
            }
            
            .filters-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .filters-toggle {
                align-self: flex-end;
            }
        }

        @media (max-width: 480px) {
            .ovh-container {
                padding: 0 10px;
            }
            
            .page-header {
                padding: 20px 0 15px;
            }
            
            .server-card {
                padding: 12px;
            }
            
            .card-footer {
                flex-direction: column;
                gap: 10px;
                align-items: stretch;
            }
            
            .btn-order {
                width: 80%;
                text-align: center;
            }
        }

        /* ====================================================================== */
        /* ESTADOS DE CARREGAMENTO E VAZIO */
        /* ====================================================================== */

        .loading-state, .empty-state {
            text-align: center;
            padding: 40px 20px;
            background: white;
            border: 1px solid var(--ovh-border);
            border-radius: 3px;
        }

        .loading-spinner {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 3px solid var(--ovh-gray-light);
            border-radius: 50%;
            border-top-color: var(--ovh-blue);
            animation: spin 1s ease-in-out infinite;
            margin-bottom: 15px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .empty-icon {
            font-size: 40px;
            color: var(--ovh-gray-light);
            margin-bottom: 15px;
        }
		
		/* Comparador de Produtos - Design Compacto e Moderno */
.comparator-section {
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    overflow: hidden;
}

.comparator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-color);
}

.comparator-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.comparator-title i {
    color: #ff6b35;
}

.comparator-badge {
    background: #ff6b35;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.comparator-controls {
    display: flex;
    gap: 8px;
}

.btn-compare-clear {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.btn-compare-clear:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

/* Modal de Comparação */
.comparison-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.comparison-modal.active {
    opacity: 1;
    visibility: visible;
}

.comparison-modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.comparison-modal.active .comparison-modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #ff6b35, #ff8e35);
    color: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 0;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
}

.modal-footer {
    padding: 16px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.btn-modal-close {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.btn-modal-close:hover {
    background: #5a6268;
}

/* Grade de comparação */
.comparison-grid {
    padding: 0;
}

.comparison-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 20px;
    font-style: italic;
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 0;
}

.comparison-row.comparison-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 2px solid #dee2e6;
}

.comparison-label {
    padding: 16px 20px;
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    border-right: 1px solid #dee2e6;
    font-size: 0.9rem;
}

.comparison-row.comparison-header .comparison-label {
    background: transparent;
    color: #495057;
    font-weight: 700;
}

.comparison-product {
    padding: 20px;
    background: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #dee2e6;
    transition: background 0.2s ease;
}

.comparison-product:hover {
    background: #f8f9fa;
}

.comparison-product:last-child {
    border-right: none;
}

.product-compact-name {
    font-weight: 700;
    font-size: 1rem;
    color: #212529;
    line-height: 1.3;
}

.product-compact-price {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-order-compact {
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    min-width: 120px;
}

.btn-order-compact:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.comparison-value {
    padding: 16px 20px;
    background: white;
    text-align: center;
    font-size: 0.9rem;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #dee2e6;
    line-height: 1.4;
}

.comparison-value:last-child {
    border-right: none;
}

.comparison-row:nth-child(even) .comparison-value {
    background: #f8f9fa;
}

.comparison-row:nth-child(even) .comparison-label {
    background: #f1f3f4;
}

/* Botões de comparação nos produtos */
.compare-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.compare-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.compare-btn.comparing {
    background: #28a745;
}

.compare-btn.comparing:hover {
    background: #218838;
}

.compare-btn-mobile {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    min-width: 36px;
}

.compare-btn-mobile:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.compare-btn-mobile.comparing {
    background: #28a745;
}

.compare-btn-mobile.comparing:hover {
    background: #218838;
}

.card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.card-actions .btn-order {
    flex: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    .comparison-modal {
        padding: 10px;
    }
    
    .comparison-modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        max-height: calc(95vh - 120px);
    }
    
    .comparison-row {
        grid-template-columns: 140px 1fr 1fr;
    }
    
    .comparison-label,
    .comparison-value,
    .comparison-product {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .product-compact-name {
        font-size: 0.9rem;
    }
    
    .product-compact-price {
        font-size: 1rem;
    }
    
    .btn-order-compact {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .comparison-row {
        grid-template-columns: 120px 1fr 1fr;
    }
    
    .comparison-label,
    .comparison-value,
    .comparison-product {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .product-compact-name {
        font-size: 0.85rem;
    }
    
    .product-compact-price {
        font-size: 0.9rem;
    }
    
    .btn-order-compact {
        padding: 5px 10px;
        font-size: 0.75rem;
        min-width: 90px;
    }
    
    .modal-header {
        padding: 12px 16px;
    }
    
    .modal-header h3 {
        font-size: 1rem;
    }
}

/* Animações */
@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.comparison-modal.active .comparison-modal-content {
    animation: modalAppear 0.3s ease;
}
		
		