/* ===== VARIABLES ===== */
        :root {
            --primary: #0900b9;
            --primary-light: #3a72f6;
            --accent: #3a72f6;
            --dark: #1a1a2e;
            --gray-100: #f8f9fc;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-400: #ced4da;
            --gray-500: #adb5bd;
            --gray-600: #6c757d;
            --gray-700: #495057;
            --gray-800: #343a40;
        }

        body {
            background: var(--gray-100);
            overflow-x: hidden;
        }

        /* ===== HERO 100vh ===== */
        .proveedores-hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            background: linear-gradient(145deg, #0900b9 0%, #1a1a4e 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            width: 100%;
            color: white;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 1s ease;
        }

        .hero-title {
            font-size: 6rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-title span {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            max-width: 600px;
            opacity: 0.9;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== SECCIÓN PRINCIPAL ===== */
        .explore-section {
            padding: 80px 5%;
            background: white;
            position: relative;
            z-index: 5;
            margin-top: -50px;
            border-radius: 50px 50px 0 0;
        }

        .explore-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Navegación por categorías */
        .categories-mind-map {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 40px 0 60px;
        }

        .mind-map-item {
            padding: 15px 30px;
            background: white;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .mind-map-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(9, 0, 185, 0.1);
            border-color: var(--primary-light);
        }

        .mind-map-item.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 10px 25px rgba(9, 0, 185, 0.3);
        }

        .mind-map-item i {
            font-size: 1.2rem;
        }

        /* Búsqueda */
        .search-elegant {
            max-width: 600px;
            margin: 0 auto 40px;
            position: relative;
        }

        .search-elegant input {
            width: 100%;
            padding: 20px 30px;
            padding-right: 70px;
            border: 2px solid var(--gray-200);
            border-radius: 60px;
            font-size: 1.1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .search-elegant input:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 15px 40px rgba(58, 114, 246, 0.15);
        }

        .search-elegant button {
            position: absolute;
            right: 8px;
            top: 8px;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .search-elegant button:hover {
            background: var(--primary-light);
            transform: scale(1.05);
        }

        /* Contador */
        .results-counter-modern {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.1rem;
            color: var(--gray-600);
			display: none;
        }

        .results-counter-modern span {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.5rem;
            margin: 0 5px;
        }

        /* ===== GRID DE TARJETAS IGUALES ===== */
        .proveedores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .proveedor-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.02);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 380px;
        }

        .proveedor-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(9, 0, 185, 0.15);
        }

        .card-inner {
            padding: 30px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card-logo {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--gray-100), white);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.03);
            border: 1px solid var(--gray-200);
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gray-800);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .card-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .category-tag {
            background: var(--gray-100);
            color: var(--gray-600);
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 50px;
            font-weight: 500;
            border: 1px solid var(--gray-200);
        }

        .card-details {
            margin-top: 5px;
            flex: 1;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--gray-600);
            font-size: 0.9rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .detail-item i {
            width: 18px;
            color: var(--primary-light);
            font-size: 1rem;
        }

        .detail-item a {
            color: var(--gray-600);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .detail-item a:hover {
            color: var(--primary);
        }

        .card-hover-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(9,0,185,0.97), rgba(58,114,246,0.95));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            padding: 30px;
            text-align: center;
            color: white;
            flex-direction: column;
            gap: 20px;
            backdrop-filter: blur(5px);
        }

        .proveedor-card:hover .card-hover-overlay {
            opacity: 1;
        }

        .hover-icon {
            font-size: 2.5rem;
            color: var(--accent);
        }

        .hover-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .hover-text {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.9;
            max-width: 250px;
            margin: 0 auto;
        }

        .hover-btn {
            background: white;
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            display: inline-block;
            text-decoration: none;
        }

        .hover-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.2);
            background: var(--accent);
            color: var(--dark);
        }

        /* Sin resultados */
        .no-results-modern {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px;
            background: white;
            border-radius: 30px;
        }

        .no-results-modern i {
            font-size: 4rem;
            color: var(--gray-400);
            margin-bottom: 20px;
        }

        .no-results-modern h3 {
            font-size: 2rem;
            color: var(--gray-600);
            margin-bottom: 10px;
        }

        .btn-clear-modern {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-clear-modern:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
        }

        /* Botón limpiar flotante */
        .clear-filters-container {
            text-align: center;
            margin: 40px 0 20px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 4.5rem;
            }
            .proveedores-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.8rem;
            }
            .hero-stats-container {
                flex-wrap: wrap;
                gap: 25px;
            }
            .mind-map-item {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            .proveedores-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-badge {
                font-size: 0.8rem;
                padding: 8px 16px;
            }
            .card-inner {
                padding: 20px;
            }
        }