        .card-shadow {
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
        }
        .card-shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .card-shadow-xl {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .hover-scale {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-scale:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        .image-overlay {
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
        }
        .rating-badge {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
        .gradient-text {
            background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .feature-card {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(147, 51, 234, 0.1) 100%);
        }
        .feature-card-alt {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(219, 39, 119, 0.1) 100%);
        }
        .feature-card-blue {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Mobile Slider Utilities */
        @media (max-width: 767px) {
            .mobile-slider {
                display: flex !important;
                overflow-x: auto !important;
                scroll-snap-type: x mandatory !important;
                padding: 1rem 0 !important;
                gap: 1.25rem !important;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .mobile-slider::-webkit-scrollbar {
                display: none;
            }
            .mobile-slider > * {
                scroll-snap-align: center;
                flex-shrink: 0;
                width: 100% !important;
                min-width: 100% !important;
            }
            .municipio-slider > * {
                width: 100% !important;
                min-width: 100% !important;
            }
        }
        
        .slider-control-btn {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(4px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            border: 1px solid #f1f5f9;
            color: #1e293b;
            transition: all 0.2s;
        }
        .slider-control-btn:active {
            transform: scale(0.9);
        }
        .dot-indicator {
            width: 6px;
            height: 6px;
            border-radius: 9999px;
            background: #cbd5e1;
            transition: all 0.3s ease;
        }
        .dot-indicator.active {
            width: 20px;
            background: #a855f7;
        }
        /* Slider Styles */
        .slider-favoritos, .slider-nuevos {
            position: relative;
        }
        .slider-track-favoritos, .slider-track-nuevos {
            will-change: transform;
        }
        @media (max-width: 767px) {
            .slider-track-favoritos, .slider-track-nuevos {
                display: flex;
                flex-wrap: nowrap;
            }
            .slider-slide-favoritos, .slider-slide-nuevos {
                flex-shrink: 0;
            }
        }
        @media (min-width: 768px) {
            .slider-track-favoritos, .slider-track-nuevos {
                transform: none !important;
            }
        }
        .slider-dot-favoritos, .slider-dot-nuevos {
            transition: all 0.3s ease;
        }

        /* Subcategory Filter Slider Styles */
        .subcat-filter-container {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .subcat-filter-container::-webkit-scrollbar {
            display: none;
        }
        .subcat-card {
            min-width: 100px;
            height: 110px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background: white;
            border-radius: 1.5rem;
            border: 2px solid #f1f5f9;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }
        .subcat-card:hover {
            border-color: #a855f7;
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.1);
        }
        .subcat-card.active {
            background: #9333ea;
            border-color: #9333ea;
            box-shadow: 0 10px 20px -5px rgba(147, 51, 234, 0.3);
        }
        .subcat-card .subcat-emoji {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            transition: transform 0.3s ease;
        }
        .subcat-card .subcat-name {
            font-size: 0.75rem;
            font-weight: 700;
            color: #64748b;
            text-align: center;
            line-height: 1.2;
            transition: color 0.3s ease;
        }
        .subcat-card.active .subcat-name {
            color: white;
        }
        .subcat-card.active .subcat-emoji {
            transform: scale(1.1);
        }
        
        @media (max-width: 768px) {
            .mobile-slider {
                display: flex !important;
                overflow-x: auto !important;
                scroll-snap-type: x mandatory !important;
                -webkit-overflow-scrolling: touch;
                gap: 0 !important;
                padding: 0 !important;
            }
            .mobile-slider > * {
                scroll-snap-align: center;
                flex: 0 0 100% !important;
                width: 100% !important;
                min-width: 100% !important;
            }
            .no-scrollbar::-webkit-scrollbar {
                display: none;
            }
        }

        /* High-End Premium Cards (Based on User Images) */
        .premium-card {
            background: white;
            border-radius: 2.5rem;
            overflow: hidden;
            position: relative;
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(255, 255, 255, 0.5);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .premium-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.2);
        }

        .premium-card .card-image-wrap {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .premium-card img {
            transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .premium-card:hover img {
            transform: scale(1.1);
        }

        .premium-card .content-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem 1.5rem 1.5rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: all 0.5s ease;
        }

        .premium-card:hover .content-overlay {
            padding-bottom: 2rem;
            background: linear-gradient(to top, rgba(147, 51, 234, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
        }

        .premium-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 0.9rem;
            border-radius: 1rem;
            font-size: 0.7rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .premium-badge.primary {
            background: rgba(147, 51, 234, 0.2);
            border-color: rgba(147, 51, 234, 0.4);
            color: #d8b4fe;
        }

        .premium-card-btn {
            background: white;
            color: #0f172a;
            padding: 1rem 1.5rem;
            border-radius: 1.25rem;
            font-size: 0.85rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-top: 1.25rem;
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.025em;
        }

        .premium-card:hover .premium-card-btn {
            background: #9333ea;
            color: white;
            transform: scale(1.02);
            box-shadow: 0 15px 25px -5px rgba(147, 51, 234, 0.4);
        }

        .modern-glass-card {
            background: white;
            border-radius: 2.25rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid #f1f5f9;
            height: 100%;
        }

        .modern-glass-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.15);
            border-color: #9333ea;
        }

        .modern-glass-card .card-info {
            padding: 1.75rem;
            background: linear-gradient(to bottom, white, #f8fafc);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .dot-indicator {
            width: 6px;
            height: 6px;
            border-radius: 9999px;
            background: #cbd5e1;
            transition: all 0.3s;
        }
        .dot-indicator.active {
            width: 24px;
            background: #9333ea;
        }
        
        /* Reduce section spacing */
        .py-20 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }
        @media (min-width: 768px) {
            .py-20 {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
        }