        .categorias-container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            padding: 20px;
        }
        .categoria {
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100px;
/*            height: 100px; */
            text-align: center;
            padding: 10px;
            border-radius: 8px;
            background-color: #f5f5f5;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .categoria:hover {
            background-color: #e9e9e9;
            transform: translateY(-2px);
        }

        .categoria.active {
            background-color: #4CAF50;
            color: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .icono {
            width: 64px;
            height: 64px;
            margin-bottom: 10px;
            filter: brightness(0.7);
            transition: all 0.3s ease;
        }

        .categoria:hover .icono {
            brightness: 1.2;
        }
